 /* ====================== 
           BASE STYLES & VARIABLES
           ====================== */
        :root {
            --primary-color: #2d79f3;
            --secondary-color: #063e9e;
            --accent-color: #ff7a01;
            --highlight-blue: #2d79f3;
            --text-color: #333;
            --light-text: #fff;
            --bg-color: #f8f9fa;
            --footer-bg: #a1afcb;
            --section-bg: #f0f4f8;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --success-color: #4bb543;
            --error-color: #ff3333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ====================== 
               HEADER
         ====================== */
        .header {
            background-color: #ffffff;
            padding: 5px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 0px;
            border-bottom: 1px solid #eaeaea;
        }

        .logo img {
            height: 80px;
            width: auto;
            transition: var(--transition);
        }

        .contact-info {
            display: flex;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
        }

        .contact-item i {
            color: #1a5f9c;
            font-size: 14px;
        }

        .header-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
        }

        .address {
            font-size: 11px;
            color: #555;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .address i {
            color: #1a5f9c;
            font-size: 14px;
        }

        .address strong {
            color: #333;
        }

        .business-hours {
            font-size: 11px;
            color: #555;
            text-align: right;
        }

        .business-hours strong {
            color: #333;
        }

        .nav-menu {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .med-import-btn {
            border: none;
            display: block;
            position: relative;
            padding: 0.7em 1.4em;
            font-size: 13px;
            background-color: #00173c;
            cursor: pointer;
            user-select: none;
            overflow: hidden;
            color: rgb(255, 255, 255);
            z-index: 1;
            font-family: inherit;
            font-weight: 700;
            transition: all 0.4s ease;
            border-radius: 6px;
            white-space: nowrap;
        }

        .med-import-btn:hover {
            background-color: #002b6e;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .nav-menu a {
            text-decoration: none;
            color: #444;
            font-weight: 700;
            font-size: 12px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            padding: 3px 0;
            position: relative;
            letter-spacing: 0.5px;
        }

        .nav-menu a:hover {
            color: #1a5f9c;
        }

        .nav-menu a.active {
            color: #1a5f9c;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--primary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1.5px;
            background: #1a5f9c;
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }

        .nav-menu a:hover::after, 
        .nav-menu a.active::after {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger-line {
            width: 25px;
            height: 2px;
            background-color: var(--text-color);
            display: block;
            margin: 5px auto;
            transition: all 0.3s ease;
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background-color: white;
            z-index: 1000;
            padding: 80px 20px 20px;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            overflow-y: auto;
        }

        .mobile-nav.active {
            left: 0;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 600;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mobile-nav-links a:hover {
            color: var(--primary-color);
        }

        .mobile-nav-links .med-import-btn {
            width: 100%;
            text-align: center;
            margin-top: 10px;
        }

        .mobile-contact-info {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .mobile-contact-item i {
            color: #1a5f9c;
        }

        .mobile-address {
            margin-top: 20px;
            font-size: 13px;
        }

        .mobile-business-hours {
            margin-top: 15px;
            font-size: 13px;
        }

        .mobile {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .contact-info {
                gap: 15px;
            }
            
            .nav-menu {
                gap: 8px;
            }
        }

        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .contact-info {
                order: 3;
                width: 100%;
                justify-content: center;
            }
            
            .header-bottom {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .logo img {
                height: 60px;
            }
        }

        @media (max-width: 576px) {
            .contact-info {
                flex-direction: column;
                gap: 8px;
                align-items: flex-start;
            }
            
            .logo img {
                height: 50px;
            }
            
            .contact-item {
                font-size: 11px;
            }
        }

        /* Hamburger Animation */
        .hamburger.active .hamburger-line:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .hamburger-line:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }


/* ======================
        HERO SECTION
   ====================== */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    backdrop-filter: blur(2px);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* ======================
        QOUTE BUTTON
   ====================== */

.quote-button {
            display: inline-block;
            background: linear-gradient(to right, #3a86ff, #4cc9f0);
            color: white;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

.quote-button:hover {
    background: #020942;
     background-position: right center;
    box-shadow: 0 6px 20px rgba(58, 134, 255, 0.4);
    transform: translateY(-2px);
        }


 /* modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    touch-action: manipulation; /* Improves touch responsiveness */
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    position: relative;
    border-radius: 8px;
}

/* Close button styles */
.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001; /* Ensure it's above other elements */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

/* Mobile-specific styles*/
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 15px;
    }
    
    .close {
        right: 15px;
        top: 15px;
        font-size: 24px;
        width: 36px;
        height: 36px;
    }
}

/* Ensure touch targets are large enough */
@media (max-width: 480px) {
    .close {
        width: 44px;
        height: 44px;
    }
}

        .close:hover {
            color: #2a5f9e;
        }

        /* Form styles (header) */
        .form-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }

        .form-header h2 {
            color: #2a5f9e;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .form-header::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #3a86ff, #4cc9f0);
            margin: 15px auto;
            border-radius: 3px;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
            font-size: 14px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 15px;
            transition: all 0.3s;
            background-color: #f9f9f9;
            box-sizing: border-box; /* Added to fix overflow issues */
        }

        /* Custom select dropdown styling */
        .form-group select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 1em;
            padding-right: 2.5em;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3a86ff;
            box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
            background-color: white;
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        /* Validation styles */
        .form-group.valid input,
        .form-group.valid select,
        .form-group.valid textarea {
            border-color: #4CAF50;
            background-color: #f8fff8;
        }

        .form-group.error input,
        .form-group.error select,
        .form-group.error textarea {
            border-color: #ff3860;
        }

        .error-message {
            color: #ff3860;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        .form-group.error .error-message {
            display: block;
        }

         .file-name.uploaded {
      color: green;
      font-style: italic;
    }

        /* Submit button */
        .submit-btn {
            background: linear-gradient(to right, #3a86ff, #4cc9f0);
            color: white;
            border: none;
            padding: 14px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
            width: 100%;
            margin-top: 20px;
        }

        .submit-btn:hover {
            background-position: right center;
            box-shadow: 0 6px 20px rgba(58, 134, 255, 0.4);
            transform: translateY(-2px);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .modal-content {
                padding: 20px;
                margin: 10% auto;
                width: 95%;
            }
            
            .quote-button {
                padding: 10px 20px;
                font-size: 14px;
            }
        }
/* phone no*/
        @media (max-width: 480px) {
    .form-group input[type="tel"] {
        font-size: 14px;
        padding: 10px 12px;
    }
}

/* ======================
   Imported Medicines
   ====================== */

.imported-medicines {
    text-align: center;
    background: #f6f6f6;
    padding: 60px 20px;
}

.imported-medicines h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
    position: relative;
    display: inline-block;
}

.imported-medicines h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #3a86ff;
    margin: 15px auto 0;
}

