@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

*{  
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

:root {
    /* Premium Color Palette */
    --navy: #001a3d;
    --navy-light: #0a2a5a;
    --teal: #2a7f8f;
    --teal-light: #4fa8ba;
    --light-teal: #4fa8ba;
    --teal-subtle: #e8f3f6;
    --gold: #d4a574;
    --gold-light: #e5c4a0;
    --gold-subtle: #faf7f2;
    
    /* Backgrounds */
    --light-bg: #ffffff;
    --light-bg-secondary: #f9fafb;
    --light-bg-tertiary: #f3f4f6;
    --dark-bg: #0d1117;
    --dark-bg-secondary: #161b22;
    --dark-bg-tertiary: #21262d;
    
    /* Accents */
    --shadow-sm: 0 1px 2px rgba(0, 26, 61, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 26, 61, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 26, 61, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 26, 61, 0.12);
    
    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
}

body { 
    background: var(--light-bg);
    color: var(--navy);
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    max-width: 100vw;
}

img,
video,
svg {
    max-width: 100%;
    height: auto;
}

body.dark-mode {
    background: var(--dark-bg);
    color: #f0f0f0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 26, 61, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

body.dark-mode .navbar {
    background: rgba(0, 26, 61, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(42, 127, 143, 0.2));
}

body.dark-mode .logo img {
    filter: drop-shadow(0 2px 8px rgba(79, 168, 186, 0.6)) brightness(1.3) contrast(1.1);
}

.logo img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 8px rgba(42, 127, 143, 0.4));
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease, transform 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: var(--teal);
    transform: scale(1.05);
}

.nav-links a.active {
    color: var(--teal);
    font-weight: 700;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

body.dark-mode .nav-links a {
    color: #e0e0e0;
}

body.dark-mode .nav-links a:hover,
body.dark-mode .nav-links a.active {
    color: var(--light-teal);
}

#theme-toggle {
    background: transparent;
    border: 1px solid var(--teal);
    color: var(--navy);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

body.dark-mode #theme-toggle {
    border-color: var(--light-teal);
    color: var(--light-teal);
}

#theme-toggle:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
    z-index: 102;
}

.hero {
    position: relative;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
    opacity: 0.6;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 26, 61, 0.5);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    width: 90%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.1rem;
    color: #e0e0e0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.services-preview .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (min-width: 1025px) {
    .services-preview {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.card {
    padding: 30px;
    min-width: 0;
    width: 100%;
    background: white;
    border-left: 4px solid var(--teal);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 26, 61, 0.08);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(42, 127, 143, 0.15);
    border-left-color: var(--gold);
}

body.dark-mode .card {
    background: #1a2332;
    border-left-color: var(--teal);
}

body.dark-mode .card:hover {
    border-left-color: var(--gold);
}

.service-card {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-card:hover .card-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.card-cta {
    display: inline-block;
    color: var(--teal);
    font-weight: 600;
    margin-top: 15px;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.service-card:hover .card-cta {
    opacity: 1;
    color: var(--gold);
    transform: translateX(5px);
}

body.dark-mode .card {
    background: #1a2332;
    border-left-color: var(--light-teal);
}

.card h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

body.dark-mode .card h3 {
    color: var(--light-teal);
}

.card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

body.dark-mode .card p {
    color: #c0c0c0;
}

.page-section {
    padding: 60px 40px;
    max-width: 1100px;
    margin: auto;
}

.page-section h1 {
    color: var(--navy);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 15px;
    display: inline-block;
}

body.dark-mode .page-section h1 {
    color: var(--light-teal);
}

.about-section {
    padding: 80px 10%;
}

.about-text-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text-box h1 {
    font-size: 3rem;
    line-height: 1.05;
    color: var(--navy);
    margin-bottom: 32px;
}

.about-text-box p {
    line-height: 1.85;
    color: #263444;
    margin-bottom: 28px;
    font-size: 1rem;
    text-align: center;
}

.about-text-box p:first-of-type {
    margin-bottom: 35px;
}

.about-top {
    display: block;
    gap: 50px;
}

body.dark-mode .about-text-box p {
    color: #e0e0e0;
}

body.dark-mode .about-text-box h1 {
    color: #ffffff;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h1 {
    text-align: center;
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 25px;
}

.about-text h1::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: var(--gold);
    margin: 15px auto 0;
    border-radius: 10px;
}

.about-text p {
    line-height: 2;
    color: #4b5563;
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-image-box {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.about-image-box img {
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 26, 61, 0.12);
    object-fit: cover;
}

/* Mission & Vision Cards */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
}

.about-card {
    display: flex;
    gap: 24px;
    background: white;
    border-left: 4px solid var(--teal);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 26, 61, 0.08);
    transition: all 0.3s ease;
    text-align: left;
    align-items: flex-start;
}

