﻿/* RESET */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}



header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    opacity: 0.9;
    transition: background 0.6s ease, opacity 0.6s ease;
    z-index: 1000;
}

    header.scrolled {
        background: linear-gradient(135deg, #001a66, #003d99);
        opacity: 0.96;
    }

    /* force dark header for pages that need it (about, contact) */
    header.header-dark {
        background: linear-gradient(135deg, #001a66, #003d99);
        opacity: 0.98;
    }

.logo img {
    height: 52px;
}

/* DESKTOP MENU */
.desktop-menu {
    display: flex;
    gap: 28px;
    margin-left: auto;
    align-items: center;
}

    .desktop-menu a {
        color: #ffffff;
        text-decoration: none;
        font-size: 15px;
        opacity: 1;
        padding: 6px 8px;
        transition: color 0.18s ease, text-shadow 0.18s ease;
    }

    .desktop-menu a:hover {
        color: #b566ff;
        text-shadow: 0 0 8px rgba(181,102,255,0.6);
    }

/* MOBILE BUTTON (hidden by default) */
.menu-btn {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 4px;
}

/* OVERLAY */
#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1500;
}

    #overlay.active {
        opacity: 1;/*0*/
        visibility: visible;
    }

/* MOBILE MENU */
/*#mobileMenu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 40vh;
    background: linear-gradient(135deg, #002bff, #00b4ff);
    padding-top: 90px;
    transition: top 1.9s ease;
    z-index: 2000;
}*/
/*#mobileMenu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 40vh;
    background: linear-gradient( 135deg, rgba(0, 43, 255, 0.95), rgba(0, 180, 255, 0.9) );
    padding-top: 90px;
    opacity: 0;
    transition: right 1.9s ease, opacity 1.2s ease;
    z-index: 2000;
}*/
#mobileMenu {
    position: fixed;
    top: 10px;
    right: -100%;
    width: min(90vw, 320px);
    height: auto;
    background: linear-gradient( 180deg, #0b5ed7, #0a58ca );
    padding-top: 0px;
    z-index: 2000;
    transition: right 0.4s ease;
    margin-top: 104px;
   /* padding-left: 26px;*/
}

    #mobileMenu.open {
        right: 0;
    }

    #mobileMenu.active {
        right: 0;
        opacity: 1;
    }


    #mobileMenu.open {
        right: 0;
        opacity: 1;
    }

   /* #mobileMenu.active {
        right: 0;
    }*/

    #mobileMenu a {
        display: block;
        padding: 16px 0;
        font-size: 0.95rem;
        font-weight: 500;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        color: #ffffff;
        text-decoration: none;
        background: transparent;
        border-bottom: 1px solid rgba(255,255,255,0.35);
        text-indent: 26px;
    }

        #mobileMenu a:hover {
            background: rgba(255,255,255,0.08);
            text-indent: 30px;
            transition: text-indent 0.25s ease, background 0.25s ease;
        }

    #mobileMenu a:first-child {
        border-top: 1px solid rgba(255,255,255,0.35);
    }

    #mobileMenu a:last-child {
        border-bottom: none;
    }
@media (max-width: 480px) {
    #mobileMenu a {
        padding: 14px 0;
        font-size: 0.9rem;
        text-indent: 22px;
    }
}

@media (max-height: 600px) {
    #mobileMenu {
        height: 43vh;
        padding-top: 1px;
    }

        #mobileMenu a {
            font-size: 0.95rem;
            padding: 10px 0;
            text-indent: 22px;
        }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}


/*.hero {
    position: relative;
    min-height: 100vh;*/
    /* PUSH CONTENT BELOW FIXED HEADER */
    /*padding: 140px 90px 80px;
    background: linear-gradient(135deg, #002bff, #00b4ff);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;*/ /* 👈 KEY FIX */
    /*align-items: flex-start;*/ /* left aligned */

    /*overflow: hidden;
}*/
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px; /* REMOVE left & right padding */
    background: linear-gradient(135deg, #002bff, #00b4ff);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch; /* important */
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.08);
        clip-path: polygon(0 0, 100% 0, 100% 20%, 0 35%);
    }

    /* bottom diagonal cut */
    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.15);
        clip-path: polygon(0 75%, 100% 60%, 100% 100%, 0 100%);
    }
    .hero > * {
        position: relative;
        z-index: 2;
    }



    /* Watermark / light */
    /* Keep hero content above */
   /* .hero > * {
        position: relative;
        z-index: 1;
    }*/
   