.medicine-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.medicine-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.medicine-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.medicine-box .icon {
    font-size: 40px;
    color: #2d79f3;
    flex-shrink: 0;
    margin-top: 5px;
}

.medicine-box h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
}

.medicine-box p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* ====================== 
      MEDICINE STRIP
   ====================== */
.floating-meds-strip {
    position: relative;
    background: linear-gradient(90deg, #2a6496 0%, #1a3e6f 100%);
    color: white;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    min-height: 150px;
}

.med-content {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 250px;
}

.med-inner {
    margin-left: 180px;
}

/* Text Styles */
.med-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.med-button {
    position: relative;
    z-index: 2;
    background-color: #3a86ff;
    color: var(--primary);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.med-button:hover {
    background-color: #72a3f3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.med-button svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    transition: transform 0.3s;
}

.med-button:hover svg {
    transform: translateX(5px);
}

/* Floating medicine elements */
.floating-med {
    position: absolute;
    opacity: 0.15;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.pill-1 {
    top: 20%;
    left: 5%;
    width: 60px;
    animation-delay: 0s;
}

.pill-2 {
    top: 60%;
    left: 15%;
    width: 40px;
    animation-delay: 1s;
}

.bottle-1 {
    bottom: 10%;
    right: 8%;
    width: 50px;
    animation-delay: 0.5s;
}

.bottle-2 {
    top: 30%;
    right: 20%;
    width: 45px;
    animation-delay: 1.5s;
}

.capsule-1 {
    bottom: 30%;
    right: 30%;
    width: 65px;
    animation-delay: 2s;
}

/* RESPONSIVE STYLES*/
@media (max-width: 768px) {
    .floating-meds-strip {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 30px 20px;
        gap: 10px;
    }

    .med-inner {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    .med-content {
        margin-bottom: 20px;
        width: 100%;
    }

    .med-content h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .med-button {
        width: 100%;
        justify-content: center;
    }

    .floating-med {
        display: none; /* Hide decorative elements on small screens */
    }
}

@media (max-width: 480px) {
    .floating-meds-strip {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }

    .med-content h2 {
        font-size: 1.2rem;
    }
}

/* ====================== 
        Who We Are
   ====================== */
.heading {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 100px;
}

.heading p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    
  padding-bottom: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #2c3e50;
    margin-top: 0;
    font-size: 1.3rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    display: inline-block;
}

@media (max-width: 768px) {
    .card-container {
        grid-template-columns: 1fr;
    }
}

/*======================
        Who We Serve
    ====================== */

.serve-section {
    background: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
}

.serve-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.serve-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #00c2d1;
    margin: 15px auto 0;
    border-radius: 3px;
}

.serve-grid {
    display: grid;
   grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.serve-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.serve-card img {
    width: 70px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.serve-card p {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/*======================
       IMPORT PROCESS
    ====================== */
.import-process {
    background: #f7f7f7;
    padding: 80px 20px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 65px;
    padding: 30px 0;
    position: relative;
}

.steps-grid::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 3px;
    background-color: var(--primary-color);
}

.step {
    position: relative;
    padding: 0 10px;
}

.step::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: #00b0b9;
    border-radius: 50%;
    z-index: 2;
}

.step img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.step h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

/*======================
       DOCUMENTATION
    ======================*/
.doc-header {
    margin-bottom: 50px;
}

.doc-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 5px solid #1f5ec5;
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.doc-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 200px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.doc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.doc-item:hover .icon-circle {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-circle img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.doc-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.doc-item p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

/*======================
          FAQ
    ======================*/
.faq-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h1::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

.faq-header p {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    background: white;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
    background-color: white;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}

/* ======================
   MODAL STYLES
   ====================== */

   .doc-footer>h2{
  padding: 75px 0px 50px 0px;
  font-size: 1.7rem;
    font-weight: 700;
    color: #222;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 3px solid var(--primary-color);
   }
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow-y: auto;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    animation: slideDown 0.4s;
    border-top: 5px solid #3a86ff;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    position: absolute;
    right: 22px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #2a5f9e;
}

/* Ensure selects match input styling */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 1em;
  padding-right: 2em;
}

/* Style for valid select */
.form-group.valid select {
  border-color: #4CAF50;
  background-color: #f8fff8;
}


/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.form-header h2 {
    color: #2a5f9e;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-header p {
    color: #666;
    margin-bottom: 0;
}

.form-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #3a86ff, #4cc9f0);
    margin: 15px auto;
    border-radius: 3px;
}

/* Form Styles */
#prescriptionForm {
    margin-top: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    position: relative;
    min-height: 75px;
}

