/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Variables */
:root {
    --primary-color: #0b4a8e;
    --secondary-color: #f39c12;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f4f7f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

/* --- Header & Navbar --- */
.top-bar {
    background: var(--primary-color);
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    padding: 10px 5%;
    font-size: 14px;
}

.top-bar i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 24px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

/* Dropdown CSS */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 230px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--secondary-color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    padding-left: 20px;
}

/* Hover effect ONLY for Desktop */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 10px;
    }
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* --- Hero --- */
.hero {
    background: linear-gradient(rgba(11, 74, 142, 0.75), rgba(0, 0, 0, 0.75)), url('images/index.jpg') center/cover no-repeat;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    border: none;
}

.primary-btn {
    background: var(--secondary-color);
    color: #fff;
}

.primary-btn:hover {
    background: #d68910;
    color: #fff;
}

.secondary-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-left: 10px;
}

.secondary-btn:hover {
    background: #fff;
    color: var(--primary-color);
}

/* --- Common Section Styles --- */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: 25%;
}

.section-title p {
    color: #666;
    margin-top: 10px;
}

/* --- About Us --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-text h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 28px;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.about-list li {
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
}

.about-list i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 18px;
}

/* --- Services (Clickable Cards) --- */
.services {
    background: var(--bg-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    display: block;
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    border-bottom: 3px solid transparent;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: 0.4s;
}

.service-card:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.service-card:hover .read-more {
    color: var(--secondary-color);
    letter-spacing: 1px;
}

/* --- NEW: Work Process --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.process-box {
    position: relative;
    padding: 20px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 28px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 2px dashed var(--secondary-color);
    transition: 0.3s;
}

.process-box:hover .icon-circle {
    background: var(--primary-color);
    color: #fff;
    border-style: solid;
}

.process-box h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-box p {
    color: #666;
    font-size: 14px;
}

/* --- NEW: Stats / Counters --- */
.stats {
    background: url('https://images.unsplash.com/photo-1590845947376-28be366a1a11?q=80&w=1920&auto=format&fit=crop') center fixed;
    position: relative;
    color: #fff;
    padding: 70px 0;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 74, 142, 0.9);
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-box h2 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- NEW: AMC Section --- */
.amc-section {
    background: var(--bg-light);
}

.amc-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.amc-content {
    flex: 1;
    min-width: 300px;
}

.amc-content h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
}

.amc-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.amc-list li {
    margin-bottom: 10px;
    font-weight: 600;
}

.amc-list i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.amc-image {
    flex: 1;
    min-width: 300px;
}

.amc-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
}

/* --- NEW: Brands We Service --- */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    text-align: center;
}

.brand-box {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-weight: 700;
    color: #555;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.brand-box:hover {
    border-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* --- Features (Why Choose Us) --- */
.features {
    background: var(--primary-color);
    color: #fff;
    padding: 60px 0;
}

.feature-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    gap: 30px;
}

.feature-box {
    flex: 1;
    min-width: 250px;
}

.feature-box i {
    color: var(--secondary-color);
}

.feature-box h2 {
    margin-bottom: 10px;
    font-size: 22px;
}

.feature-box p {
    font-size: 15px;
    color: #ddd;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.4s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- CTA Banner --- */
.cta-banner {
    background: url('https://images.unsplash.com/photo-1544724569-5f546fd6f2b6?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    padding: 70px 0;
    text-align: center;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 74, 142, 0.85);
}

.cta-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 25px;
    font-size: 18px;
}

/* --- Footer --- */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-col ul a {
    color: #ccc;
    transition: 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-col ul a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    background: #0d0d0d;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

/* --- Responsive & Mobile Dropdown Logic --- */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 5%;
        transition: 0.4s ease;
        overflow-y: auto;
    }

    .nav-links.nav-active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 10px 0;
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 18px;
    }

    /* Mobile Dropdown Click Logic */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        padding-left: 15px;
        display: none;
        opacity: 1;
        visibility: visible;
        margin-top: 10px;
    }

    .dropdown-menu.show {
        display: block;
    }

    .hero h1 {
        font-size: 35px;
    }

    .about-grid,
    .amc-flex {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ABOUT US PAGE SPECIFIC CSS 
========================================================= */

/* Common Utility */
.sub-heading {
    color: var(--secondary-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.text-center {
    text-align: center;
}

/* 1. Page Header / Breadcrumb */
.page-header {
    background: linear-gradient(rgba(11, 74, 142, 0.8), rgba(11, 74, 142, 0.8)), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?q=80&w=1920&auto=format&fit=crop') center/cover;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--secondary-color);
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 12px;
}

/* 2. Company Overview */
.about-overview {
    padding: 80px 0;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-img-wrapper {
    position: relative;
    padding: 20px 20px 0 0;
}

.overview-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 90%;
    border: 8px solid var(--primary-color);
    z-index: 1;
    border-radius: 10px;
}

.overview-img-wrapper img {
    width: 100%;
    position: relative;
    z-index: 2;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 25px;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    border: 5px solid #fff;
}

.experience-badge h3 {
    font-size: 32px;
    line-height: 1;
}

.experience-badge p {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    margin-top: 5px;
}

.overview-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.overview-text p {
    color: #555;
    margin-bottom: 15px;
    font-size: 16px;
}

/* 3. Vision & Mission */
.vision-mission {
    padding: 60px 0;
    background: var(--bg-light);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-color);
    transition: 0.3s;
}

.vm-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--secondary-color);
}

