 :root {
      --primary: #0d6efd;
      --secondary: #1a4ca6;
      --accent: #00a896;
      --light: #f8f9fa;
      --dark: #212529;
      --success: #198754;
      --white: #fff;
    }
    
    :root {
        --primary: #1a5f7a;
        --secondary: #3c8dad;
        --accent: #0d3e57;
        --light: #f8f9fa;
        --dark: #343a40;
        --success: #28a745;
        --warning: #ffc107;
        --danger: #dc3545;
        --gray: #6c757d;
        --light-gray: #e9ecef;
    }

    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #555;
    background-color: #f8f9fa;
    /* overflow-x: hidden; */
    /* Light gray background for overall page */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    /* Using Poppins for headings */
    font-weight: 700;
    color: #2c3e50;
    /* Dark blue-gray for headings */
}

.section-padding {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    /* Slightly larger */
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    /* Increased padding */
    margin-bottom: 20px;
    /* Added margin */
    color: #1a2533;
    /* Darker shade for emphasis */
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    /* Wider underline */
    height: 5px;
    /* Thicker underline */
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    /* Gradient underline */
    bottom: 0;
    left: calc(50% - 40px);
    border-radius: 5px;
    /* Rounded underline */
}

.section-title p {
    font-size: 1.1rem;
    color: #6c757d;
    /* Softer gray */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar */
.navbar {
    transition: background-color 0.4s ease-in-out, padding 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    /* Frosted glass effect */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-brand {
    font-weight: 800;
    font-size: 2rem;
    /* Increased size */
    color: #0d6efd !important;
    letter-spacing: -0.5px;
    /* Adjust letter spacing */
}

.navbar-logo {
  height: 60px;       /* fix height */
  max-width: 200px;   /* avoid stretching */
  width: auto;
}

.navbar-nav .nav-item {
    margin: 0 8px;
}


@media (max-width: 768px) {
  .navbar-logo {
    height: 45px;   /* smaller logo on mobile */
  }
}



.navbar-brand .fa-prescription-bottle-medical {
    margin-right: 10px;
    color: #0dcaf0;
    /* Secondary accent color */
}

.navbar .nav-link {
    color: #343a40;
    font-weight: 600;
    /* Bolder nav links */
    padding: 0.8rem 1.2rem;
    /* Adjusted padding */
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
}

.navbar .nav-link::after {
    /* Underline effect for active/hover */
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0d6efd;
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 70%;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #0d6efd;
    transform: translateY(-2px);
    /* Slight lift on hover */
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    /* More prominent shadow */
}

/* Hero Section - Updated */
.hero-section {
    background: linear-gradient(rgba(13, 71, 161, 0.6), rgba(0, 150, 136, 0.5)),
        /* Gradient overlay */
        url('/images/pharmacy-website-hero-section.webp') no-repeat center center;
    /* More dynamic placeholder */
    background-size: cover;
    color: #fff;
    min-height: 100vh;
    /* Use min-height for flexibility */
    display: flex;
    align-items: center;
    text-align: left;
    /* Align text to the left for a modern look */
    position: relative;
    overflow: hidden;
    /* For potential pseudo-element animations */
}

.hero-section::before {
    /* Optional: subtle animated particles or shapes */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff33"/><circle cx="80" cy="30" r="1" fill="%23ffffff22"/><circle cx="50" cy="70" r="3" fill="%23ffffff44"/><circle cx="30" cy="90" r="1.5" fill="%23ffffff11"/></svg>'); */
    /* animation: float 20s infinite linear; */
    opacity: 0.3;
}

/* @keyframes float { 0% { transform: translateY(0); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0); } } */

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    /* Control content width */
}

.hero-content h1 {
    font-size: 4rem;
    /* Larger heading */
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    /* Softer text shadow */
}

.hero-content p {
    font-size: 1.4rem;
    /* Larger paragraph */
    margin-bottom: 40px;
    color: #e0e0e0;
    font-weight: 300;
    /* Lighter font weight for paragraph */
}

.btn-hero {
    padding: 15px 35px;
    /* Larger buttons */
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 8px;
    /* Slightly less rounded */
    transition: all 0.3s ease;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero.btn-primary {
    background-color: #0dcaf0;
    /* Secondary accent for primary CTA */
    border-color: #0dcaf0;
}

.btn-hero.btn-primary:hover {
    background-color: #0db9d2;
    border-color: #0db9d2;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(13, 202, 240, 0.4);
}

.btn-hero.btn-outline-light:hover {
    background-color: #fff;
    color: #0d6efd;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}


/* About Us Section */
.about-us-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* Enhanced shadow */
}

.about-us-content .section-title h2 {
    /* Align section title left for About Us */
    text-align: left;
    padding-bottom: 15px;
}

.about-us-content .section-title h2::after {
    left: 0;
    /* Align underline to the left */
    transform: translateX(0);
}


/* Services Section */
.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px;
    /* Increased padding */
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    /* Softer, more spread shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
    /* Subtle border */
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    /* Enhanced hover shadow */
}

.service-card .icon {
    font-size: 3.5rem;
    /* Larger icon */
    color: #0d6efd;
    margin-bottom: 25px;
    line-height: 1;
}

.service-card h4 {
    font-size: 1.6rem;
    /* Larger heading */
    margin-bottom: 15px;
    color: #1a2533;
}

.service-card p {
    font-size: 0.95rem;
    color: #6c757d;
}

/* Product Showcase & Latest Medicines Common Styles */
.product-card,
.medicine-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover,
.medicine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-card img,
.medicine-card img {
    width: 100%;
    /* height: 220px; */
    /* Adjusted height */
    object-fit: cover;
}

.product-card .card-body,
.medicine-card .card-body {
    padding: 25px;
    /* Increased padding */
}

.product-card .card-title,
.medicine-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2533;
}