/* CONTENT — FIXED */
/*.content {
    padding: 120px 20px 80px;*/ /* pushes below fixed header */
    /*text-align: center;
}*/
.content {
    position: relative;
    padding: 120px 20px 80px;
    text-align: center;
    background: radial-gradient(circle at 15% 20%, rgba(0, 60, 180, 0.12) 0 120px, transparent 121px), radial-gradient(circle at 85% 40%, rgba(0, 120, 255, 0.12) 0 160px, transparent 161px), radial-gradient(circle at 30% 80%, rgba(0, 80, 220, 0.1) 0 140px, transparent 141px), linear-gradient(180deg, #f8f9ff, #ffffff);
    overflow: hidden;
}
    .content::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 30%, rgba(0,80,255,0.15) 0 140px, transparent 141px), radial-gradient(circle at 24% 30%, #ffffff 0 120px, transparent 121px), radial-gradient(circle at 80% 60%, rgba(0,120,255,0.12) 0 160px, transparent 161px), radial-gradient(circle at 84% 60%, #ffffff 0 140px, transparent 141px);
        pointer-events: none;
        z-index: 0;
    }

    .content > * {
        position: relative;
        z-index: 1;
    }

/* MOBILE BREAKPOINT */
@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }

    .menu-btn {
        display: block;
    }
}

body.menu-open {
    overflow: hidden;
}
.logo-text {
    color: #ffffff;
    line-height: 1.1;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.brand-name {
    display: block;
    font-size: 16px;
    font-weight: 600; /* strong but not heavy */
    letter-spacing: 0.5px;
}

.brand-sub {
    display: block;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.8px;
}
body {
    background: radial-gradient(circle at 20% 20%, rgba(0, 80, 255, 0.08), transparent 40%), radial-gradient(circle at 80% 30%, rgba(0, 180, 255, 0.08), transparent 45%), linear-gradient(180deg, #f8f9ff, #ffffff);
}
.hero-image img {
    width: 100%;
    height: auto;
}

/* TEXT STACKING */
.hero h1,
.hero .tagline {
    max-width: 50%;
    text-align: left;
}

/* HERO IMAGE FIX */
.hero-image {
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    width: 600px;
    height: 460px;
    max-width: 45%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 70, 200, 0.45), inset 0 0 0 1px rgba(255,255,255,0.18);
    animation: floatHero 6s ease-in-out infinite;
}
    /* IMAGE */
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* 🔥 GRADIENT OVERLAY TO MIX WITH BACKGROUND */
    .hero-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(28, 77, 255, 0.55) 0%, rgba(30, 124, 255, 0.35) 40%, rgba(11, 109, 220, 0.65) 100% );
        mix-blend-mode: multiply;
        pointer-events: none;
    }
    .hero-image::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(28,77,255,0.85) 0%, rgba(28,77,255,0.4) 25%, rgba(28,77,255,0) 55% );
        pointer-events: none;
    }
.hero-imagecontact {
    position: relative;
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
}

    .hero-imagecontact img {
        width: 100%;
        height: auto; /* keeps full image visible */
        display: block;
    }
    

    .hero-imagecontact::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(28, 77, 255, 0.55) 0%, rgba(30, 124, 255, 0.35) 40%, rgba(11, 109, 220, 0.65) 100% );
        mix-blend-mode: multiply;
        pointer-events: none;
    }

    .hero-imagecontact::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(28,77,255,0.85) 0%, rgba(28,77,255,0.4) 25%, rgba(28,77,255,0) 55% );
        pointer-events: none;
    }


@media (max-width: 768px) {

    .hero {
        padding: 120px 0 60px; /* no side padding */
        min-height: auto; /* prevent unnecessary height */
    }

    .hero-text {
        padding: 0 20px; /* give safe spacing only for text */
        text-align: center; /* optional */
    }

    .hero-imagecontact {
        margin-top: 0px;
        width: 100%;
        height: 100%;
    }

        .hero-imagecontact img {
            width: 100%;
            height: auto; /* full image visible */
            display: block;
        }
}


/* FLOATING EFFECT */
@keyframes floatHero {
    0% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-54%) translateX(0);
    }

    100% {
        transform: translateY(-50%) translateX(0);
    }
}

/* DESKTOP ONLY */
@media (max-width: 991px) {
    .hero {
        padding: 115px 0px;
    }

    .hero-image {
        display: none;
    }
    .hero h1, .hero h2,
    .hero .tagline {
        max-width: 100%;
        text-align: left;
    }
}
.scroll-down {
    position: absolute;
    /* place below arrow */
    top: 75%;
    left: 40%;
    /* slight right shift + center correction */
    transform: translateX(-50%) translateX(20px);
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-width: 220px;
    text-align: center;
}