.vm-icon {
    background: var(--bg-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.vm-card p {
    color: #666;
}

/* 4. Founder's Desk */
.founder-section {
    padding: 80px 0;
    background: #fff;
}

.founder-box {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 60px;
    color: var(--secondary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.founder-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    border-right: 5px solid var(--primary-color);
}

.founder-msg {
    font-size: 18px;
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

.founder-details h4 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 5px;
}

.founder-details span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
}

/* 5. Core Values */
.core-values {
    padding: 80px 0;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
}

.value-item:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
}

.value-item i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: 0.3s;
}

.value-item:hover i {
    color: #fff;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.value-item p {
    font-size: 14px;
    color: #666;
    transition: 0.3s;
}

.value-item:hover p,
.value-item:hover h4 {
    color: #fff;
}

/* 6. Why Stand Out (Light Blue Theme Updated) */
.why-stand-out {
    background: #eef4fa;
    padding: 80px 0;
    color: var(--text-dark);
}

.standout-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.standout-text {
    flex: 1;
    min-width: 300px;
}

.standout-text h2 {
    margin-bottom: 30px;
    font-size: 32px;
    color: var(--primary-color);
}

.standout-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.standout-list i {
    background: var(--secondary-color);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 5px;
}

.standout-list h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.standout-list p {
    color: #555;
    font-size: 15px;
}

.standout-image {
    flex: 1;
    min-width: 300px;
}

.standout-image img {
    width: 100%;
    border-radius: 15px;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 7. Expertise / Progress Bars */
.expertise-section {
    padding: 80px 0;
    background: #fff;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expertise-info h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
}

.expertise-info p {
    color: #555;
}

.skill-box {
    margin-bottom: 25px;
}

.skill-title {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.progress-bg {
    background: #e0e0e0;
    width: 100%;
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    background: var(--secondary-color);
    height: 100%;
    border-radius: 10px;
    position: relative;
}

/* 8. Govt. Certifications (Clickable Cards Updated) */
.certifications {
    padding: 80px 0;
    background: var(--bg-light);
}

.certifications p {
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: #666;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.cert-box {
    display: block;
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
    text-decoration: none;
    color: inherit;
    transition: 0.4s;
    position: relative;
}

.cert-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--secondary-color);
}

.cert-box i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: 0.3s;
}

.cert-box:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.cert-box h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: var(--text-dark);
}

.cert-box p {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px !important;
}