.product-card .card-text,
.medicine-card .card-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-card .price,
.medicine-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 15px;
}
 
.medicine-card .btn-outline-primary {
    border-color: #0d6efd;
    color: #0d6efd;
    font-weight: 500;
}

.product-card .btn-outline-primary:hover,
.medicine-card .btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #fff;
}

.swiper-pagination-bullet-active {
    background-color: #0d6efd !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0d6efd !important;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}


/* Discount Offer Section */
.discount-offer-section {
    background: linear-gradient(rgba(13, 71, 161, 0.6), rgba(0, 150, 136, 0.5)),url('/images/pharmacy-website-hero-section.webp') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.discount-offer-section h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
}

.discount-offer-section p {
    font-size: 1.3rem;
    color: #e0f7fa;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.discount-offer-section .display-4 {
    /* For discount percentage */
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.discount-offer-section .lead {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.discount-offer-section .btn-light {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0d6efd;
    border-radius: 50px;
}

.discount-offer-section .btn-light:hover {
    background-color: #f8f9fa;
    color: #0a58ca;
    transform: scale(1.05);
}


/* Why Choose Us */
.feature-item {
    text-align: center;
    padding: 25px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-item .icon {
    font-size: 2.8rem;
    color: #0d6efd;
    margin-bottom: 20px;
    background-color: rgba(13, 110, 253, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-item:hover .icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2533;
}

.feature-item p {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Testimonials */
.testimonial-slider {
    padding-bottom: 50px;
    /* Space for pagination */
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin: 0 15px;
    border: 1px solid #e9ecef;
}

.testimonial-card img.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #0dcaf0;
    /* Secondary accent for avatar border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card p.quote {
    font-style: italic;
    color: #555;
    /* Darker quote text */
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-card .name {
    font-weight: 700;
    /* Bolder name */
    color: #2c3e50;
    font-size: 1.1rem;
}

.testimonial-card .role {
    font-size: 0.9rem;
    color: #0d6efd;
    font-weight: 500;
}

/* Health Tips / Blog */
.blog-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    width: 100%;
    /* height: 220px; */
    /* Adjusted height */
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.blog-card .card-body {
    padding: 25px;
    /* Increased padding */
}

.blog-card .card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a2533;
}

.blog-card .card-text {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.blog-card .read-more {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card .read-more:hover {
    color: #0a58ca;
    text-decoration: underline;
}

.blog-card .read-more .fa-arrow-right {
    transition: transform 0.3s ease;
}

.blog-card .read-more:hover .fa-arrow-right {
    transform: translateX(5px);
}


/* Doctor Consultation Booking */
.booking-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.flatpickr-calendar {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.booking-form .form-label {
    font-weight: 500;
    color: #333;
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: 8px;
    padding: 0.85rem 1rem;
}

.booking-form .btn-primary {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}


/* FAQ */
.faq-section .accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    /* Ensure rounded corners are respected by children */
}

.faq-section .accordion-button {
    font-weight: 600;
    color: #2c3e50;
    border-radius: 0 !important;
    /* Remove individual radius for seamless look */
    padding: 1.2rem 1.5rem;
    /* Increased padding */
    font-size: 1.1rem;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #0d6efd;
    color: #fff;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed)::after {
    /* Change arrow color for open state */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    /* Bootstrap focus style */
    border-color: transparent;
    /* Remove border on focus if not desired */
}

.faq-section .accordion-body {
    background-color: #fff;
    /* Cleaner background */
    padding: 1.5rem;
    /* Increased padding */
    font-size: 1rem;
}

/* Input type file */
input[type="file"] {
    border: 1px solid #ddd;
    padding: 8px;
    background: #f9f9f9;
}

.newsletter-section {
            background: linear-gradient(135deg, #1a67a8 0%, #2a8ad6 100%);
            color: white;
            padding: 60px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }
        
        .newsletter-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: float 20s linear infinite;
            z-index: 0;
        }
        
        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            100% { transform: translate(-20px, -20px) rotate(360deg); }
        }
        
        .newsletter-content {
            position: relative;
            z-index: 1;
        }
        
        .newsletter-section h3 {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 2rem;
            color: #ffffff;
        }
        
        .newsletter-section p {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .newsletter-form .form-control {
            border: none;
            border-radius: 50px 0 0 50px;
            padding: 15px 25px;
            font-size: 1rem;
            height: 55px;
            box-shadow: none;
        }
        
        .newsletter-form .form-control:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
        }
        
        .newsletter-form .btn {
            border-radius: 0 50px 50px 0;
            padding: 15px 30px;
            font-weight: 600;
            background-color: #ff6b35;
            border: none;
            height: 55px;
            transition: all 0.3s ease;
        }
        
        .newsletter-form .btn:hover {
            background-color: #e55a2b;
            transform: translateY(-2px);
        }
        
        .newsletter-form .btn:disabled {
            background-color: #6c757d;
            transform: none;
        }
        
        #newsletterFeedback {
            min-height: 24px;
            font-weight: 500;
        }
        
        .newsletter-success {
            color: #4ade80;
        }
        
        .newsletter-error {
            color: #f87171;
        }
        
        .newsletter-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .subscriber-count {
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-top: 15px;
            display: inline-block;
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @media (max-width: 992px) {
            .newsletter-section h3 {
                font-size: 1.7rem;
            }
            
            .newsletter-section p {
                font-size: 1rem;
            }
            
            .newsletter-form .form-control,
            .newsletter-form .btn {
                height: 50px;
            }
        }
        
        @media (max-width: 576px) {
            .newsletter-section {
                padding: 40px 0;
            }
            
            .newsletter-form .input-group {
                flex-direction: column;
            }
            
            .newsletter-form .form-control {
                border-radius: 50px;
                margin-bottom: 10px;
                text-align: center;
            }
            
            .newsletter-form .btn {
                border-radius: 50px;
                width: 100%;
            }
        }


/* Contact Us */
.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
    font-weight: 500;
    color: #333;
}

.contact-form .form-control {
    border-radius: 8px;
    padding: 0.85rem 1rem;
}

.contact-form .btn-primary {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    /* Align items to top for multi-line text */
    margin-bottom: 25px;
    /* Increased spacing */
}

.contact-info-item .icon {
    font-size: 1.6rem;
    /* Slightly larger icon */
    color: #0d6efd;
    margin-right: 20px;
    /* Increased margin */
    width: 50px;
    /* Larger icon background */
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.contact-info-item div {
    font-size: 1rem;
}

.contact-info-item div strong {
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* ===========================
   Footer Start
=========================== */
.footer {
    background-color: #1a2533;
    color: #adb5bd;
    padding: 70px 0 20px;
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.25rem;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer a:hover {
    color: #0dcaf0;
    padding-left: 5px;
    text-decoration: none;
}

.footer .list-unstyled li {
    margin-bottom: 12px;
}

.footer .social-icons a {
    color: #adb5bd;
    font-size: 1.6rem;
    margin-right: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer .social-icons a:hover {
    color: #0dcaf0;
    transform: scale(1.1);
}

.footer .copyright {
    border-top: 1px solid #343a40;
    padding-top: 25px;
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
}

.footer .copyright a {
    color: #0dcaf0;
    font-weight: 500;
}

.footer .copyright a:hover {
    color: #fff;
    text-decoration: underline;
}


/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-section {
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .navbar-nav {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    .navbar .nav-link {
        padding: 0.8rem 1rem;
    }

    .navbar .nav-link::after {
        bottom: 2px;
    }

    .about-us-content .section-title h2,
    .about-us-content .section-title h2::after {
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-us-content .section-title h2::after {
        left: calc(50% - 40px);
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .contact-form,
    .booking-form {
        padding: 30px;
    }

    .footer {
        text-align: center;
    }

    .footer .social-icons {
        margin-bottom: 20px;
        text-align: center;
    }

    .footer .col-lg-3,
    .footer .col-md-6 {
        /* Stack footer columns */
        margin-bottom: 30px;
    }

    /* .newsletter-section h3 {
        font-size: 1.8rem;
    }

    .newsletter-section p {
        font-size: 1rem;
    } */

    .newsletter-form .input-group {
        flex-direction: column;
        /* Stack input and button */
    }

    .newsletter-form input[type="email"],
    .newsletter-form .btn-primary {
        border-radius: 8px !important;
        /* Full radius for stacked elements */
        width: 100%;
    }

    .newsletter-form input[type="email"] {
        margin-bottom: 10px;
    }

    .discount-offer-section h2 {
        font-size: 2.2rem;
    }

    .discount-offer-section p {
        font-size: 1.1rem;
    }

    .discount-offer-section .display-4 {
        font-size: 3.5rem;
    }

    .discount-offer-section .lead {
        font-size: 1.2rem;
    }
}

/* Scroll Progress Button */
#progress {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: conic-gradient(#0d6efd 0deg, #d7d7d7 0deg);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 9999;
  display: none;
}

#progress-value {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #0d6efd;
}

/* ==============================
   Pharmaceutical Hero Section
   ============================== */
    .svap_pharma-hero {
      position: relative;
      height: 75vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(rgba(13, 71, 161, 0.6), rgba(0, 150, 136, 0.5)),url('/images/svappharma_service-banner.webp') no-repeat center center;
      color: #fff;
      padding: 0 15px;
    }

    .svap_pharma-hero .svap_pharma-container {
      max-width: 900px;
    }

    .svap_pharma-heading {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
      font-family: 'Montserrat', sans-serif;
      color: #fff;
    }

    .svap_pharma-text {
      font-size: 1.2rem;
      margin-bottom: 30px;
      line-height: 1.6;
      color: #f8f9fa;
    }

    .svap_pharma-button {
      display: inline-block;
      padding: 12px 30px;
      font-size: 1rem;
      font-weight: 600;
      color: #555;
      background: #fff;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
    }

    .svap_pharma-button:hover {
      background: #0b5ed7;
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }

    /* Section Title */
    .svap_pharma-section-title {
      text-align: center;
      margin-bottom: 50px;
      color: #1a2533;
      position: relative;
      padding-bottom: 15px;
    }

    .svap_pharma-section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: #0b5ed7;
      border-radius: 2px;
    }

    /* Service Card */
    .svap_pharma-service-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      height: 100%;
      border: none;
    }

    .svap_pharma-service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .svap_pharma-service-img {
      height: 200px;
      overflow: hidden;
    }

    .svap_pharma-service-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }

    .svap_pharma-service-card:hover .svap_pharma-service-img img {
      transform: scale(1.1);
    }

    .svap_pharma-service-icon {
      font-size: 50px;
      color: var(--primary);
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    .svap_pharma-service-card:hover .svap_pharma-service-icon {
      color: var(--secondary);
      transform: scale(1.1);
    }

    .svap_pharma-service-content {
      padding: 25px;
    }

    .svap_pharma-service-content h3 {
      color: var(--secondary);
      margin-bottom: 15px;
    }

    .svap_pharma-btn-service {
      background: var(--accent);
      color: white;
      border: 2px solid var(--accent);
      padding: 8px 20px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .svap_pharma-btn-service:hover {
      background: transparent;
      color: var(--accent);
    }

    /* Process Steps */
    .svap_pharma-process-step {
      text-align: center;
      padding: 30px 20px;
      border-radius: 10px;
      background: white;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      height: 100%;
    }

    .svap_pharma-process-step:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .svap_pharma-step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      font-weight: 700;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }

    .svap_pharma-process-step:hover .svap_pharma-step-number {
      background: var(--secondary);
      transform: scale(1.1);
    }

    /* Testimonials */
    .svap_pharma-testimonial-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      height: 100%;
    }

    .svap_pharma-testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .svap_pharma-testimonial-text {
      position: relative;
      padding: 20px 0;
    }

    .svap_pharma-testimonial-text:before {
      content: "";
      font-size: 60px;
      color: var(--primary);
      opacity: 0.2;
      position: absolute;
      top: -10px;
      left: -10px;
      font-family: Georgia, serif;
    }

    .svap_pharma-client-info {
      display: flex;
      align-items: center;
      margin-top: 20px;
    }

    .svap_pharma-client-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
    }

    .svap_pharma-client-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* ==============================
        CTA Section
    ============================== */
    .svap_pharma-cta-section {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: white;
      padding: 80px 0;
      text-align: center;
      margin-top: 50px;
    }

    .svap_cta-container {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .svap_cta-heading {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
      font-family: 'Montserrat', sans-serif;
      color: #fff;
    }

    .svap_cta-text {
      font-size: 1.2rem;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .svap_pharma-cta-button {
      display: inline-block;
      padding: 12px 30px;
      font-size: 1rem;
      font-weight: 600;
      color: #2c3e50;
      background: var(--light);
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
    }

    .svap_pharma-cta-button:hover {
      background: transparent;
      color: var(--light);
      border: 2px solid #fff;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .svap_cta-heading {
         font-size: 2rem;
      }
      .svap_cta-text {
         font-size: 1rem;
      }
      .svap_pharma-cta-button {
         padding: 10px 24px;
         font-size: 0.9rem;
      }
    }


    /* Product Header Section */
    .svap_product-header {
        background: linear-gradient(rgba(13, 71, 161, 0.6), rgba(0, 150, 136, 0.5)), url('/images/capsules.webp') no-repeat center center;
        background-size: cover;
        height: 75vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 0 15px;
        margin-bottom: 50px;
    }

    /* Container */
    .svap_product-container {
        max-width: 900px;
        margin: 0 auto;
    }

    /* Heading */
    .svap_product-heading {
        font-size: 3rem;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 1rem;
    }

    /* Lead Paragraph */
    .svap_product-lead {
        font-size: 1.2rem;
        color: #f1f1f1;
        margin-top: 0.25rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.5;
        text-align: center;
    }

    /* Product-Section Start */
            .product-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
            background: white;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .product-img-container {
            height: 200px;
            background-color: var(--svap-light);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }

        .product-img {
            max-height: 100%;
            max-width: 100%;
            object-fit: cover;
        }

        .product-img-container {
            width: 100%;
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
}

            /* Search Bar Section */
        .svap_pro-search-box {
            position: relative;
            margin-bottom: 30px;
        }
        
        .svap_pro-search-box input {
            border-radius: 50px;
            padding-left: 20px;
            padding-right: 45px;
            height: 45px;
        }
        
        .svap_pro-search-box button {
            position: absolute;
            right: 5px;
            top: 5px;
            height: 35px;
            width: 35px;
            border-radius: 50%;
            background: var(--svap-blue);
            color: white;
            border: none;
        }

/* ==============================
   Pharmaceutical Topbar Section start
============================== */
.custom-topbar {
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa;
    z-index: 1050;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
    padding: 12px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    border-bottom: 1px solid #ddd;
    position: sticky;
}

.custom-topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.custom-topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.custom-topbar a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.custom-topbar a:hover {
    color: #0056b3;
}

/* ✅ Mobile pe sirf time & phone ek line me */
@media (max-width: 768px) {
    .custom-topbar-left {
        display: flex;
        flex-direction: row; /* row me side by side */
        gap: 8px;
        align-items: center;
    }

    .time-item,
    .phone-item {
        display: inline-flex; /* ek line me force */
        align-items: center;
        white-space: nowrap; /* line break prevent */
    }

    .location-item,
    .email-item {
        display: none; /* hide extra items */
    }
}

/* Phone Item Stylish UI */
.phone-item {
    background: linear-gradient(135deg, #007bff, #0056b3); /* blue gradient */
    padding: 6px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.phone-item i {
    color: #fff;
    font-size: 14px;
}

.phone-item a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.phone-item:hover {
    background: linear-gradient(135deg, #0056b3, #00408d);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
    color: #fff;
}
/* ✅ Ensure phone number stays white even on hover */
.phone-item:hover a {
    color: #fff;
}
/* ==============================
   Pharmaceutical Topbar Section close
============================== */


/* ==============================
   Pharmaceutical contact-us start
============================== */
        header {
            background-color: white;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            position: fixed;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            margin-right: 10px;
            font-size: 28px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        nav ul li a:hover {
            color: #ffd700;
        }
        
        
        .page-title {
            text-align: center;
            margin: 30px 0;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
        }
        
        .page-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
        }
        
        .contact-form h3 {
            margin-top: 30px;
            margin-bottom: 10px;
        } 
        .contact-form {
            flex: 2;
            min-width: 300px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
        }
        
        .info-section {
            margin-bottom: 25px;
        }
        
        .info-section h3 {
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .info-section h3 i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .info-section p {
            margin-bottom: 10px;
            color: #555;
        }
        
        .info-section a i {
            transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
        }

        /* LinkedIn */
        .info-section a:hover .fa-linkedin {
            color: #0077b5;
            transform: scale(1.3);
            text-shadow: 0 0 10px rgba(0, 119, 181, 0.7);
        }
        .info-section a:active .fa-linkedin {
            transform: scale(1.1);
        }

        /* Twitter (X) */
        .info-section a:hover .fa-twitter {
            color: #1da1f2;
            transform: scale(1.3);
            text-shadow: 0 0 10px rgba(29, 161, 242, 0.7);
        }
        .info-section a:active .fa-twitter {
            transform: scale(1.1);
        }

        /* Facebook */
        .info-section a:hover .fa-facebook {
            color: #1877f2;
            transform: scale(1.3);
            text-shadow: 0 0 10px rgba(24, 119, 242, 0.7);
        }
        .info-section a:active .fa-facebook {
            transform: scale(1.1);
        }

        /* Instagram gradient */
        .info-section a:hover .fa-instagram {
            color: #e1306c;
            transform: scale(1.3);
            text-shadow: 0 0 10px rgba(225, 48, 108, 0.7);
        }
        .info-section a:active .fa-instagram {
            transform: scale(1.1);
        }
        
        .contact-methods {
            list-style: none;
        }
        
        .contact-methods li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-methods li i {
            color: var(--primary);
            margin-right: 10px;
            margin-top: 4px;
            font-size: 18px;
            min-width: 24px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-field {
            flex: 1;
            min-width: 250px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }
        
        input, select, textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(60, 141, 173, 0.2);
        }
        
        .required:after {
            content: '*';
            color: var(--danger);
            margin-left: 4px;
        }
        
        .contact_us-btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 14px 28px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .contact_us-btn:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }
        
        .contact_us-btn-block {
            display: block;
            width: 100%;
        }
        
        .consent-group {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .consent-group input {
            margin-right: 10px;
            margin-top: 5px;
            width: auto;
        }
        
        .consent-group label {
            font-weight: normal;
            margin-bottom: 0;
        }
        
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
            
            .contact-info, .contact-form {
                padding: 20px;
            }
        }

        .confirmation-message {
            display: none;
            background: #f8fff8;
            border-left: 4px solid var(--success);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .form-step {
            display: none;
        }
        
        .form-step.active {
            display: block;
            padding-top: 5px;
        }
        
        .step-indicator {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            position: relative;
        }
        
        .step-indicator:before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 2px;
            background: #ddd;
            z-index: 1;
        }
        
        .step {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: white;
            border: 2px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            position: relative;
            z-index: 2;
        }
        
        .step.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 0 8px rgba(26, 95, 122, 0.6);
        }
        
        .step-label {
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            font-size: 12px;
            color: var(--gray);
        }
        
        .step.active .step-label {
            color: var(--primary);
            font-weight: 600;
        }
        
        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .department-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        
        .department-option {
            border: 2px solid #ddd;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .department-option:hover {
            border-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .department-option.selected {
            border-color: var(--primary);
            background: rgba(26, 95, 122, 0.05);
        }
        
        .department-option i {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .map-container {
            height: 250px;
            background: #eee;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 20px;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }
/* ==============================
   Pharmaceutical contact-us close
============================== */

/* ===== MOBILE RESPONSIVE FIXES About-us page ===== */

@media screen and (max-width: 768px) {
  
  /* Hero Section Fix */
  .about_svap-hero {
    padding: 60px 20px !important;
    text-align: center;
  }
  
  .about_svap-content h1 {
    font-size: 28px !important;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .about_svap-content p {
    font-size: 16px !important;
    line-height: 1.5;
  }
  
  /* About Section Layout Fix */
  .svap-about {
    flex-direction: column;
    padding: 30px 20px !important;
    gap: 30px;
  }
  
  .svap-about-text {
    width: 100% !important;
    text-align: center;
  }
  
  .svap-about-text h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .svap-about-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .svap-about-image {
    width: 100% !important;
  }
  
  .svap-about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Mission & Vision Cards Fix */
  .svap-cards {
    flex-direction: column;
    padding: 30px 20px !important;
    gap: 20px;
  }
  
  .svap-card {
    width: 100% !important;
    padding: 25px 20px;
    text-align: center;
  }
  
  .svap-card i {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .svap-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .svap-card p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  /* Core Values Grid Fix */
  .svap-values {
    padding: 40px 20px !important;
  }
  
  .svap-values h2 {
    font-size: 24px;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .svap-values-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  .svap-value-item {
    text-align: center;
    padding: 20px 15px;
  }
  
  .svap-value-item i {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .svap-value-item h5 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .svap-value-item p {
    font-size: 13px;
    line-height: 1.5;
  }
  
  /* Team Section Fix */
  .svap-team {
    padding: 40px 20px !important;
  }
  
  .svap-team h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
  }
  
  .svap-team-members {
    flex-direction: column;
    gap: 25px;
  }
  
  .svap-member {
    width: 100% !important;
    text-align: center;
  }
  
  .svap-member img {
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 15px;
  }
  
  .svap-member h5 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .svap-member p {
    font-size: 14px;
  }
}

/* Extra Small Devices (Phones) */
@media screen and (max-width: 480px) {
  .about_svap-content h1 {
    font-size: 24px !important;
  }
  
  .about_svap-content p {
    font-size: 14px !important;
  }
  
  /* Topbar Fix for Mobile */
  .custom-topbar {
    display: none; /* Ya fir simplify karein */
  }
  
  /* Navbar Brand Logo Size */
  .navbar-brand img {
    max-height: 40px !important;
  }
}

/* Tablet Devices */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .svap-about {
    padding: 40px 30px !important;
  }
  
  .svap-values-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  
  .svap-team-members {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .svap-member {
    width: 45% !important;
  }
}
/* ===== MOBILE RESPONSIVE FIXES About-us page  close ===== */