/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    height: 90px;
    width: 90px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2a4365;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Hero Section with Swiper */
.hero {
    position: relative;
    height: 90vh;                    /* Full viewport height - adjust to 80vh or 100vh if needed */
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 50, 0.55);   /* Dark blue overlay for water theme & contrast */
    z-index: 2;
}

.container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
    letter-spacing: 1px;
    color: #ffffff;
    /* Optional gradient text */
    background: linear-gradient(90deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.9rem 2.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 10px 10px;
}

.btn-primary {
    background: #00b7eb;           /* Aqua blue */
    color: white;
    border: 2px solid #00b7eb;
}

.btn-primary:hover {
    background: #0099cc;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 183, 235, 0.4);
}

.btn-secondary {
    background: #25D366;           /* WhatsApp green */
    color: white;
    border: 2px solid #25D366;
}

.btn-secondary:hover {
    background: #20b058;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title   { font-size: 3.8rem; }
    .hero-subtitle { font-size: 1.4rem; }
}

@media (max-width: 576px) {
    .hero-title   { font-size: 3rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.8rem;
        font-size: 1.1rem;
        margin: 10px 5px;
    }
}
/* About Section */
.about {
    padding: 80px 0;
    background: #f8fcff;           /* very light aqua/blue tint */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #07899a;                /* deep aqua blue */
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #00b7eb;           /* bright aqua accent */
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-text {
    flex: 1;
    max-width: 55%;                /* gives good balance – adjust if needed */
}

.about-text h3 {
    font-size: 2.2rem;
    color: #004d6b;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.about-checklist {
    display: flex;                    /* horizontal row */
    flex-wrap: wrap;
    justify-content: flex-start;      /* left-aligned but balanced */
    gap: 25px 30px;
    margin-top: 30px;
}

.check-item {
    flex: 1 1 220px;                  /* responsive – min width ~220px */
    max-width: 280px;
    background: white;
    border-radius: 10px;
    padding: 20px 18px;
    box-shadow: 0 4px 15px rgba(0, 105, 148, 0.08);
    border-left: 5px solid #00b7eb;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.3s ease;
}

.check-item:hover {
    transform: translateY(-5px);
}

.check-icon {
    font-size: 1.8rem;
    color: #00b7eb;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1.4;
}

.check-content {
    font-size: 1.05rem;
    color: #333;
}

.check-content strong {
    color: #006994;
    display: block;
    margin-bottom: 4px;
}

.about-image {
    flex: 1;
    max-width: 45%;
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 480px;                 /* prevents image from becoming too large */
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 105, 148, 0.15);
    object-fit: contain;              /* keeps full purifier visible */
    transition: transform 0.5s ease;
}

.about-image:hover .about-img {
    transform: scale(1.03);
}

/* Responsive – stack on smaller screens */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-text,
    .about-image {
        max-width: 100%;
    }
    
    .about-checklist {
        justify-content: center;
        gap: 20px;
    }
    
    .check-item {
        flex: 1 1 45%;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .check-item {
        flex: 1 1 100%;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}
/* Products Section */
.products {
    padding: 80px 0;
    background: #f8fcff; /* light aqua background */
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #006994;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 105, 148, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 105, 148, 0.15);
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    padding: 20px;
    background: #f0f8ff;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.5rem;
    color: #004d6b;
    margin-bottom: 12px;
}

.product-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image img {
        height: 200px;
    }
}
/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f4ff 100%);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #005f73;              /* deep teal */
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #4a6d7a;
    margin-bottom: 50px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.reason-card {
    background: white;
    border-radius: 16px;
    padding: 36px 28px;
    width: 100%;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 95, 115, 0.08);
    border: 1px solid #e0f5ff;
    
}

/* delay for each card */
.reason-card:nth-child(1) { transition-delay: 0.1s; }
.reason-card:nth-child(2) { transition-delay: 0.25s; }
.reason-card:nth-child(3) { transition-delay: 0.4s;  }
.reason-card:nth-child(4) { transition-delay: 0.55s; }

.reason-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #e6f4ff;
    color: #0084a8;               /* fresh aqua-green */
    font-size: 2.3rem;
    border-radius: 50%;
    margin: 0 auto 22px;
}

.reason-card h3 {
    font-size: 1.48rem;
    color: #005f73;
    margin-bottom: 14px;
    font-weight: 600;
}

.reason-card p {
    font-size: 1.02rem;
    color: #5a7b8a;
    line-height: 1.65;
}

/* hover effect */
.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 168, 150, 0.18);
    border-color: #0068a8;
}

/* Responsive */
@media (max-width: 1100px) {
    .reasons-grid {
        gap: 24px;
    }
    
    .reason-card {
        max-width: 380px;
    }
}