.form-group.floating-label {
    padding-top: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #999;
    font-size: 14px;
}

.form-group input:not([type="file"]),
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3a86ff;
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
    background-color: white;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Valid state */
.form-group.valid input:not([type="file"]),
.form-group.valid textarea,
.form-group.valid select {
    border-color: #4CAF50;
    background-color: #f8fff8;
}

.form-group.valid input:focus,
.form-group.valid textarea:focus,
.form-group.valid select:focus {
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

/* File Input Styling */
.file-input-container {
   position: relative;
    padding-top: 0px;
    top: -28%;
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    font-size: 100px;
    opacity: 0;
    right: 0;
    top: 0;
    cursor: pointer;
}

.file-input-button {
    display: inline-block;
    padding: 12px 15px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    color: #555;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: all 0.3s;
}

.file-input-button:hover {
    background-color: #e9e9e9;
}

.file-name {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: linear-gradient(to right, #3a86ff, #4cc9f0);
    background-size: 200% auto;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 300px;
}

.submit-btn:hover {
    background-position: right center;
    box-shadow: 0 6px 20px rgba(58, 134, 255, 0.4);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-text h3 {
    margin: 0;
    font-size: 18px;
}

.submit-text p {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
}

/* Form Validation */
.form-group.error input:not([type="file"]),
.form-group.error textarea,
.form-group.error select {
    border-color: #ff3860;
}

.form-group .error-message {
    color: #ff3860;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Floating Labels Effect */
.form-group.floating-label {
    position: relative;
}

.form-group.floating-label label {
    position: absolute;
    top: 12px;
    left: 15px;
    color: #999;
    transition: all 0.3s;
    pointer-events: none;
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.form-group.floating-label input:focus + label,
.form-group.floating-label input:not(:placeholder-shown) + label,
.form-group.floating-label textarea:focus + label,
.form-group.floating-label textarea:not(:placeholder-shown) + label,
.form-group.floating-label select:focus + label,
.form-group.floating-label select:not([value=""]):valid + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background-color: white;
    padding: 0 5px;
}

.form-group.floating-label.valid label {
    color: #4CAF50;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 20px;
    background-color: #f0f9f0;
    border-radius: 6px;
    color: #2e7d32;
    margin-top: 20px;
    border-left: 4px solid #4caf50;
}

.success-message h3 {
    margin-top: 0;
    color: #2e7d32;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        padding: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        min-height: auto;
    }
}
/* Style for the select dropdown */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 35px !important;
}

.close-modal-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #666;
  transition: color 0.3s;
}

.close-modal-btn:hover {
  color: #333;
}

.close-modal-btn svg {
  width: 24px;
  height: 24px;
}
  
/*============================
  POWER OF ATTORNEY (4TH card)
   ============================*/
.poa-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.poa-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: white;
    border-radius: 12px;
    width: 95%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.poa-modal.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.modal-header h3 {
    margin: 0;
    color: var(--dark-color);
    font-size: 22px;
}

.modal-header p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s;
}