/* ===============================
   SERVICES PREVIEW (THUMB STYLE)
================================ */
.services-preview {
    /* padding: 40px 8%;*/
    background: radial-gradient(circle at top, #0c0630, #05010f);
    /*margin-top: -100px;*/
    margin-top: 0;
    padding: 10px 8%;
}

    .services-preview h2 {
        text-align: center;
        font-size: 2.6rem;
        margin-bottom: 60px;
        color:#fff;
    }

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    color:#fff
}

/* CARD */
.service-thumb {
    background: linear-gradient(180deg, #14002a, #0a0220);
    border-radius: 18px;
    padding: 34px 24px;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid rgba(124,92,255,0.15);
    color: #fff
}

    .service-thumb:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 45px rgba(124,92,255,0.35);
    }

    /* TITLE */
    .service-thumb h3 {
        margin-top: 18px;
        font-size: 18px;
        font-weight: 500;
    }

    /* TEXT */
    .service-thumb p {
        font-size: 14px;
        color: #cfcfcf;
        line-height: 1.6;
        margin: 12px 0 18px;
    }

    /* LINK */
    .service-thumb a {
        color: #7c5cff;
        font-size: 14px;
        font-weight: 500;
    }

/* ===============================
   PROGRESS CIRCLE
================================ */
.progress-circle {
    width: 120px;
    height: 120px;
    margin: auto;
    border-radius: 50%;
    background: conic-gradient( #22d3ff calc(var(--percent) * 1%), rgba(255,255,255,0.12) 0 );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .progress-circle::before {
        content: "";
        position: absolute;
        inset: 10px;
        background: #05010f;
        border-radius: 50%;
    }

    .progress-circle span {
        position: relative;
        font-size: 22px;
        font-weight: 600;
        color: #fff;
    }

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-preview {
        padding: 70px 6%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
.btn {
    display: block; /* full-width control */
    width: 100%; /* take available width */
    max-width: 320px; /* keeps it elegant on desktop */
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

    .btn.primary {
        background: linear-gradient(135deg, #7c5cff, #22d3ff);
        color: #fff;
        box-shadow: 0 18px 45px rgba(124,92,255,0.5);
        animation: pulseGlow 2.2s infinite !important;
    }
@keyframes pulseGlow {
    0% {
        box-shadow: 0 20px 50px rgba(124,92,255,0.55), 0 0 0 rgba(34,211,255,0);
        transform: scale(1);
    }

    40% {
        box-shadow: 0 34px 90px rgba(124,92,255,1), 0 0 34px rgba(34,211,255,0.8);
        transform: scale(1.04);
    }

    70% {
        box-shadow: 0 26px 70px rgba(124,92,255,0.8), 0 0 18px rgba(34,211,255,0.5);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 20px 50px rgba(124,92,255,0.55), 0 0 0 rgba(34,211,255,0);
        transform: scale(1);
    }
}




@media (max-width: 600px) {
    .btn {
        max-width: 100%;
        font-size: 15px;
        padding: 15px 24px;
    }
}


.btn.secondary {
    border: 1.5px solid rgba(255,255,255,0.7);
    color: #fff;
    background: transparent;
}
/* ===============================
   FREE AUDIT SECTION (HIGH CONVERSION)
================================ */
.audit {
    position: relative; /* ADD THIS */
    padding: 90px 8%;
    text-align: center;
    background-color: #40508D;
    background-image: linear-gradient( 135deg, #40508D 0%, #4d5fb3 45%, #5b73d9 100% );
}

    .audit::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(124,92,255,0.25), rgba(34,211,255,0.2) );
        pointer-events: none;
    }

    .audit > * {
        position: relative;
        z-index: 1;
    }


    .audit h2 {
        font-size: 2.6rem;
        max-width: 820px;
        margin: 0 auto 18px;
        line-height: 1.25;
        color:#fff
    }

    .audit p {
        font-size: 1.05rem;
        max-width: 680px;
        margin: 0 auto 36px;
        color: #d6d6d6;
    }

    /* CTA BUTTON */
    .audit a.btn.primary {
        padding: 15px 34px;
        font-size: 15px;
        font-weight: 500;
        border-radius: 14px;
        background: linear-gradient(135deg, #7c5cff, #22d3ff);
        color: #fff;
        text-decoration: none;
        display: inline-block;
    }



.audit a.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(124,92,255,0.6);
}
audit .audit-sub {
    margin-top: 18px;
    font-size: 0.9rem;
}

.audit .audit-sub a {
    color: #9aa4ff;
    text-decoration: none;
}

.audit .audit-sub a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .audit {
        padding: 70px 6%;
    }

        .audit h2 {
            font-size: 2.2rem;
        }
}

@media (max-width: 600px) {
    .audit h2 {
        font-size: 1.9rem;
    }

    .audit p {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .audit .btn.primary {
        width: 100%;
        max-width: 320px;
    }
}
/* ===============================
   WHY CHOOSE US
================================ */
.why-us {
    padding: 90px 8%;
    /* background: linear-gradient(180deg, #05010f, #0a0220);*/
    background: #40508D;
}

    .why-us h2 {
        text-align: center;
        font-size: 2.6rem;
        margin-bottom: 6px;
        color:#fff
    }

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1100px;
    margin: auto;
}

    /* CARD */
    .why-grid > div {
        /*background: linear-gradient(180deg, #14002a, #0a0220);*/
        padding: 36px 28px;
        border-radius: 18px;
        border: 1px solid rgba(124,92,255,0.18);
        transition: all 0.35s ease;
        position: relative;
    }

        .why-grid > div::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 18px;
            background: radial-gradient(circle at top, rgba(124,92,255,0.18), transparent 60%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .why-grid > div:hover::before {
            opacity: 1;
        }

        .why-grid > div:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(124,92,255,0.35);
        }

    /* TITLE */
    .why-grid h4 {
        font-size: 18px;
        margin-bottom: 12px;
        font-weight: 600;
        text-align: justify;
        text-justify: inter-word;
        color: #fff
    }
.why-us p {
    width: 100%;
    margin: 0 0 40px 0;
    padding: 0;
    text-align: justify;
    text-justify: inter-word;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    padding-top: 10px;
}



    /* TEXT */
.why-grid p {
    font-size: 14px;
    color: #fff;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
   
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .why-us {
        padding: 70px 6%;
        margin-top:12px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-us h2 {
        font-size: 2.2rem;
    }
}

.contact-form {
    padding: 40px 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,245,255,0.95));
    border: 1px solid rgba(124,92,255,0.25);
    box-shadow: 0 8px 32px rgba(124,92,255,0.15);
    margin: 30px 0;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 14px 16px;
        border-radius: 10px;
        background: #ffffff;
        border: 2px solid #e0e0e0;
        color: #222222;
        font-size: 14px;
        margin-bottom: 12px;
        transition: all 0.3s ease;
    }

    .contact-form textarea {
        min-height: 120px;
        resize: none;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #7c5cff;
            box-shadow: 0 0 0 3px rgba(124,92,255,0.1);
            background: #ffffff;
        }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: #999999;
    }

    .contact-form button {
        margin-top: 10px;
        padding: 14px;
        border-radius: 12px;
        background: linear-gradient(135deg, #7c5cff, #22d3ff);
        border: none;
        font-size: 15px;
        font-weight: 500;
        color: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .contact-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 40px rgba(124,92,255,0.45);
        }

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.address-box {
    padding: 28px 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(245,248,255,0.98));
    border: 1px solid rgba(124,92,255,0.2);
    box-shadow: 0 4px 16px rgba(124,92,255,0.1);
    transition: all 0.3s ease;
}

    .address-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(124,92,255,0.25);
        border-color: rgba(124,92,255,0.35);
    }

    .address-box h3 {
        color: #1a1a1a;
        margin-bottom: 16px;
        font-size: 18px;
    }

    .address-box p {
        font-size: 14px;
        color: #444444;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .address-box strong {
        color: #222222;
        font-weight: 600;
    }

    .address-box a {
        color: #7c5cff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .address-box a:hover {
        color: #22d3ff;
        text-shadow: 0 0 6px rgba(34,211,255,0.4);
    }