.cert-box span {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.view-pdf {
    display: inline-block;
    padding: 8px 15px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid #ddd;
}

.view-pdf i {
    font-size: 14px;
    color: inherit;
    margin-bottom: 0;
    margin-right: 5px;
}

.cert-box:hover .view-pdf {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

/* 9. About CTA */
.about-cta {
    padding: 80px 0;
    background: #fff;
}

.cta-box-inner {
    background: var(--bg-light);
    border: 2px dashed #ccc;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box-inner h2 {
    color: var(--primary-color);
    font-size: 30px;
    margin-bottom: 15px;
}

.cta-box-inner p {
    color: #555;
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-actions .secondary-btn:hover {
    background: var(--primary-color);
    color: #fff !important;
}

/* --- Responsive Adjustments for About Page --- */
@media (max-width: 991px) {

    .overview-grid,
    .vm-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-img-wrapper {
        padding-right: 0;
    }

    .overview-img-wrapper::before {
        display: none;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -10px;
        left: -10px;
        padding: 15px;
    }

    .experience-badge h3 {
        font-size: 24px;
    }

    .experience-badge p {
        font-size: 10px;
    }

    .founder-content {
        border-left: none;
        border-right: none;
        border-top: 5px solid var(--primary-color);
        border-bottom: 5px solid var(--primary-color);
    }

    .standout-flex {
        flex-direction: column-reverse;
    }
}

/* =========================================================
   SERVICE PAGE (AC REPAIR) SPECIFIC CSS 
========================================================= */

/* 1. Service Hero Banner */
.service-hero {
    background: linear-gradient(rgba(11, 74, 142, 0.85), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1599839619722-39751411ea63?q=80&w=1920&auto=format&fit=crop') center/cover;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}


/* 2. Service Overview */
.service-overview-sec {
    padding: 80px 0;
    background: #fff;
}

.so-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.so-text h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.so-text p {
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.so-list li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.so-list i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-right: 12px;
    margin-top: 3px;
}

.so-image {
    position: relative;
}

.so-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.so-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(11, 74, 142, 0.4);
    border: 3px solid #fff;
}

.so-badge i {
    font-size: 35px;
    color: var(--secondary-color);
}

.so-badge span {
    font-size: 16px;
    font-weight: 600;
    width: 100px;
    line-height: 1.2;
}

/* 3. Types of ACs We Service */
.ac-types-sec {
    padding: 80px 0;
    background: var(--bg-light);
}

.ac-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ac-type-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.ac-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ac-type-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ac-type-card h3 {
    padding: 20px 20px 5px 20px;
    color: var(--primary-color);
    font-size: 22px;
}

.ac-type-card p {
    padding: 0 20px 25px 20px;
    color: #666;
}

/* 4. Common Problems */
.ac-problems-sec {
    padding: 80px 0;
    background: #fff;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-box {
    border: 1px solid #eee;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    background: var(--bg-light);
}

.problem-box:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.prob-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    color: var(--secondary-color);
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.problem-box:hover .prob-icon {
    background: var(--secondary-color);
    color: #fff;
}

.problem-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: 0.3s;
}

.problem-box:hover h4 {
    color: #fff;
}

.problem-box p {
    color: #666;
    font-size: 14px;
    transition: 0.3s;
}

.problem-box:hover p {
    color: #eee;
}

/* 5. Benefits of Regular AC Servicing (Replaced Pricing) */
.ac-benefits-sec {
    padding: 80px 0;
    background: #eef4fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-box {
    background: #fff;
    padding: 40px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid var(--primary-color);
    transition: 0.4s;
}

.benefit-box:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-box i {
    font-size: 45px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: 0.3s;
}

.benefit-box:hover i {
    transform: scale(1.1);
}

.benefit-box h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* 6. Service CTA Section */
.service-cta {
    padding: 60px 0;
    background: var(--primary-color);
    color: #fff;
}

.service-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-group .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 12px 25px;
}

.cta-btn-group .secondary-btn:hover {
    background: #1ebe5d !important;
    border-color: #1ebe5d !important;
    color: #fff !important;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .so-grid {
        grid-template-columns: 1fr;
    }

    .so-badge {
        right: 0;
        bottom: -20px;
    }
}

/* =========================================================
   CONTACT US PAGE SPECIFIC CSS — FULLY RESPONSIVE (320px+)
========================================================= */

/* 1. Contact Hero Banner */
.contact-header {
    background: linear-gradient(rgba(11, 74, 142, 0.85), rgba(11, 74, 142, 0.85)),
        url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1920&auto=format&fit=crop') center/cover;
    padding: 60px 15px;
}

/* 2. Contact Main Section */
.contact-page-sec {
    padding: 50px 0 40px 0;
    background: var(--bg-light);
}

/* Container global fix */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Section Title — size same, wrap hoga */
.section-title h2 {
    font-size: 32px;
    line-height: 1.3;
    word-wrap: break-word;
}

.section-title p {
    font-size: 16px;
}

/* Grid Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 35px;
}

/* ---- Left Side: Info Panel ---- */
.contact-info-panel {
    background: #fff;
    padding: 30px 22px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-box:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #eef4fa;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: 0.3s;
}

.info-box:hover .info-icon {
    background: var(--primary-color);
    color: #fff;
}

.info-text h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-text p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    word-break: break-word;
}

.info-text a {
    color: #555;
    transition: 0.3s;
}

.info-text a:hover {
    color: var(--secondary-color);
}

.small-text {
    font-size: 13px !important;
    color: #888 !important;
    margin-top: 2px;
}

/* ---- Right Side: Form Panel ---- */
.contact-form-panel {
    background: #fff;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--primary-color);
}

.contact-form-panel h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-form-panel>p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.main-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group label span {
    color: red;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 5px rgba(11, 74, 142, 0.2);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
    touch-action: manipulation;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* 3. Map Section */
.map-sec {
    padding-bottom: 80px;
    background: var(--bg-light);
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
}

.map-wrapper iframe {
    filter: grayscale(15%);
    transition: 0.3s;
    display: block;
    width: 100%;
}

.map-wrapper iframe:hover {
    filter: grayscale(0%);
}


/* =========================================================
   RESPONSIVE BREAKPOINTS — Text size SAME rahegi, sirf layout badlega
========================================================= */

/* Tablet: max 991px */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .main-contact-form .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .contact-form-panel {
        padding: 35px 25px;
    }

    .map-wrapper iframe {
        height: 380px;
    }
}

/* Mobile: max 767px */
@media (max-width: 767px) {
    .contact-page-sec {
        padding: 40px 0 30px 0;
    }

    .contact-info-panel {
        padding: 25px 18px;
    }

    .main-contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-panel {
        padding: 30px 18px;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

/* Small Mobile: max 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .contact-page-sec {
        padding: 30px 0 25px 0;
    }

    .contact-wrapper {
        gap: 20px;
        margin-top: 25px;
    }

    .contact-info-panel {
        padding: 20px 15px;
    }

    .contact-form-panel {
        padding: 25px 15px;
    }

    .map-wrapper iframe {
        height: 250px;
    }
}

/* 320px support */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .info-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        margin-right: 14px;
    }

    .contact-form-panel {
        padding: 20px 12px;
    }

    .map-wrapper iframe {
        height: 220px;
    }
}