/* ===============================
   GLOBAL RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    /* background: #0f1117;*/
    background: #40508D;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===============================
   HEADER (PROFESSIONAL & CLEAN)
================================ */
header {
    /*background: rgba(15,17,23,0.92);*/
    background: #40508D;
    border-bottom: 1px solid rgba(124,92,255,0.3);
}

.logo {
    font-size: 26px;
    font-weight: 600;
    color: #7c5cff;
    letter-spacing: 0.5px;
}

nav a {
    margin-left: 26px;
    color: #dcdcdc;
    font-size: 15px;
    position: relative;
}

    nav a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: #7c5cff;
        transition: width 0.3s ease;
        
    }

    nav a:hover::after,
    nav a.active::after {
        width: 100%;
    }

/* ===============================
   HERO SECTION (AGENCY LEVEL)
================================ */
.hero {
    position:inherit;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
   /* padding: 120px 8% 100px;*/
    padding-bottom: 10px;
    overflow: hidden;
    z-index: -1
}
.overlay-line {
    position: absolute; /* overlay */
    top: 50%; /* adjust vertical position */
    left: 0;
    width: 100%;
    height: 1px; /* thickness of line */
    background-color: rgba(255, 255, 255, 0.15); /* subtle overlay */
    pointer-events: none; /* does not block clicks */
    z-index: 2;
}
.hero-actions {
   /*padding: 4.5rem 0;*/
    gap: 1rem;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(5,1,15,0.35) 0%, rgba(5,1,15,0.55) 50%, rgba(5,1,15,0.7) 100% );
    z-index: -1;
}

.hero h2 {
    font-size: 3.1rem;
    max-width: 900px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.05rem;
    max-width: 680px;
    margin: 18px auto 36px;
    color: #d6d6d6;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #7c5cff, #5a3cff);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 6px 0;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(124,92,255,0.4);
    }

/* ===============================
   CONTENT / SECTIONS
================================ */
/*.content {
    padding: 80px 8%;
}*/

    .content h2 {
        font-size: 2.4rem;
        margin-bottom: 0px;
    }

/* SERVICES LIST */
.services-list li {
    margin: 14px 0;
    padding: 18px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border-left: 4px solid #7c5cff;
    transition: all 0.3s ease;
}

    .services-list li:hover {
        background: rgba(124,92,255,0.12);
        transform: translateX(6px);
    }