.about-card:hover {
    transform: translateY(-8px);
    border-left-color: var(--gold);
    box-shadow: 0 8px 30px rgba(42, 127, 143, 0.15);
}

.about-card .card-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(42, 127, 143, 0.1);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.about-card .card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

.card-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    border-left: 2px solid rgba(42, 127, 143, 0.2);
    padding-left: 14px;
}

.card-title-row h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin: 0;
}

.card-line {
    display: none;
}

.about-card p {
    color: #555;
    line-height: 1.8;
    margin: 0 0 16px 0;
    font-size: 0.95rem;
}

.card-footer-icon {
    margin-top: 12px;
    font-size: 1.4rem;
    color: var(--gold);
}

/* Dark Mode */
body.dark-mode .about-card {
    background: #1a2332;
    border-left-color: var(--teal);
}

body.dark-mode .about-card:hover {
    border-left-color: var(--gold);
}

body.dark-mode .about-card h3 {
    color: var(--light-teal);
}

body.dark-mode .about-card p {
    color: #c0c0c0;
}

body.dark-mode .card-title-row {
    border-left-color: rgba(79, 168, 186, 0.3);
}

/* Mobile */
@media (max-width: 1024px) {
    .about-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-text-box h1 {
        font-size: 2.2rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .about-card {
        padding: 24px;
        gap: 18px;
    }

    .about-image-box img {
        border-radius: 10px;
    }

    .card-title-row h3 {
        font-size: 1.2rem;
    }
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.mv-card:hover {
    transform: translateY(-8px);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.mission {
    border-top: 5px solid var(--teal);
}

.vision {
    border-top: 5px solid var(--gold);
}

@media (max-width: 768px) {

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        order: -1; /* puts image above text */
    }

    .about-image img {
        max-width: 100%;
    }

    .about-text h1 {
        font-size: 2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    color: var(--navy);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 8px rgba(42, 127, 143, 0.2);
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
    background: #1a2332;
    color: #e0e0e0;
    border-color: var(--teal);
}

/* NEW: Form Dropdown Styling */
.form-dropdown {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    color: var(--navy);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-dropdown:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 8px rgba(42, 127, 143, 0.2);
}

body.dark-mode .form-dropdown {
    background: #1a2332;
    color: #e0e0e0;
    border-color: var(--teal);
}

/* Contact Page Section */
.contact-page-section {
    padding: 60px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3.2rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.contact-header h1::after {
    content: "";
    display: block;
    width: 220px;
    height: 4px;
    background: #d4a574;
    margin: 0;
}

body.dark-mode .contact-header h1 {
    color: var(--light-teal);
}

.contact-header p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

body.dark-mode .contact-header p {
    color: #c0c0c0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: flex-start;
}

.get-in-touch {
    background: #e8f3f6;
    padding: 35px;
    border-radius: 26px;
    box-shadow: 0 10px 30px rgba(0, 26, 61, 0.08);
}

body.dark-mode .get-in-touch {
    background: #1a3a4a;
}

.get-in-touch h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
}

body.dark-mode .get-in-touch h3 {
    color: var(--light-teal);
}

.touch-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.touch-item:last-child {
    margin-bottom: 0;
}

.touch-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.touch-content strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 4px;
}

body.dark-mode .touch-content strong {
    color: var(--light-teal);
}

.touch-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

body.dark-mode .touch-content p {
    color: #b0b0b0;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }

    .get-in-touch {
        order: 2;
    }

    .contact-form {
        order: 1;
    }
}

.btn {    
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 600;
    font-size: 0.95rem;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(42, 127, 143, 0.2);
    display: inline-block;
}

.btn:hover {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 127, 143, 0.35);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--teal) 100%);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.faq-item {
    padding: 20px;
    background: white;
    border-left: 4px solid var(--gold);
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 26, 61, 0.08);
}

.faq-item:hover {
    box-shadow: 0 6px 16px rgba(42, 127, 143, 0.12);
    transform: translateX(4px);
}

body.dark-mode .faq-item {
    background: #1a2332;
    border-left-color: var(--light-teal);
}

.faq-item h3 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

body.dark-mode .faq-item h3 {
    color: var(--light-teal);
}

.faq-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

body.dark-mode .faq-item p {
    color: #b0b0b0;
}