@media (max-width: 640px) {
    .reason-card {
        max-width: 100%;
    }
}
/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fcff;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #006994;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    background: white;
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 6px 22px rgba(0, 105, 148, 0.07);
    border-left: 5px solid #00b7eb;
    transition: all 0.32s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 38px rgba(0, 183, 235, 0.14);
}

.check-circle {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    background: #e6f4ff;
    color: #00b7eb;
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    margin-right: 22px;
}

.feature-text h3 {
    font-size: 1.45rem;
    color: #004d6b;
    margin: 0 0 10px 0;
}

.feature-text p {
    font-size: 1.03rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* ────────────────────────────────────────────────
   Responsive
───────────────────────────────────────────────── */
@media (max-width: 992px) {
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 28px 24px;
    }
}
/* Highlights Section */
.highlights {
    padding: 70px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f4ff 100%); /* very light aqua – common for water/purifier logos */
    /* You can also use a solid light color: background: #f5fbff; */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-heading {
    text-align: center;
    font-size: 2.6rem;
    color:#045e8e;               /* deep teal – good contrast with light bg */
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.section-heading::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #00b4d8;         /* bright aqua accent */
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.highlight-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.highlight-item {
    background: white;
    border-radius: 14px;
    padding: 32px 24px;
    box-shadow: 0 6px 20px rgba(0, 109, 119, 0.06);
    border: 1px solid #e0f5ff;
    transition: all 0.35s ease;
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 180, 216, 0.12);
}

.highlight-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #045e8e;
    margin-bottom: 8px;
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
}

.plus {
    font-size: 2rem;
    font-weight: 600;
    color: #067187;
    margin-left: 4px;
}

.highlight-item p {
    font-size: 1.1rem;
    color: #4a6d7a;
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .highlight-number {
        font-size: 2.8rem;
    }
    
    .plus {
        font-size: 1.8rem;
    }
}
/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8fcff;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #006d77;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #4a6d7a;
    margin-bottom: 50px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    animation: marquee 35s linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused; /* pause when mouse over */
}

.testimonial-card {
    flex: 0 0 380px;
    background: rgb(131, 197, 225);
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 6px 22px rgba(0, 109, 119, 0.07);
    border: 1px solid #e0f5ff;
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 1.03rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    margin-top: auto;
}

.author-info h4 {
    margin: 0 0 6px 0;
    font-size: 1.15rem;
    color: #2d3748;
}

.author-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #718096;
}

/* ────────────────────────────────────────────────
   Animation keyframes – infinite horizontal move
───────────────────────────────────────────────── */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 340px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 90%;
    }
    
    .marquee-track {
        animation-duration: 45s; /* slower on mobile */
    }
}
/* Clients Section */
.clients {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #8bd3eb;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 50px;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.client-logo {
    flex: 0 0 auto;
    text-align: center;
}

.client-logo img {
    max-width: 140px;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: grayscale(70%);
    transition: all 0.4s ease;
    opacity: 0.85;
}

.client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* Parryware – bigger & centered */
.center-logo {
    flex-basis: 100%;               /* takes full row width */
    order: -1;                      /* always first / center */
    margin-bottom: 20px;
}

.center-logo img.parryware-main {
    max-width: 260px;
    max-height: 140px;
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .clients-logos {
        gap: 30px 50px;
    }

    .center-logo img.parryware-main {
        max-width: 220px;
    }

    .client-logo img {
        max-width: 120px;
        max-height: 70px;
    }
}

@media (max-width: 576px) {
    .center-logo img.parryware-main {
        max-width: 180px;
    }

    .client-logo img {
        max-width: 100px;
        max-height: 60px;
    }
}
/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fcff;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #006994;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.contact-form {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 105, 148, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0f5ff;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00b7eb;
    box-shadow: 0 0 0 3px rgba(0, 183, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #00b7eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #0099cc;
    transform: translateY(-2px);
}

.quick-contact {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    font-size: 1.8rem;
    color: #00b7eb;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #e6f4ff;
    border-radius: 50%;
}

.contact-item strong {
    color: #006994;
}

.contact-item a {
    color: #006994;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

.map-container {
    height: 100%;
    min-height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 105, 148, 0.08);
}