/* =======================================
   CONTACT CTA SECTION
======================================= */
.contact-cta {
    background: linear-gradient(135deg, rgba(124,92,255,0.08), rgba(34,211,255,0.05));
    padding: 32px 28px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: justify;
}

    .contact-cta h2 {
        color: #1a1a1a;
        margin-bottom: 16px;
        font-size: 1.8rem;
    }

    .contact-cta p {
        color: #444444;
        font-size: 15px;
        margin: 0;
    }

    .contact-cta a {
        color: #7c5cff;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-cta a:hover {
        color: #22d3ff;
        text-decoration: underline;
    }@media (max-width: 900px) {
    .content {
        grid-template-columns: 1fr;
        padding: 0px 6%;
    }

        .content h2 {
            font-size: 2.2rem;
            margin-top: -120px;
        }
}

@media (max-width: 600px) {
    .contact-form {
        padding: 32px 26px;
    }

    .content h2 {
        margin-top: -120px;
        font-size: 1.9rem;
    }

    .content {
        margin-top: 0; /* or reduce value */
    }

}
/* ===============================
   ABOUT PAGE (PROFESSIONAL)
================================ */
.content {
    /* add top padding to clear fixed header */
    padding: 120px 8% 80px;
    max-width: 1100px;
    margin: 0 auto;
}

    .content h2 {
        font-size: 2.6rem;
        margin-bottom: 40px;
        text-align: center;
    }

    .content p {
        padding: 28px 32px;
        border-radius: 18px;
        border: 1px solid rgba(124,92,255,0.18);
        margin-bottom: 28px;
        font-size: 15px;
        line-height: 1.8;
        color: #222222; /* darker for readability */
        transition: all 0.3s ease;
        text-align: left;
    }

        .content p:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(124,92,255,0.18);
        }

        .content p strong {
            color: #ffffff;
            font-weight: 500;
        }