/* Modal Styles - Enhanced for Perfect Centering */
.service-modal {
    display: none;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 26, 61, 0.3);
    width: min(650px, 90vw);
    max-height: 85vh;
    overflow-y: auto;
    opacity: 0;
    transform: scale(0.9);
    margin: auto;
}

.service-modal.active {
    display: block;
    opacity: 1;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}


/* Success Modal */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: white;
    width: 90%;
    max-width: 500px;

    padding: 35px;
    border-radius: 16px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0,0,0,0.2);

    transform: translateY(20px);
    transition: 0.3s ease;
}

.success-modal.active .success-content {
    transform: translateY(0);
}

.success-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto 20px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2rem;
    font-weight: bold;

    color: white;

    background: linear-gradient(
        135deg,
        var(--teal),
        var(--navy)
    );
}

.success-content h2 {
    color: var(--navy);
    margin-bottom: 15px;
}

.success-content p {
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

body.dark-mode .success-content {
    background: #1a2332;
}

body.dark-mode .success-content h2 {
    color: var(--light-teal);
}

body.dark-mode .success-content p {
    color: #d0d0d0;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

body.dark-mode .service-modal {
    background: #1a2332;
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 26, 61, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--navy);
    transition: transform 0.3s ease;
    z-index: 10;
}

body.dark-mode .modal-close {
    color: var(--light-teal);
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-content {
    position: relative;
}

.modal-header {
    background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
    color: white;
    padding: 30px;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
}

.modal-header p {
    margin: 0;
    opacity: 0.9;
}

.modal-body {
    padding: 30px;
}

.modal-body h3 {
    color: var(--navy);
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

body.dark-mode .modal-body h3 {
    color: var(--light-teal);
}

.modal-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

body.dark-mode .modal-body p {
    color: #c0c0c0;
}

.requirements-list {
    list-style: none;
    padding: 0;
}

.requirements-list li {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

body.dark-mode .requirements-list li {
    background: #0f1419;
    border-left-color: var(--teal);
}

.requirements-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 26, 61, 0.1);
}

.req-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.requirements-list strong {
    color: var(--navy);
}

body.dark-mode .requirements-list strong {
    color: var(--light-teal);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.timeline-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(42, 127, 143, 0.1) 0%, rgba(212, 165, 116, 0.1) 100%);
    border-radius: 8px;
    border: 2px solid var(--teal);
    transition: all 0.3s ease;
}

body.dark-mode .timeline-item {
    border-color: var(--light-teal);
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(42, 127, 143, 0.2);
}

.timeline-number {
    display: block;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

body.dark-mode .timeline-number {
    color: var(--light-teal);
}

.timeline-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

body.dark-mode .timeline-item p {
    color: #b0b0b0;
}

.footer {
    background: linear-gradient(135deg, #0b2d4a 0%, #0f3f66 100%);
    color: #f8fbff;
    padding: 56px 24px 24px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-shell {
    max-width: 1160px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    gap: 20px;
    align-items: start;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.footer-brand-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.footer-logo-link:hover {
    transform: translateY(-2px);
}

.footer-logo-link img {
    height: 54px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-description {
    margin: 0;
    max-width: 420px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.86rem;
}

.footer-meta i {
    color: var(--gold);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.72fr);
    gap: 8px;
    justify-content: start;
}

.footer-section {
    min-width: 0;
    margin-right: 0;
}

.footer-section:last-child {
    margin-left: -8px;
}

.footer-section h4 {
    margin: 0 0 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.footer-link-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link-list a,
.footer-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-link-list a i,
.footer-contact-list a i {
    display: none;
}

.footer-link-list a:hover,
.footer-contact-list a:hover {
    color: var(--gold);
}

.footer-link-list i,
.footer-contact-list i {
    color: var(--gold);
    min-width: 14px;
}

.footer-contact-list {
    margin: 0 0 10px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
    margin-left: -2px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    background: var(--gold);
    color: var(--navy);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.footer-bottom-links a + a::before {
    content: '|';
    margin-right: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
    text-decoration: none;
    transition: color 0.2s ease;
    color: var(--gold);
}

.footer-bottom a:hover {
    color: var(--gold);
}

footer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

body.dark-mode .footer {
    background: linear-gradient(135deg, #060b13 0%, #0d1117 100%);
}

body.dark-mode .footer-description,
body.dark-mode .footer-link-list a,
body.dark-mode .footer-contact-list a,
body.dark-mode .footer-bottom p,
body.dark-mode .footer-bottom-links a {
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 42px 16px 20px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

body.dark-mode .hamburger {
    padding: 8px;
    border-radius: 6px;
    background: rgba(79, 168, 186, 0.1);
    border: 1px solid rgba(79, 168, 186, 0.3);
}

body.dark-mode .hamburger span {
    background: white;
}

/* Owl Assistant Button */
.owl-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(42, 127, 143, 0.3);
    z-index: 90;
}

.owl-button.hidden {
    display: none !important;
}

.owl-button:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(42, 127, 143, 0.4);
}

.owl-wave {
    display: inline-block;
    animation: wave 1s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
        transform-origin: 70% 70%;
    }
    10% {
        transform: rotate(14deg);
        transform-origin: 70% 70%;
    }
    20%, 60% {
        transform: rotate(-8deg);
        transform-origin: 70% 70%;
    }
    30%, 50% {
        transform: rotate(14deg);
        transform-origin: 70% 70%;
    }
    40% {
        transform: rotate(-4deg);
        transform-origin: 70% 70%;
    }
}

.owl-button:hover .owl-wave {
    animation: wave 0.6s ease-in-out infinite;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--teal) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(42, 127, 143, 0.3);
    z-index: 90;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(42, 127, 143, 0.4);
    background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
}

/* Chatbot Widget - Smaller and more compact */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 430px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 26, 61, 0.15);
    z-index: 95;
    display: none;
    flex-direction: column;
    max-height: none;
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.chatbot-widget.active {
    display: flex;
    opacity: 1;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg,var(--navy), var(--teal));
    color: white;
    padding: 18px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.chatbot-header h4 {
    margin: 0;
    font-size: 1rem;
}

.chatbot-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chatbot-widget.closed .chatbot-toggle {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.2);
}

.chatbot-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    overflow: hidden;
}

.chatbot-message {
    display: flex;
    gap: 8px;
    animation: fadeIn 0.3s ease;
}

.chatbot-message p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8fafc;
}

.chatbot-message.user {
    justify-content: flex-end;
}

.chatbot-message.user p {
    background: linear-gradient(
        135deg,
        var(--teal),
        var(--navy)
    );
    color: white;
    padding: 12px 16px;
    border-radius: 18px 18px 6px 18px;
    max-width: 85%;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing Indicator Animation */
.typing-indicator p {
    display: flex;
    gap: 4px;
}

.typing-indicator span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        opacity: 0.5;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-10px);
    }
}