/* Responsive – stack on mobile */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .map-container {
        min-height: 400px;
    }
}
/* Footer */
  .footer {
    background-color: #232628;
    color: #ebd9d9;
    padding: 40px 0 60px; /* extra bottom padding for social bar */
    font-family: Arial, sans-serif;
    position: relative; /* needed for absolute positioned social bar */
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
  }

  .footer-col {
    flex: 1;
    min-width: 220px;
  }

  .footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a79bc;
    position: relative;
    padding-bottom: 10px;
  }

  .footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color:#3a79bc;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
  }

  .footer-col ul li {
    margin-bottom: 12px;
  }

  .footer-col ul li a {
    color: #e0d8d8;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-col ul li a:hover {
    color: #3a79bc;
  }

  .contact-details p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-details i {
    color:#3a79bc;
    font-size: 16px;
    margin-top: 4px;
  }

  .footer-bottom {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-size: 14px;
  }

  .footer-bottom p {
    margin: 8px 0;
  }

  .footer-bottom a {
    color:#3a79bc;
    text-decoration: none;
  }

  .footer-bottom a:hover {
    text-decoration: underline;
  }

  /* === Social Media Vertical Bar (right corner) === */
  .social-sidebar {
    position: absolute;
    right: 20px;
    bottom: 80px; /* adjust from bottom to avoid overlapping bottom text */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
  }

  .social-sidebar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color:#3a79bc; /* your brand blue */
    color: white;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .social-sidebar a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color:#3a79bc; /* darker on hover */
  }

  .social-sidebar i {
    line-height: 1;
  }

  @media (max-width: 992px) {
    .social-sidebar {
      position: static; /* stack normally on smaller screens */
      flex-direction: row;
      justify-content: center;
      margin: 30px 0 20px;
      bottom: auto;
      right: auto;
    }

    .social-sidebar a {
      width: 45px;
      height: 45px;
      font-size: 20px;
    }
  }

  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-col {
      text-align: center;
    }

    .footer-col h4::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .contact-details p {
      justify-content: center;
    }
  }



/* WHY CHOOSE US SECTION */
.why-choose-us{
    padding: 80px 20px;
     background: linear-gradient(135deg, #f0f9ff 0%, #e6f4ff 100%)
}

/* Container */
.why-choose-us .container{
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Title */
.section-title{
    font-size: 38px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 10px;
}

.section-subtitle{
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

/* GRID */
.reasons-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

/* CARD */
.reason-card{
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.reason-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ICON */
.reason-icon{
    width: 70px;
    height: 70px;
    background: #82cad2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

/* HEADING */
.reason-card h3{
    font-size: 20px;
    margin-bottom: 12px;
    color: #295785;
}

/* TEXT */
.reason-card p{
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}


/* =========================================
   MOBILE VIEW ONLY (Max Width 768px)
========================================= */
@media (max-width: 768px) {

/* General */
.container{
    padding: 0 15px;
}

.section-title{
    font-size: 24px !important;
}

.section-subtitle{
    font-size: 14px !important;
    margin-bottom: 30px;
}

/* ================= NAVBAR ================= */
.nav-menu{
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    width: 100%;
    background: #fff;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
}

.nav-menu.active{
    left: 0;
}

.nav-item{
    margin: 15px 0;
}

.hamburger{
    display: block;
}

/* ================= HERO ================= */
.hero{
    height: 85vh;
    min-height: auto;
}

.hero-title{
    font-size: 28px !important;
    line-height: 1.2;
}

.hero-subtitle{
    font-size: 14px !important;
}

.btn-primary,
.btn-secondary{
    width: 100%;
    justify-content: center;
    margin: 10px 0;
    font-size: 14px;
}

/* ================= ABOUT ================= */
.about-content{
    flex-direction: column;
    gap: 30px;
}

.about-text,
.about-image{
    max-width: 100%;
}

.about-checklist{
    flex-direction: column;
    align-items: center;
}

.check-item{
    max-width: 100%;
}

/* ================= PRODUCTS ================= */
.products-grid{
    grid-template-columns: 1fr !important;
    gap: 20px;
}

.product-image img{
    height: 180px;
}

/* ================= WHY CHOOSE ================= */
.reasons-grid{
    grid-template-columns: 1fr !important;
    gap: 20px;
}

/* ================= FEATURES ================= */
.features-list{
    grid-template-columns: 1fr !important;
}

/* ================= HIGHLIGHTS ================= */
.highlight-stats{
    grid-template-columns: 1fr !important;
}

/* ================= TESTIMONIAL ================= */
.testimonial-card{
    flex: 0 0 95%;
}

/* ================= CLIENTS ================= */
.clients-logos{
    gap: 20px;
}

.client-logo img{
    max-width: 90px;
}

/* ================= CONTACT ================= */
.contact-content{
    flex-direction: column;
}

.map-container{
    min-height: 300px;
}

/* ================= FOOTER ================= */
.footer-top{
    flex-direction: column;
    text-align: center;
}

.footer-col{
    text-align: center;
}

.social-sidebar{
    position: static;
    flex-direction: row;
    justify-content: center;
    margin: 20px 0;
}

}
