/* General Body & Typography */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; /* Very light background for elegance */
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    color: #004d40; /* Deep teal/dark green for headings */
    margin-bottom: 15px;
    font-weight: 600;
}

h1 { font-size: 3em; }
h2 { font-size: 2.5em; margin-bottom: 25px;}
h3 { font-size: 1.8em; margin-bottom: 15px;}
h4 { font-size: 1.4em; margin-bottom: 10px;}

p {
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

a {
    color: #00695c; /* Teal for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff9800; /* Orange on hover */
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background-color: #ff9800; /* Primary orange */
    color: white;
}

.primary-btn:hover {
    background-color: #f57c00; /* Darker orange on hover */
    color: white;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid #00695c;
    color: #00695c;
}

.secondary-btn:hover {
    background-color: #00695c;
    color: white;
}

/* Header */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.logo img {
    height: 70px; /* Adjust as needed */
    vertical-align: middle;
}

.main-nav ul {
    display: flex;
    margin: 0;
}

.main-nav li {
    margin-left: 35px;
}

.main-nav a {
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #00695c;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: #ff9800; /* Active link indicator */
    border-radius: 2px;
}

.contact-info-header {
    display: flex;
    align-items: center;
    color: #555;
    font-weight: 500;
}

.contact-info-header i {
    color: #25d366; /* WhatsApp green */
    font-size: 1.3em;
    margin-right: 8px;
}

.contact-info-header a {
    color: #333;
    font-weight: 600;
}

.contact-info-header a:hover {
    color: #00695c;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://islamabadprinters.com/wp-content/uploads/2023/12/HP-8-2048x1152.webp'); /* Example background, replace with a high-res image */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px; /* Ensure a good height */
}

.hero-title {
    font-size: 3.8em;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Padding & Backgrounds */
.section-padding {
    padding: 80px 0;
}

.bg-light-gray {
    background-color: #f0f2f5;
}

.bg-dark-teal {
    background-color: #004d40;
    color: white;
}

.section-heading {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ff9800;
    border-radius: 2px;
}

.section-heading.text-white {
    color: white;
}

.section-heading.text-white::after {
    background-color: white;
}

.section-description {
    text-align: center;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #666;
}

.bg-dark-teal .section-description {
    color: #cfd8dc;
}

/* Services Grid Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #00695c; /* Teal accent */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-card .icon-large {
    font-size: 3.5em;
    color: #ff9800; /* Orange icon */
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.6em;
    color: #004d40;
    margin-top: 0;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card ul {
    text-align: left;
    margin-top: 15px;
}

.service-card li {
    font-size: 0.9em;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.service-card .icon-small {
    font-size: 1em;
    color: #00695c;
    margin-right: 8px;
}

/* Text Content Sections */
.content-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    margin-bottom: 40px;
    border-left: 6px solid #ff9800; /* Orange accent */
}

.content-block h3 {
    color: #004d40;
    margin-top: 0;
}

.content-block h4 {
    color: #00695c;
    margin-top: 30px;
}

.fancy-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.fancy-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 1.05em;
    color: #444;
}

.fancy-list li i {
    color: #00695c; /* Teal checkmark */
    margin-right: 12px;
    font-size: 1.2em;
    margin-top: 3px;
}

.fancy-list.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px; /* Row and column gap */
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

/* Why Choose Us Section */
.why-choose-us .section-heading::after {
    background-color: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-card {
    background-color: rgba(255,255,255,0.1); /* Slightly transparent white on dark background */
    backdrop-filter: blur(5px); /* Subtle blur effect */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

.reason-card:hover {
    background-color: rgba(255,255,255,0.2);
}

.reason-card i {
    font-size: 3em;
    color: #ffc107; /* Gold icon */
    margin-bottom: 20px;
}

.reason-card h3 {
    color: white;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
}

.reason-card p {
    color: #e0e0e0;
    font-size: 0.95em;
}

/* Service Areas Section */
.service-areas {
    background-color: #f8f8f8;
}

.search-callout {
    background-color: #e3f2fd; /* Light blue background */
    border: 1px solid #bbdefb;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.search-callout h3 {
    color: #1a237e; /* Dark blue for heading */
    font-size: 2em;
    margin-bottom: 25px;
}

.search-terms {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.search-terms li {
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95em;
    color: #3f51b5; /* Medium blue */
    border: 1px solid #90caf9;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.search-terms li i {
    margin-right: 8px;
    color: #3f51b5;
}

.highlight-message {
    font-size: 1.3em;
    font-weight: 700;
    color: #d84315; /* Reddish orange */
    margin-top: 40px;
    line-height: 1.4;
}

/* Footer */
.main-footer {
    background-color: #263238; /* Dark grey */
    color: #cfd8dc; /* Light grey text */
    padding: 60px 0 20px 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #455a64; /* Subtle divider */
}

.footer-col h4 {
    color: white;
    font-size: 1.5em;
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-logo {
    max-height: 80px;
    margin-bottom: 20px;
}

.footer-col ul {
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #a7c0cd;
    font-size: 0.95em;
    display: block;
}

.footer-col ul li a:hover,
.footer-col ul li a.active {
    color: #ff9800; /* Orange hover/active */
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.social-icons a {
    color: white;
    font-size: 1.5em;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #455a64; /* Darker grey background for icons */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, color