@media (max-width: 900px) {
    .content {
        padding: 0px 6%;
    }

        .content h2 {
            font-size: 2.2rem;
        }
}

@media (max-width: 600px) {
    .content p {
        padding: 22px 24px;
        font-size: 14.5px;
        text-align: justify;
        padding-top: 50px;
    }

    .content h2 {
        font-size: 1.5rem;
    }
}


.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
}


#captchaText {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 36px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    background-color: #f2f2f2;
    color: #333;
    padding: 0 12px;
    border-radius: 6px;
    line-height: 1;
}


#refreshCaptcha {
    border: none;
    background: #ddd;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
}

/* =======================================
   ACCORDION STYLES
======================================= */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.accordion-item {
    border: 1px solid rgba(124, 92, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 0, 42, 0.8), rgba(10, 2, 32, 0.8));
    transition: all 0.3s ease;
}

.accordion-item.active {
    box-shadow: 0 8px 24px rgba(124, 92, 255, 0.25);
    border-color: rgba(124, 92, 255, 0.4);
}

.accordion-header {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.8), rgba(34, 211, 255, 0.6));
    box-shadow: 0 8px 25px rgba(124, 92, 255, 0.4);
    animation: headerGlow 2.2s infinite;
}

@keyframes headerGlow {
    0% {
        box-shadow: 0 8px 25px rgba(124, 92, 255, 0.4), 0 0 0 rgba(34, 211, 255, 0);
    }
    40% {
        box-shadow: 0 12px 40px rgba(124, 92, 255, 0.8), 0 0 20px rgba(34, 211, 255, 0.6);
    }
    70% {
        box-shadow: 0 10px 30px rgba(124, 92, 255, 0.6), 0 0 15px rgba(34, 211, 255, 0.4);
    }
    100% {
        box-shadow: 0 8px 25px rgba(124, 92, 255, 0.4), 0 0 0 rgba(34, 211, 255, 0);
    }
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(124, 92, 255, 1), rgba(34, 211, 255, 0.8));
    box-shadow: 0 15px 40px rgba(124, 92, 255, 0.7);
    transform: translateY(-2px);
}

.accordion-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.accordion-header .icon {
    font-size: 24px;
    font-weight: bold;
    color: #7c5cff;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 24px 12px 24px;
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.accordion-content p:first-child {
    padding-top: 20px;
}

.accordion-content p:last-child {
    padding-bottom: 20px;
}

.accordion-content a {
    color: #7c5cff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.accordion-content a:hover {
    color: #22d3ff;
}

/* =======================================
   LOCAL INTRO STYLES
======================================= */
.local-intro {
    font-size: 14px;
    line-height: 1.8;
    color: #1a1a1a;
    margin: 30px auto;
    padding: 24px 0; /* Top & bottom only, no left/right */
    max-width: 800px;
    border-left: 4px solid #0066cc;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.25);
    transition: all 0.3s ease;
    text-align: justify;
    text-justify: inter-word;
    background-color: rgba(180, 200, 230, 0.6);
}



.local-intro:hover {
    background: rgba(120, 160, 220, 0.7) !important;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4) !important;
    transform: translateY(-4px) !important;
}

@media (max-width: 768px) {
    .local-intro {
        font-size: 15px !important;
        padding: 20px 24px !important;
        margin: 20px auto !important;
        text-align: justify;
    }
}
footer {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #ffffff;
    text-align: center;
    padding: 25px 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

    footer a {
        color: #4fc3f7;
        text-decoration: none;
        margin: 0 8px;
        transition: 0.3s ease;
    }

        footer a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