.close-modal:hover {
    background: #f5f5f5;
}

.close-modal svg {
    width: 24px;
    height: 24px;
    fill: #666;
}

.modal-body {
    padding: 20px;
}

/* Form Progress */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
    transform: translateY(-50%);
}

.progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.progress-step.active {
    background: var(--primary-color);
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Floating Inputs */
.floating-input {
    position: relative;
    margin-bottom: 20px;
}

.floating-input input,
.floating-input textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.floating-input textarea {
    min-height: 100px;
    resize: vertical;
    padding-top: 20px;
}

.floating-input label {
    position: absolute;
    top: 12px;
    left: 45px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-input .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.floating-input .input-icon svg {
    width: 18px;
    height: 18px;
}

.floating-input input:focus,
.floating-input textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

.floating-input input:focus + label,
.floating-input textarea:focus + label,
.floating-input input:not(:placeholder-shown) + label,
.floating-input textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 45px;
    font-size: 12px;
    color: var(--primary-color);
    background: white;
    padding: 0 5px;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.form-navigation button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-step {
    background: #f5f5f5;
    color: #666;
}

.prev-step:hover {
    background: #e0e0e0;
}

.next-step,
.submit-form {
    background: var(--primary-color);
    color: white;
}

.next-step:hover,
.submit-form:hover {
    background: var(--secondary-color);
}

/* Floating label for select */
.floating-input select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    cursor: pointer;
}

.floating-input select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

.floating-input select:focus + label,
.floating-input select:valid + label {
    top: -10px;
    left: 45px;
    font-size: 12px;
    color: var(--primary-color);
    background: white;
    padding: 0 5px;
}

/* Dropdown arrow */
.floating-input::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #999;
  font-size: 12px;
  pointer-events: none;
}

#downloadPoaBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
  border: none;
  cursor: pointer;
  width: 100%;
}

#downloadPoaBtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

#downloadPoaBtn .btn-icon {
  width: 60px;
  height: 60px;
  background: #4361ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

#downloadPoaBtn .btn-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

#downloadPoaBtn .btn-text {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

#openModalBtn {
  background: none;
  border: none;
  padding: 0;
  margin: 0 auto;
  max-width: 200px;
  width: 100%;
  cursor: pointer;
}

#openModalBtn .doc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

#openModalBtn .doc-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

#openModalBtn .icon-circle img {
  width: 30px;
  height: 30px;
}

.doc-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.doc p {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

.doc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.doc-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.icon-circle img {
  width: 30px;
  height: 30px;
}

.doc-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.doc-item p {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}


/* Remove specific button styles that we don't need anymore */
.download-btn {
  /* Remove these styles as we're using doc-item for consistency */
  all: unset;
}

/* Keep the modal trigger button styles */
#openModalBtn {
  background: none;
  border: none;
  padding: 0;
  margin: 0 auto;
  max-width: 200px;
  width: 100%;
  cursor: pointer;
}

#openModalBtn .doc-item {
   display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  top: 50px;
  margin-bottom: 20%;
}

/* Keep the POA download button styles */
#downloadPoaBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
  border: none;
  cursor: pointer;
  width: 100%;
}

#downloadPoaBtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#downloadPoaBtn .btn-icon {
  width: 60px;
  height: 60px;
  background: #4361ee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

#downloadPoaBtn .btn-icon svg {
  width: 30px;
  height: 30px;
  fill: white;
}

#downloadPoaBtn .btn-text {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}