.chatbot-message.bot p,
.chatbot-message.user p {
    margin: 0;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    max-width: 90%;
    line-height: 1.4;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.chatbot-message.bot p {
    background: #f0f0f0;
    color: var(--navy);
}

body.dark-mode .chatbot-message.bot p {
    background: #2a3541;
    color: #e0e0e0;
}

.chatbot-message.user p {
    background: var(--teal);
    color: white;
}

.chatbot-options {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 15px;
    white-space: nowrap;
    scrollbar-width: thin;
}

.chatbot-options::-webkit-scrollbar {
    height: 4px;
}

.chatbot-options::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.chatbot-options::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 4px;
}

.chatbot-options::-webkit-scrollbar-thumb:hover {
    background: var(--navy);
}

.chatbot-options::after {
    content: "→";
    color: var(--teal);
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    align-self: center;
    pointer-events: none;
}

body.dark-mode .chatbot-options {
    border-top-color: #333;
    scrollbar-color: var(--light-teal) #2a3541;
}

body.dark-mode .chatbot-options::-webkit-scrollbar-track {
    background: #2a3541;
}

.chat-option {
    padding: 8px 12px;
    background: white;
    border: 2px solid var(--teal);
    color: var(--navy);
    border-radius: 16px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 500;
    line-height: 1.2;
}

body.dark-mode .chat-option {
    background: #1a2332;
    color: var(--light-teal);
    border-color: var(--light-teal);
}

.chat-option:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 127, 143, 0.3);
}

body.dark-mode .chat-option:hover {
    background: var(--light-teal);
    color: var(--navy);
}

/* ===== NEW: Suggested Questions Buttons ===== */
.chatbot-suggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: #f8fafc;
    border-top: 1px solid #e0e0e0;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
}

body.dark-mode .chatbot-suggestions {
    background: #1a2332;
    border-top-color: #333;
    scrollbar-color: var(--teal) #1a2332;
}

.suggestion-btn {
    padding: 12px;
    background: white;
    border: 2px solid var(--teal-light);
    color: var(--navy);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: left;
    line-height: 1.4;
}

body.dark-mode .suggestion-btn {
    background: #0d1117;
    color: var(--teal-light);
    border-color: var(--teal);
}