/* ===============================
   CONTACT FORM (TRUSTWORTHY)
================================ */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* max-width: 420px;*/
}

    .contact-form input,
    .contact-form textarea {
        padding: 14px;
        border-radius: 8px;
        background: #14002a;
        border: 1px solid rgba(255,255,255,0.15);
        color: #fff;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #7c5cff;
        }

    .contact-form button {
        padding: 14px;
        background: linear-gradient(135deg, #7c5cff, #5a3cff);
        border: none;
        border-radius: 8px;
        color: #fff;
        cursor: pointer;
    }

/* ===============================
   SERVICES PAGE
================================ */
.services-hero {
    min-height: 100vh;
    padding-top: 0px;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.services-intro h2 {
    font-size: 3rem;
}

.services-intro p {
    color: #cfcfcf;
    max-width: 460px;
}

/* ACCORDION */
.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.accordion-header {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

    .accordion-header h3 {
        font-size: 17px;
        font-weight: 500;
    }

.icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #7c5cff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.accordion-item.active .icon {
    background: #7c5cff;
    color: #000;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

    .accordion-content p {
        padding-bottom: 20px;
        color: #cfcfcf;
    }

/* ===============================
   CONTACT PAGE
================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.address-box {
    background: rgba(255,255,255,0.05);
    padding: 22px;
    border-radius: 14px;
}

/* ===============================
   FOOTER
================================ */
footer {
    padding: 22px;
    text-align: center;
    background: #006ADA; /*#14002a;*/
    font-size: 14px;
    color: #bdbdbd;
}

/* ===============================
   RESPONSIVE (FIXED & IMPROVED)
================================ */

@media (max-width: 1024px) {
    header {
        padding: 14px 5%;
    }

    .hero {
        padding: 0 6%;
    }

        .hero h2 {
            font-size: 2.6rem;
        }
}

@media (max-width: 900px) {
    nav {
        display: flex;
        gap: 16px;
    }
}

    .hero {
        height: auto;
        min-height: 100vh;
        /*padding-top: 120px;
        padding-bottom: 80px;*/
    }

        .hero h2 {
            font-size: 2.2rem;
        }

        .hero p {
            font-size: 1rem;
        }

    .content {
       /* padding: 0px 6%;*/
    }

    .services-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .services-preview,
    .audit,
    .why-us {
        padding: 70px 6%;
    }
}
    .logo {
        font-size: 22px;
    }

    .hero {
       /* padding: 120px 6% 80px;*/
    }

        .hero h2 {
            font-size: 1.9rem;
            line-height: 1.3;
        }

        .hero p {
            font-size: 0.95rem;
            margin-bottom: 32px;
        }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    footer {
        font-size: 13px;
    }
}

.logo {
    font-size: 22px;
}

.hero h2 {
    font-size: 1.9rem;
    line-height: 1.3;
}

.btn {
    padding: 12px 26px;
    font-size: 14px;
}

.services-intro h2 {
    font-size: 2.1rem;
}

footer {
    font-size: 13px;
}
/* ===============================
   SERVICES PREVIEW (THUMB STYLE)
================================ */
.services-preview {
   /* padding: 40px 8%;*/
    background: radial-gradient(circle at top, #0c0630, #05010f);
    margin-top:-100px;
        
}

    .services-preview h2 {
        text-align: center;
        font-size: 2.6rem;
        margin-bottom: 60px;
    }

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* 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);
}

    .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;
    }
}
/* ===============================
   FREE AUDIT SECTION (HIGH CONVERSION)
================================ */
.audit {
    padding: 90px 8%;
    text-align: center;
    background: linear-gradient( 135deg, rgba(124,92,255,0.12), rgba(34,211,255,0.08) );
    border-top: 1px solid rgba(124,92,255,0.3);
    border-bottom: 1px solid rgba(124,92,255,0.3);
}

    .audit h2 {
        font-size: 2.6rem;
        max-width: 820px;
        margin: 0 auto 18px;
        line-height: 1.25;
    }

    .audit p {
        font-size: 1.05rem;
        max-width: 680px;
        margin: 0 auto 36px;
        color: #d6d6d6;
    }

    /* CTA BUTTON */
    .audit .btn.primary {
        padding: 15px 34px;
        font-size: 15px;
        font-weight: 500;
        border-radius: 14px;
        background: linear-gradient(135deg, #7c5cff, #22d3ff);
        box-shadow: 0 16px 40px rgba(124,92,255,0.45);
        transition: all 0.35s ease;
    }

        .audit .btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 22px 60px rgba(124,92,255,0.6);
        }

@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: 60px;
    }

/* 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 */
    .why-grid p {
        font-size: 14.5px;
        color: #cfcfcf;
        line-height: 1.7;
    }

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .why-us {
        padding: 70px 6%;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-us h2 {
        font-size: 2.2rem;
    }
}

.contact-form {
    /*background: linear-gradient(180deg, #14002a, #0a0220);*/
    padding: 40px 36px;
    border-radius: 20px;
    border: 1px solid rgba(124,92,255,0.18);
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 15px 16px;
        border-radius: 10px;
        /* background: #05010f;*/
        background: #ffffff;
        border: 1px solid rgba(255,255,255,0.15);
        color: #05010f;
        font-size: 14px;
    }

    .contact-form textarea {
        min-height: 120px;
        resize: none;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #7c5cff;
        }

    .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: flex;
    flex-direction: column;
    gap: 28px;
}

.address-box {
    /*background: linear-gradient(180deg, #14002a, #0a0220);*/
    padding: 28px 30px;
    border-radius: 18px;
    border: 1px solid rgba(124,92,255,0.18);
    transition: all 0.3s ease;
}

    .address-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(124,92,255,0.35);
    }

    .address-box p {
        font-size: 14.5px;
        color: #cfcfcf;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    .address-box strong {
        color: #ffffff;
    }

@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 {
    padding: 0px 8%;
    max-width: 1100px;
    margin: auto;
}

    .content h2 {
        font-size: 2.6rem;
        margin-bottom: 40px;
        text-align: center;
    }

    .content p {
        /*background: linear-gradient(180deg, #14002a, #0a0220);*/
        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: #cfcfcf;
        transition: all 0.3s ease;
        text-align: left;
    }

        .content p:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(124,92,255,0.3);
        }

        .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: left
    }

    .content h2 {
        font-size: 1.9rem;
    }
}