/* Features/About Section */
.features-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.features-header p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.card p strong {
    color: #222;
    font-weight: 600;
}

/* Import Process Section */
.import-process {
    background: #f7f7f7;
    padding: 80px 20px;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 65px;
    padding: 30px 0;
    position: relative;
}

.steps-grid::after {
   content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 3px;
    background-color: var(--primary-color);
}

.step {
    position: relative;
    padding: 0 10px;
}

.step::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
   background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 2;
}

.step img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.step h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

/* Documentation Section */
.doc-header {
    margin-bottom: 50px;
    padding: 30px 0px 0px 0px;
}

.doc-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 3px solid var(--primary-color);;
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.doc-item {
    text-align: center;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #4361ee;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.doc-item:hover .icon-circle {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-circle img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.doc-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 5px;
}

.doc-item p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}*/

/* FAQ Section */
 :root {
            --primary-blue: #1a73e8;
            --light-blue: #e8f0fe;
            --dark-blue: #0d47a1;
            --white: #ffffff;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .faq-header h1 {
            color: var(--primary-blue);
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            animation: fadeIn 0.8s ease-out;
        }
        
        .faq-header p {
            color: #555;
            font-size: 1.1rem;
            animation: fadeIn 1s ease-out;
        }
        
        .faq-accordion {
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .faq-item {
            border-bottom: 1px solid #e0e0e0;
            transition: all 0.3s ease;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            color: var(--dark-blue);
            transition: all 0.3s ease;
            background: var(--white);
        }
        
        .faq-question:hover {
            background: var(--light-blue);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-blue);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
            transform: rotate(0deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.4, 1);
            padding: 0 1.5rem;
            background: var(--light-blue);
        }
        
        .faq-item.active .faq-answer {
            max-height: 1000px;
            padding: 0 1.5rem 1.5rem;
        }
        
        .faq-answer p {
            color: #333;
            line-height: 1.6;
            margin: 0;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
        }
        
        .faq-item.active .faq-answer p {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Breakthrough Feature 1: Ask Question Form */
        .ask-question {
            margin-top: 2rem;
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            animation: slideUp 0.8s ease-out;
        }
        
        .ask-question h3 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        
        .ask-question textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            resize: vertical;
            min-height: 100px;
            margin-bottom: 1rem;
            transition: border 0.3s ease;
        }
        
        .ask-question textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
        }
        
        .submit-question {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .submit-question:hover {
            background: var(--dark-blue);
            transform: translateY(-2px);
        }
        
        /* Breakthrough Feature 3: Rating System */
        .faq-feedback {
            display: flex;
            align-items: center;
            margin-top: 1rem;
            opacity: 0;
            height: 0;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-feedback {
            opacity: 1;
            height: auto;
            margin-top: 1rem;
        }
        
        .faq-feedback p {
            margin-right: 1rem;
            color: #555;
            font-size: 0.9rem;
        }
        
        .feedback-buttons {
            display: flex;
            gap: 0.5rem;
        }
        
        .feedback-btn {
            background: none;
            border: 1px solid #ddd;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .feedback-btn:hover {
            background: var(--light-blue);
            border-color: var(--primary-blue);
        }
        
        .feedback-btn.active {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
        }
        
        /* Breakthrough Feature 4: Floating "Got Questions?" Button */
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(26, 115, 232, 0); }
            100% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0); }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .faq-container {
                padding: 1rem;
                margin-top: 10%;
            }
            
            .faq-header h1 {
                font-size: 2rem;
            }
            
            .faq-question {
                padding: 1rem;
            }
        }

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-info {
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .quote-section h2 {
        font-size: 1.8rem;
    }
    
    .quote-section .btn {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: 20px;
        display: inline-block;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .social-bar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding: 80px 20px 20px;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero .overlay {
        padding: 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 350px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .quote-button {
        padding: 10px 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid::after {
        display: none;
    }
    
    .step::before {
        display: none;
    }
    
    .serve-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h1 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
}

.footer {
    background-color: var(--footer-bg);
    color: var(--text-color);
    padding: 50px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    mix-blend-mode: color-burn;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
}

.social-links {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    color: var(--text-color);
    transition: var(--transition);
    font-size: 14px;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: white;
}

.social-links a:hover.facebook {
    background-color: #1877F2;
}

.social-links a:hover.twitter {
    background-color: #1DA1F2;
}

.social-links a:hover.instagram {
    background-color: #E4405F;
}

.social-links a:hover.whatsapp {
    background-color: #25D366;
    color: white;
}

.footer-links {
    flex: 1;
    display: flex;
    gap: 20px;
    min-width: 250px;
}

.links-column {
    flex: 1;
    min-width: 120px;
}

.links-column h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.links-column ul {
    list-style: none;
    padding: 0;
}

.links-column li {
    margin-bottom: 8px;
}

.links-column a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    font-size: 14px;
}

.links-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact-form {
    flex: 1;
    min-width: 250px;
}

.footer-contact-form h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(45, 121, 243, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 8px;
}

.submit-btn,
.reset-btn {
    padding: 10px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.submit-btn {
    background-color: var(--accent-color);
    color: white;
    flex: 2;
}

.submit-btn:hover {
    background-color: #e06b00;
}

.reset-btn {
    background-color: #ddd;
    color: var(--text-color);
    flex: 1;
    margin: 20px 0px 0px;
}

.reset-btn:hover {
    background-color: #ccc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright {
    font-size: 13px;
    color: var(--text-color);
}

/* Adjustments for iPad and smaller screens */
@media (max-width: 992px) {
    /* Hero Section adjustments */
    .hero {
        height: 60vh;
        min-height: 400px;
        position: relative;
    }
    
    .hero-image {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensure image covers entire container */
    }
    
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
        max-width: 100%;
        padding: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .tagline {
        font-size: 1.2rem;
        left: 0;
        top: 0;
    }
    
    /* Footer form adjustments */
    .footer-main {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand,
    .footer-links,
    .contact-form {
        width: 100%;
        max-width: 500px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .links-column {
        min-width: 200px;
        margin-bottom: 20px;
    }
    
    .contact-form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .form-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Further adjustments for mobile phones */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .links-column {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 40vh;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 0 15px;
    }
}

/* scroll to up  */
        .scroll-to-top {
            position: fixed;
            bottom: 35px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1f5ec5, #ba7cd2);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            border: none;
            outline: none;
        }
        
        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .scroll-to-top:hover {
            background: linear-gradient(135deg, #ba7cd2, #1f5ec5);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transform: scale(1.05) translateY(0);
        }
        
        .scroll-to-top:active {
            transform: scale(0.95) translateY(0);
        }
        
        .scroll-to-top::after {
            content: "↑";
            font-size: 28px;
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        
        .scroll-to-top:hover::after {
            animation: bounce 0.8s infinite alternate;
        }
        
        .scroll-to-top .progress-circle {
            position: absolute;
            top: -5px;
            left: -5px;
            width: calc(100% + 10px);
            height: calc(100% + 10px);
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            border-top-color: white;
            transform: rotate(0deg);
            transition: transform 0.3s ease;
        }
        
        /* Pulse animation */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(157, 80, 187, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(157, 80, 187, 0); }
            100% { box-shadow: 0 0 0 0 rgba(157, 80, 187, 0); }
        }
        
        /* Bounce animation */
        @keyframes bounce {
            0% { transform: translateY(0); }
            100% { transform: translateY(-5px); }
        }
        
        /* Tooltip */
        .scroll-to-top .tooltip {
            position: absolute;
            top: -70px;
            background: white;
            color: #1f5ec5;
            padding: 8px 12px;
            border-radius: 5px;
            font-size: 14px;
            font-weight: bold;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .scroll-to-top .tooltip::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 8px 8px 0;
            border-style: solid;
            border-color: white transparent transparent;
        }
        
        .scroll-to-top:hover .tooltip {
            opacity: 1;
            visibility: visible;
            top: -60px;
        }
        
       /* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 90px;
        right: 20px;
    }
    
    .scroll-to-top::after {
        font-size: 24px;
    }
    
    .scroll-to-top .tooltip {
        font-size: 12px;
        padding: 6px 10px;
        top: -45px;
    }
    
    .scroll-to-top:hover .tooltip {
        top: -50px;
    }
}

/* Email field styling to match */
  .email-field-wrapper input {
    width: 100%;
    padding: 8px 0; /* Minimal padding for single-line appearance */
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    font-size: 16px;
  }
  
  .email-field-wrapper input:focus {
    outline: none;
    border-bottom-color: #007bff;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .form-group {
      width: 100%;
    }
  }

   .form-control {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    max-width: 400px; /* Default width for regular inputs */
  }
  
  .phone-input {
    max-width: 500px; /* Wider width specifically for phone input */
  }
  
  /* For responsive design */
  @media (max-width: 768px) {
    .form-control, .phone-input {
      max-width: 100%;
    }
  }