.suggestion-btn:hover {
    background: linear-gradient(135deg, var(--teal-subtle), white);
    border-color: var(--teal);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(42, 127, 143, 0.2);
}

body.dark-mode .suggestion-btn:hover {
    background: rgba(79, 168, 186, 0.1);
    border-color: var(--teal-light);
}

.suggestion-btn:active {
    transform: translateX(2px);
}

/* ===== Contact Us Button in Chat ===== */
.chatbot-contact-btn {
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 8px;
    width: 100%;
}

.chatbot-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 127, 143, 0.3);
}

.chatbot-contact-btn:active {
    transform: translateY(0);
}

/* NEW: Service Buttons Grid */
.chatbot-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
    background: #f8fafc;
    border-top: 1px solid #e0e0e0;
    max-height: 150px;
    overflow-y: auto;
    scrollbar-width: thin;
}

body.dark-mode .chatbot-services {
    background: #1a2332;
    border-top-color: #333;
    scrollbar-color: var(--teal) #1a2332;
}

.service-btn {
    padding: 10px 12px;
    background: white;
    border: 2px solid var(--gold);
    color: var(--navy);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
}

body.dark-mode .service-btn {
    background: #0d1117;
    color: var(--gold-light);
    border-color: var(--gold);
}

.service-btn:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

body.dark-mode .service-btn:hover {
    background: var(--gold-light);
    color: var(--navy);
}

/* NEW: Quick Action Buttons */
.chatbot-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
    background: #f8fafc;
    border-top: 1px solid #e0e0e0;
}

body.dark-mode .chatbot-actions {
    background: #1a2332;
    border-top-color: #333;
}

.action-btn {
    padding: 10px 12px;
    background: linear-gradient(135deg, var(--teal-subtle), white);
    border: 2px solid var(--teal);
    color: var(--navy);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

body.dark-mode .action-btn {
    background: linear-gradient(135deg, rgba(79, 168, 186, 0.1), #0d1117);
    color: var(--teal-light);
    border-color: var(--teal);
}

.action-btn:hover {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 127, 143, 0.3);
}

body.dark-mode .action-btn:hover {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: var(--navy);
}

/* NEW: Chat Input Area */
.chatbot-input-area {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: white;
    border-top: 1px solid #e0e0e0;
    align-items: center;
    flex-shrink: 0;
}

body.dark-mode .chatbot-input-area {
    background: #0d1117;
    border-top-color: #333;
}

.chatbot-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--navy);
    transition: all 0.3s ease;
}

.chatbot-input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 8px rgba(42, 127, 143, 0.2);
}

body.dark-mode .chatbot-input {
    background: #1a2332;
    color: #e0e0e0;
    border-color: var(--teal);
}

body.dark-mode .chatbot-input::placeholder {
    color: #666;
}

.chatbot-send-btn {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(42, 127, 143, 0.3);
}

.chatbot-send-btn:active {
    transform: scale(0.95);
}

.chat-option:active {
    transform: scale(0.98);
}

/* Scroll to top on small screens */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 100px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .chatbot-widget {
        position: fixed;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 80vh;
        border-radius: 20px 20px 0 0;
        max-height: 80vh;
        margin: 0;
    }
    
    .chatbot-services {
        grid-template-columns: repeat(2, 1fr);
        max-height: 120px;
    }
    
    .chatbot-actions {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chatbot-input-area {
        padding: 10px;
    }
    
    .chatbot-input {
        font-size: 1rem;
    }

    .owl-button {
        bottom: 20px;
        right: 20px;
    }

    .service-modal {
        width: 95%;
        max-height: 90vh;
    }

    .service-modal .modal-header h2 {
        font-size: 1.4rem;
    }

    .service-modal .modal-body {
        padding: 20px;
    }

    .chatbot-options {
        padding: 12px;
    }

    .chat-option {
        font-size: 0.7rem;
        padding: 8px 10px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

}    

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 20px;
        gap: 15px;
        z-index: 999;
        box-shadow: 0 8px 16px rgba(0, 26, 61, 0.1);
        transform: none;
    }

    body.dark-mode .nav-links {
        background: var(--navy);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

    body.dark-mode .nav-links a {
        border-bottom-color: #333;
    }

    .nav-links a.active {
        font-weight: 700;
        color: var(--teal);
    }

    .hamburger {
        display: flex;
    }

    .service-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    }
    
    .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .service-icon img,
    .service-card img {
        width: 48px;
        height: 48px;
    }

    .services-preview,
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 40px 16px;
        gap: 16px;
    }

    .card {
        padding: 20px;
    }


    .service-card h3 {
        font-size: 1rem;
        line-height: 1.3;
        margin: 10px 0;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .service-card .card-icon {
        font-size: 2rem;
    }

    .page-section {
        padding: 40px 20px;
    }

    .page-section h1 {
        font-size: 1.8rem;
    }

    .contact-form {
        max-width: 100%;
    }

    .hero {
        height: 50vh;
    }

    .service-modal {
        width: 95%;
        max-height: 90vh;
    }

    .modal-body {
        padding: 20px;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .requirements-list li {
        padding: 12px;
    }
    .success-content {
        width: 90%;
        padding: 25px 20px;
        border-radius: 12px;
    }

    .success-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .success-content h2 {
        font-size: 1.4rem;
    }

    .success-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .success-content .btn {
        width: 100%;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .chatbot-widget {
        width: 380px;
        height: min(500px, 80vh);
        max-height: 65vh;
        bottom: 15px;
        right: 15px;
    }
}

/* ===== NEW: Trust Statistics Section ===== */
.trust-stats {
    background: linear-gradient(135deg, rgba(10, 42, 90, 0.05) 0%, rgba(42, 127, 143, 0.05) 100%);
    padding: 60px 40px;
    margin: 40px 0;
    border-top: 3px solid var(--teal);
    border-bottom: 3px solid var(--gold);
}

body.dark-mode .trust-stats {
    background: linear-gradient(135deg, rgba(10, 42, 90, 0.3) 0%, rgba(42, 127, 143, 0.2) 100%);
}

.stats-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.stats-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

body.dark-mode .stats-header h2 {
    color: var(--teal-light);
}

.stats-header p {
    color: #666;
    font-size: 1.05rem;
    margin: 0;
}

body.dark-mode .stats-header p {
    color: #b0b0b0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 26, 61, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    min-width: 0;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(42, 127, 143, 0.15);
    border-left-color: var(--gold);
}

body.dark-mode .stat-card {
    background: #1a2332;
    border-left-color: var(--teal);
}

body.dark-mode .stat-card:hover {
    border-left-color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    display: block;
    line-height: 1.3;
}

body.dark-mode .stat-label {
    color: var(--teal-light);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--teal);
    display: block;
    line-height: 1.1;
}

body.dark-mode .stat-number {
    color: var(--teal-light);
}

/* ===== NEW: Why Choose TallyWise Section ===== */
.why-choose {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-choose-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--teal-subtle) 0%, rgba(212, 165, 116, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(42, 127, 143, 0.15);
    border: 2px dashed var(--teal);
    color: var(--teal);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(42, 127, 143, 0.2);
    border-color: var(--gold);
}

body.dark-mode .image-placeholder {
    background: linear-gradient(135deg, rgba(42, 127, 143, 0.15) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-color: var(--teal-light);
    color: var(--teal-light);
}

.placeholder-icon {
    width: 120px;
    height: 120px;
    opacity: 0.7;
}

.placeholder-content p {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 30px;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 15px;
    display: inline-block;
}

body.dark-mode .why-choose-content h2 {
    color: var(--teal-light);
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-top: 2px;
}

body.dark-mode .feature-icon {
    background: var(--teal-light);
    color: var(--navy);
}

.feature-item h4 {
    color: var(--navy);
    margin: 0 0 5px 0;
    font-size: 1.05rem;
}

body.dark-mode .feature-item h4 {
    color: var(--teal-light);
}

.feature-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

body.dark-mode .feature-item p {
    color: #b0b0b0;
}

/* ==================================
   TALLYWISE PREMIUM PROCESS SECTION
================================== */
.how-our-process {
    padding: 60px 40px 80px;
    background: white;
    overflow-x: hidden;
}

body.dark-mode .how-our-process {
    background: var(--dark-bg);
}

.process-section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.process-section-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
}

body.dark-mode .process-section-heading h2 {
    color: var(--teal-light);
}

.process-section-subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

body.dark-mode .process-section-subtitle {
    color: #b0b0b0;
}

/* ==================================
   TALLYWISE PREMIUM PROCESS WHEEL
================================== */
.process-wheel-container {
    position: relative;
    width: min(1200px, 98vw);
    height: min(1100px, 100vw);
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 60px;
    overflow: visible;
    isolation: isolate;
    cursor: default;
    --orbit-radius: 320px;
}

.process-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

@property --orbit {
    syntax: '<angle>';
    inherits: true;
    initial-value: 0deg;
}


@keyframes flowingArrow {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -30px;
    }
}

@keyframes pulseBadge {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(42, 127, 143, 0.3), 0 0 0 0 rgba(42, 127, 143, 0.4);
    }
    50% {
        box-shadow: 0 8px 20px rgba(42, 127, 143, 0.5), 0 0 0 8px rgba(42, 127, 143, 0);
    }
}

@keyframes orbit-spin {
    from {
        transform: translate(-50%, -50%) rotate(var(--angle, 0deg)) translateY(calc(-1 * var(--orbit-radius, 320px))) rotate(calc(-1 * var(--angle, 0deg)));
    }
    to {
        transform: translate(-50%, -50%) rotate(calc(var(--angle, 0deg) + 360deg)) translateY(calc(-1 * var(--orbit-radius, 320px))) rotate(calc(-1 * (var(--angle, 0deg) + 360deg)));
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.flow-line {
    fill: none;
    stroke: rgba(42, 127, 143, .15);
    stroke-width: 8;
    stroke-linecap: round;
}

body.dark-mode .flow-line {
    stroke: rgba(79, 168, 186, .25);
}

.flow-arrow {
    fill: none;
    stroke: var(--teal);
    stroke-width: 3;
    stroke-dasharray: 30;
    animation: flowingArrow 4s linear infinite;
}

.flow-arrow-gold {
    stroke: var(--gold);
    stroke-dasharray: 30;
    animation: flowingArrow 4s linear infinite;
}

.flow-arrow-navy {
    stroke: var(--navy);
    stroke-dasharray: 30;
    animation: flowingArrow 4s linear infinite;
}

body.dark-mode .flow-arrow-navy {
    stroke: var(--teal-light);
}

.process-orbit {
    position: absolute;
    inset: 0;
    transform-origin: center center;
}

.process-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    background: white;
    border-radius: 20px;
    padding: 34px 18px 20px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 26, 61, .12);
    transition: box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
    will-change: transform;
    backface-visibility: hidden;
    z-index: 1;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--angle, 0deg)) translateY(calc(-1 * var(--orbit-radius, 320px))) rotate(calc(-1 * var(--angle, 0deg)));
    transform-origin: center center;
    animation: orbit-spin 24s linear infinite;
    animation-play-state: paused;
}

body.dark-mode .process-card {
    background: #1a2332;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

body.dark-mode .process-card:hover {
    box-shadow: 0 20px 60px rgba(42, 127, 143, 0.35);
    background: #232d3b;
}

.process-card-1 { --angle: 0deg; }
.process-card-2 { --angle: 72deg; }
.process-card-3 { --angle: 144deg; }
.process-card-4 { --angle: 216deg; }
.process-card-5 { --angle: 288deg; }

.process-wheel-container:hover .process-card {
    animation-play-state: running;
}

.process-card:hover {
    z-index: 3;
    box-shadow: 0 20px 60px rgba(42, 127, 143, .25);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8fb 100%);
    transform: translate(-50%, -50%) rotate(var(--angle, 0deg)) translateY(calc(-1 * var(--orbit-radius, 320px))) rotate(calc(-1 * var(--angle, 0deg))) scale(1.05);
}

.process-badge {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 58px;
    margin: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    box-shadow: 0 8px 20px rgba(42, 127, 143, 0.3);
    z-index: 2;
    animation: pulseBadge 2.5s ease-in-out infinite;
}

body.dark-mode .process-badge {
    box-shadow: 0 8px 20px rgba(42, 127, 143, 0.5), 0 0 0 0 rgba(79, 168, 186, 0.4);
}

.process-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--teal);
    background: rgba(42, 127, 143, 0.1);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(42, 127, 143, 0.15);
}

.process-card-1 .process-icon,
.process-card-5 .process-icon {
    color: var(--gold);
    background: rgba(212, 165, 116, 0.15);
}

.process-card-1:hover .process-icon,
.process-card-5:hover .process-icon {
    background: rgba(212, 165, 116, 0.25);
}

body.dark-mode .process-icon {
    color: var(--teal-light);
    background: rgba(79, 168, 186, 0.15);
}

body.dark-mode .process-card:hover .process-icon {
    background: rgba(79, 168, 186, 0.25);
}

body.dark-mode .process-card-1 .process-icon,
body.dark-mode .process-card-5 .process-icon {
    color: var(--gold-light);
    background: rgba(212, 165, 116, 0.12);
}

body.dark-mode .process-card-1:hover .process-icon,
body.dark-mode .process-card-5:hover .process-icon {
    background: rgba(212, 165, 116, 0.22);
}

.process-card h4{
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.process-card:hover h4 {
    color: var(--teal);
}

body.dark-mode .process-card h4{
    color: var(--teal-light);
}

body.dark-mode .process-card:hover h4 {
    color: #5fbfd9;
}

.process-card p{
    color: #555;
    font-size: .82rem;
    line-height: 1.55;
    margin: 0;
    transition: color 0.3s ease;
}

.process-card:hover p {
    color: #333;
}

body.dark-mode .process-card p{
    color: #a8a8a8;
}

body.dark-mode .process-card:hover p{
    color: #c0c0c0;
}

@media (max-width: 1024px) {
    .process-wheel-container {
        width: min(420px, 96vw);
        height: min(420px, 92vw);
        padding-top: 0;
        --orbit-radius: 150px;
    }

    .process-svg {
        display: block;
    }

    .process-card {
        width: 150px;
        padding: 18px 8px 12px;
        transform: translate(-50%, -50%) rotate(var(--angle, 0deg)) translateY(calc(-1 * var(--orbit-radius, 150px))) rotate(calc(-1 * var(--angle, 0deg)));
        animation-play-state: paused;
        box-shadow: 0 8px 22px rgba(0, 26, 61, 0.12);
    }

    .process-card:hover {
        transform: translate(-50%, -50%) rotate(var(--angle, 0deg)) translateY(calc(-1 * var(--orbit-radius, 150px))) rotate(calc(-1 * var(--angle, 0deg))) scale(1.02);
        animation-play-state: paused;
    }

    .process-badge {
        width: 44px;
        height: 44px;
        top: -18px;
        font-size: 0.95rem;
    }

    .process-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .process-card h4 {
        font-size: 0.92rem;
        margin-bottom: 6px;
    }

    .process-card p {
        font-size: 0.72rem;
        line-height: 1.4;
    }
}

@media (min-width: 1025px) and (max-width: 1180px) {
    .process-wheel-container {
        width: min(900px, 90vw);
        height: min(900px, 90vw);
    }

    .process-card {
        width: 200px;
        padding: 32px 14px 18px;
    }
}

/* ===== NEW: Testimonials Section ===== */
.testimonials {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

body.dark-mode .testimonials h2 {
    color: var(--teal-light);
}

.section-subtitle {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

body.dark-mode .section-subtitle {
    color: #b0b0b0;
}

.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    animation: carousel-scroll 60s linear infinite;
}

.testimonials-carousel:hover {
    animation-play-state: paused;
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 min(100%, 350px);
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 26, 61, 0.08);
    border-left: 4px solid var(--teal);
    transition: all 0.3s ease;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(42, 127, 143, 0.15);
    border-left-color: var(--gold);
}

body.dark-mode .testimonial-card {
    background: #1a2332;
    border-left-color: var(--teal);
}

body.dark-mode .testimonial-card:hover {
    border-left-color: var(--gold);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

body.dark-mode .testimonial-text {
    color: #b0b0b0;
}

.testimonial-author {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

body.dark-mode .testimonial-author {
    color: var(--teal-light);
}

/* ===== NEW: Call to Action Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    margin: 40px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-section .btn {
    background: linear-gradient(135deg, var(--gold) 0%, white 100%);
    color: var(--navy);
    padding: 16px 40px;
    font-weight: 700;
}

.cta-section .btn:hover {
    background: linear-gradient(135deg, white 0%, var(--gold) 100%);
    transform: translateY(-3px);
}

/* ===== Responsive Footer ===== */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-column h4 {
        margin-bottom: 15px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .why-choose-container {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .trust-stats {
        padding: 40px 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .why-choose {
        padding: 40px 20px;
    }

    .why-choose-content h2 {
        font-size: 1.8rem;
    }

    .how-our-process {
        padding: 40px 20px;
    }

    .process-section-heading h2 {
        font-size: 1.8rem;
    }

    .process-section-heading {
        margin-bottom: 40px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .process-step {
        padding: 25px 15px;
    }

    .testimonials {
        padding: 40px 20px;
    }

    .testimonials h2 {
        font-size: 1.8rem;
    }

    .testimonials-carousel {
        gap: 20px;
    }

    .testimonial-card {
        flex: 0 0 min(100%, calc(100vw - 40px));
        padding: 25px;
    }

    .cta-section {
        padding: 40px 20px;
        margin: 30px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .image-placeholder {
        max-width: 300px;
    }

    .stats-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 12px 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .services-preview,
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Footer Styling - Single Unified Definition */
