:root {
    --primary: #0d6efd;
    --primary-2: #38bdf8;
    --bg-900: #020617;
    --bg-800: #020c1b;
    --bg-700: #03122b;
    --text-100: #ffffff;
    --text-200: #cbd5f5;
    --text-300: #94a3b8;
}

html, body {
    height: 100%;
}

/*body {
    background: var(--bg-900);
    color: var(--text-100);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding-top:80px;
}*/
body {
    background: radial-gradient(circle at 20% 10%,#0f172a 0%,transparent 40%), radial-gradient(circle at 90% 80%,#1e3a8a 0%,transparent 40%), linear-gradient(135deg,#020617,#020c1b,#020617);
    color: #e2e8f0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding-top: 80px;
}
BUTTONS
.btn-primary {
    background: linear-gradient(135deg,#2563eb,#38bdf8);
    border: none;
    box-shadow: 0 0 18px rgba(56,189,248,0.5);
}

.btn-primary:hover {
    background: linear-gradient(135deg,#1d4ed8,#0ea5e9);
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.25);
    color: var(--text-100);
}

    .btn-outline-light:hover {
        border-color: var(--text-100);
        color: var(--bg-900);
        background: var(--text-100);
    }

PILLS
.pills {
    gap: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    color: var(--text-200);
    font-weight: 500;
}

SECTIONS
.section {
    padding: 56px 0;
}

.section-title {
    font-weight: 800;
    letter-spacing: 0.2px;
}

CARDS
.card {
    background: #121a31;
    border: 1px solid rgba(255,255,255,0.06);
}

.card-title {
    font-weight: 700;
}

.card-text {
    color: var(--text-300);
}

BADGES
.badge-upcoming {
    background: rgba(255,255,255,0.1);
    color: var(--muted);
    border: 1px solid rgba(255,255,255,0.15);
}

WORK
.work-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

FEATURES
.feature-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(55,124,190,0.18);
    color: var(--primary-2);
    font-weight: 700;
    margin-right: 10px;
}

METRICS
.metric {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-200);
}

FOOTER
footer {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.link-muted {
    color: var(--text-300);
    text-decoration: none;
}

    .link-muted:hover {
        color: var(--text-100);
    }

HERO
/*.hero {
    position: relative;
    padding: 96px 0 90px;
    background: radial-gradient(80% 120% at 80% 0%, #182f4e 0%, #11192e 60%);
    overflow: hidden;
}*/
.hero {
    position: relative;
    padding: 120px 0;
    background: linear-gradient( rgba(5,15,35,0.85), rgba(5,15,35,0.92));
    
   
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient( rgba(255,255,255,0.05) 1px, transparent 1px );
    background-size: 28px 28px;
    opacity: 0.25;
    pointer-events: none;
}

.hero-kicker {
    display: block;
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
    font-weight: 600;
    color: #6fd2ff;
    background: linear-gradient( 90deg, rgba(55,124,190,0.12), rgba(55,124,190,0.35), rgba(55,124,190,0.12) );
    border: 1px solid rgba(95,195,255,0.45);
    box-shadow: 0 0 18px rgba(79,145,185,0.35), inset 0 0 12px rgba(79,145,185,0.25);
}

.hero-title {
    font-weight: 800;
    font-size: clamp(3.1rem, 3vw, 4.25rem);
    line-height: 1.06;
    margin-top: 22px;
}

.hero-lead {
    max-width: 660px;
    font-size: 1.05rem;
    color: var(--text-300);
    line-height: 1.75;
    margin-top: 18px;
}

.hero-metrics span {
    font-size: 0.85rem;
    color: var(--text-200);
    padding-right: 16px;
}

.hero-preview-card {
    max-width: 460px;
    background: rgb(18 26 49 / 0%);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.03);
    backdrop-filter: blur(14px);
}
    .hero-preview-card:hover {
        
        box-shadow: 0 0 25px rgb(96 173 223 / 59%);
        border-color: #0d6efd;
    }
    .preview-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 12px;
    }

    .preview-header .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .preview-header .red {
        background: #ff5f56;
    }

    .preview-header .yellow {
        background: #ffbd2e;
    }

    .preview-header .green {
        background: #27c93f;
    }

.live-badge {
    margin-left: auto;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: var(--text-200);
}

.preview-text {
    font-size: 0.9rem;
    color: var(--text-300);
    line-height: 1.6;
}

SERVICES SECTION
#services-block {
    position: relative;
    text-align: center;
}

#services-block .section-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
}

#services-block > .container > p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-300);
}

.service-card {
    height: 100%;
    background: linear-gradient(180deg, rgb(135 154 170 / 85%), rgba(17, 25, 46, 0.95));
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 22px;
    padding: 30px 28px;
    transition: all 0.25s ease;
}

    .service-card:hover {
        transform: translateY(-6px);
       
        box-shadow: 0 0 25px rgb(96 173 223 / 59%);
        border-color: #0d6efd;
    }

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(4 12 29);
    color: var(--primary-2);
    font-size: 18px;
}

.service-card h5 {
    margin-top: 18px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #061021;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #fcfcfc;
}

.service-foot {
    margin-top: 18px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #93cef7;
}

SOCIAL IMPACT PROJECTS
.impact-section {
    position: relative;
}

.impact-card {
    background: rgba(18, 26, 49, 0.95);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.25s ease;
}

    .impact-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 0 25px rgb(96 173 223 / 59%);
        border-color: #0d6efd;
    }

.impact-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

    .impact-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.impact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(17,25,46,0.9), rgba(17,25,46,0.2) );
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .impact-overlay h3 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

        .impact-overlay h3 span {
            color: #f5c56b;
        }

    .impact-overlay p {
        color: var(--text-200);
        font-size: 0.9rem;
    }

.impact-body {
    padding: 22px 24px 26px;
}

    .impact-body h5 {
        font-weight: 700;
        color: var(--text-100);
    }

.impact-tags {
    margin-top: 14px;
    font-size: 0.85rem;
    color: #4fb6ff;
    font-weight: 500;
}



CORE TEAM SECTION
.core-team {
    position: relative;
}

.team-card {
    background: rgb(18 26 49 / 0%);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 22px;
    padding: 36px 28px;
    transition: all 0.25s ease;
    text-align: center;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 0 25px rgb(96 173 223 / 59%);
        border-color: #0d6efd;
    }

.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto;
    padding: 4px;
    background: linear-gradient( 135deg, #4f91b9, #377cbe );
}

    .team-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        background: #000;
    }

.team-card h5 {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-100);
}

.team-role {
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    color: var(--text-300);
}

.team-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-200);
    text-decoration: none;
    transition: all 0.2s ease;
}

    .team-social:hover {
        color: var(--text-100);
        border-color: rgba(79,145,185,0.8);
    }

.team-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-300);
}

.why-us {
    background: linear-gradient(135deg,#020617,#172554,#020617);
}

.heading {
    font-size: 34px;
}

.divider {
    height: 4px;
    width: 120px;
    background: #3b82f6;
    border-radius: 50px;
}

.featured-card {
    border-radius: 20px;
    background: linear-gradient(90deg,#010f25,#1e40af);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: .3s;
}

    .featured-card:hover {
        transform: scale(1.02);
    }

.icon {
    font-size: 28px;
    color: #bfdbfe;
}

.sub {
    color: #bfdbfe;
}
.text-muted {
    --bs-text-opacity: 1;
    color: rgb(185 217 248 / 75%) !important;
}
.feature-card {
    background: rgb(5 14 28 / 70%);
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.5);
    transition: .3s;
    height: 100%;
    color: #e2e8f0;
}

    .feature-card:hover {
        background: rgba(30,64,175,.4);
        transform: translateY(-5px);
    }

.feature-icon {
    color: #60a5fa;
    font-size: 24px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: white;
}

.stat-title {
    font-size: 12px;
    color: #93c5fd;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

FINAL CTA SECTION
.final-cta {
    position: relative;
    background: radial-gradient( 90% 120% at 50% 0%, #0f355c 0%, #081a32 65% );
}

.cta-card {
    background: rgb(18 26 49 / 0%);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 22px;
    padding: 26px 24px;
    text-align: left;
    transition: all 0.25s ease;
}



.cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgb(96 173 223 / 59%);
    border-color: #0d6efd;
}

    .cta-card h6 {
        font-weight: 700;
        color: var(--text-100);
    }

.social-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.85rem;
    color: var(--text-200);
}

    .social-pill i {
        font-size: 1rem;
        color: var(--primary-2);
    }
/* FOOTER */

/* ===============================
   FOOTER MAIN
================================*/

.site-footer {
    background: linear-gradient(180deg,#021633,#010b1f);
    padding: 80px 0 40px;
    color: #cbd5f5;
    overflow: hidden;
}

/* ===============================
   WATERMARK
================================*/

.footer-watermark {
    position: absolute;
    left: 40px;
    top: 54%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    line-height: 0.99;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.footer-content {
    position: relative;
    z-index: 2;
}
    /* WORD STYLE */

.footer-watermark span {
    font-size: 120px;
    font-weight: 700;
    letter-spacing: -5px;
    color: rgb(151 205 246 / 6%);
}

        /* SECOND LINE SMALL */

        .footer-watermark span:last-child {
            font-size: 95px;
        }

/* ===============================
   TEXT AREA
================================*/

.footer-mini {
    font-size: 13px;
    letter-spacing: 1px;
    color: #60a5fa;
}

.footer-brand {
    font-size: 32px;
    font-weight: 700;
    margin-top: 6px;
    color: #ffffff;
}

.footer-desc {
    margin-top: 12px;
    color: #94a3b8;
    max-width: 520px;
    line-height: 1.6;
}

/* ===============================
   FOOTER LINKS
================================*/

.footer-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.25s;
}

    .footer-links a:hover {
        color: #60a5fa;
        padding-left: 4px;
    }

/* ===============================
   CONTACT
================================*/

.footer-contact {
    font-size: 14px;
    margin-bottom: 8px;
    color: #cbd5f5;
}

    .footer-contact i {
        color: #60a5fa;
        margin-right: 6px;
    }

/* ===============================
   FORM CARD
================================*/

.footer-form-card {
    background: rgba(8,16,40,0.75);
    padding: 35px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* TITLE */

.footer-form-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.footer-form-sub {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 22px;
}

/* ===============================
   INPUT
================================*/

.footer-form-card input,
.footer-form-card select {
    width: 100%;
    padding: 12px 14px;
    background: #050b1d;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    transition: 0.25s;
}

    .footer-form-card input::placeholder {
        color: #64748b;
    }

    .footer-form-card input:focus,
    .footer-form-card select:focus {
        outline: none;
        border-color: #38bdf8;
        box-shadow: 0 0 0 2px rgba(56,189,248,0.25);
    }
.recent-work {
    background: linear-gradient(to bottom,#020617,#172554,#020617);
}

.description {
    max-width: 600px;
}

.divider {
    height: 4px;
    width: 120px;
    background: #3b82f6;
    border-radius: 50px;
}

.gradient-border {
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(90deg,#3b82f6,#22d3ee,#a855f7);
}

.project-card {
    background: #0f172a;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transition: all .35s ease;
    border: 1px solid rgba(59,130,246,0.2);
}

    /* NAVY BLUE HOVER BORDER + SHADOW */

    .project-card:hover {
        box-shadow: 0 0 0 1px #1e3a8a, 0 15px 40px rgba(30,58,138,0.6);
    }

    /* IMAGE */

    .project-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: transform .6s ease;
    }

    /* IMAGE ZOOM BUT INSIDE CARD */

    .project-card:hover img {
        transform: scale(1.08);
    }
.project-img-small {
    height: 240px;
    width: 100%;
    object-fit: cover;
    transition: 0.6s;
}



.badge-custom {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-green {
    background: rgba(34,197,94,0.2);
    color: #4ade80;
}

.badge-blue {
    background: rgba(59,130,246,0.2);
    color: #60a5fa;
}

.badge-cyan {
    background: rgba(6,182,212,0.2);
    color: #22d3ee;
}

.coming-soon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    height: 100%;
}

.icon {
    font-size: 40px;
    color: #3b82f6;
    margin-bottom: 15px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1
    }

    50% {
        opacity: .7
    }

    100% {
        opacity: 1
    }
}
/* ===============================
   BUTTON
================================*/

.footer-submit {
    margin-top: 18px;
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #7773c9, #2563eb);
    font-weight: 600;
    color: #fff;
    letter-spacing: .3px;
    transition: all .25s ease;
}

    .footer-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(56,189,248,0.4);
    }

/* ===============================
   DIVIDER
================================*/

.footer-divider {
    margin: 50px 0 25px;
    border-color: rgba(255,255,255,0.08);
}

/* ===============================
   COPYRIGHT
================================*/

.footer-copy {
    font-size: 13px;
    color: #64748b;
}

/* ===============================
   MOBILE
================================*/

@media(max-width:768px) {

    .footer-watermark {
        font-size: 70px;
    }

    .footer-brand {
        font-size: 26px;
    }

    .footer-form-card {
        padding: 28px;
    }
}

    MAIN NAVBAR
    /* ===== SCROLL PROGRESS BAR ===== */
    #scroll-progress-wrapper {
    position: fixed;
    opacity: 0.85;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1100;
}

#scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient( 90deg, #1da1f2, #0d6efd, #5aa9ff );
    box-shadow: 0 0 12px rgba(13, 110, 253, 0.8);
    transition: width 0.15s ease-out;
    border-radius: 0 4px 4px 0;
}

.brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1ea1ff, #0d6efd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
}

.brand-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-100);
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-300);
    letter-spacing: 0.3px;
}

.main-navbar .nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-200);
    padding: 8px 10px;
    transition: color 0.2s ease;
}

    .main-navbar .nav-link:hover {
        color: var(--text-100);
    }

.main-navbar .btn-primary {
    border-radius: 17px;
    font-size: 0.9rem;
}
/* Floating Button */
.inquiry-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #1da1f2, #0d6efd);
    color: #fff;
    padding: 14px 26px;
    border-radius: 40px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
}

/* Modal */
.inquiry-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 35, 0.92);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

/* Card */
.inquiry-card {
    background: #0b1c34;
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;
    border-radius: 16px;
    color: #fff;
    position: relative;
    box-shadow: 0 0 60px rgba(0, 123, 255, 0.35);
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 26px;
    cursor: pointer;
    color: #9fb7ff;
}

.inquiry-card input {
    width: 100%;
    padding: 14px;
    margin-bottom: 16px;
    background: #08162a;
    border: 1px solid #1f3c88;
    border-radius: 10px;
    color: #fff;
}

.inquiry-card button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1da1f2, #0d6efd);
    border-radius: 12px;
    border: none;
    color: #fff;
    font-weight: 600;
}
/* ===== THANK YOU PAGE ===== */

.thankyou-wrapper {
    min-height: 100vh;
    background: radial-gradient(circle at top, #0d2348, #050f23);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.thankyou-card {
    background: #0b1c34;
    max-width: 520px;
    width: 100%;
    padding: 60px 40px;
    border-radius: 18px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 0 80px rgba(0, 123, 255, 0.35);
}

.check-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1da1f2, #0d6efd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: bold;
}

.thankyou-card h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.thankyou-card p {
    font-size: 15px;
    color: #b5c7ff;
    margin-bottom: 32px;
    line-height: 1.6;
}

.thankyou-btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 40px;
    background: linear-gradient(135deg, #1da1f2, #0d6efd);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
}

/* Mobile */
@media (max-width: 576px) {
    .thankyou-card {
        padding: 40px 24px;
    }

        .thankyou-card h1 {
            font-size: 26px;
        }
}


/* ===== APPLE STYLE WHITE FLOATING NAVBAR ===== */
.main-navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    min-height: 74px;
    padding: 0 12px;
    background: rgba(17, 25, 46, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(79, 145, 185, 0.25);
    border-radius: 18px;
    width: calc(100% - 40px);
    max-width: 1320px;
    z-index: 1050;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
}

    /* Scroll effect */
    .main-navbar.scrolled {
        background: rgba(17, 25, 46, 0.85);
    }


/* Mobile */
@media (max-width: 991px) {
    .main-navbar {
        top: 10px;
        border-radius: 28px;
        width: calc(100% - 20px);
    }
}

/* Navbar text colors for white bg */
.main-navbar .nav-link {
    color: whitesmoke !important;
    font-weight: 500;
}

    .main-navbar .nav-link:hover {
        color: whitesmoke !important;
    }

.brand-name {
    color: whitesmoke;
}

.brand-tagline {
    color: whitesmoke;
}

/* Navbar Inquiry Button */
.nav-inquiry-btn {
    background: linear-gradient(135deg, #1da1f2, #0d6efd);
    color: #fff;
    padding: 4px 20px;
    height: 35px;
    border-radius: 30px;
    border: none;
   
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.35);
}

    /* Hover */
    .nav-inquiry-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 26px rgba(0, 123, 255, 0.5);
    }


.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    
}

/*.custom-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

    .custom-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 25px rgba(0, 153, 255, 0.4);
        border-color: #0d6efd;
    }*/
.custom-card {
    /* glass silver look */
    background: linear-gradient(180deg, rgb(172 195 211), rgb(21 36 57));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .35s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.6);
    overflow: hidden;
}

/* make cards equal height */
.project-card {
    height: 100%;
}

/* content spacing */
.card-content {
    padding: 22px;
    flex-grow: 1;
}

/* title */
.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

/* text */
.card-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* hover effect */
.custom-card:hover {
    background: linear-gradient( 180deg, #0f172a, #020617 );
    color: #e2e8f0;
    transform: translateY(-12px) scale(1.02);
    border-color: #38bdf8;
    box-shadow: 0 25px 70px rgba(0,0,0,0.7), 0 0 35px rgba(56,189,248,0.6);
}

    /* hover text */
    .custom-card:hover .card-title {
        color: white;
    }

    .custom-card:hover .card-text {
        color: #cbd5f5;
    }

/* image zoom */
.card-image img {
    transition: transform .6s ease;
}

.custom-card:hover .card-image img {
    transform: scale(1.08);
}
.icon-box {
    width: 50px;
    height: 50px;
    background: #0d6efd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.card-text {
    font-size: 0.95rem;
    color: #bfc7d5;
}

/* Particles full background */
/* ── PARTICLES ── full screen background */
#particles-js {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
   
}

/* Hero ko particles ke upar rakhna (already hai, bas confirm) */


/* Sab important content ko particles ke upar lao */
main,
section,
.hero,
#services-block,
.recent-work,
.impact-section,
.core-team,
.why-us,
.final-cta,
.site-footer {
    position: relative;
    z-index: 1;
    padding-top:50px;
}


/* Optional – text readability ke liye halka text-shadow (tumhare design ke hisab se) */
.hero-title,
.hero-lead,
.section-title,
h1, h2, h3, h4, h5,
.card-title,
.nav-link,
.btn,
p {
    text-shadow: 0 1px 1px rgba(0,0,0,0.6);
}

/* Agar navbar text ab bhi fade lag raha ho to yeh try kar sakte ho (optional) */
.main-navbar {
    background: rgb(22 41 74 / 0%) !important; /* thoda zyada opaque agar chahiye */
    backdrop-filter: blur(12px);
}

/* ── Baaki sab CSS same rahega (tumhara hero::after dots, cards, pills, etc sab) ── */
.form-loader {
    margin-top: 15px;
    text-align: center;
    color: #555;
    font-size: 14px;
}

.spinner {
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 3px solid #ccc;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.site-footer {
    background: linear-gradient(180deg, #030c1c, #022350);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
}

.footer-brand {
    color: #fff;
    font-weight: 700;
}

.footer-logo {
    background: #2563eb;
    padding: 6px 10px;
    border-radius: 8px;
    margin-right: 8px;
}

.footer-desc {
    color: #94a3b8;
    max-width: 350px;
}

.footer-title {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9fc4f0;
    text-decoration: none;
    transition: 0.3s;
}

    .footer-links a:hover {
        color: #38bdf8;
        transform: translateX(4px);
    }

.footer-contact {
    color: #94a3b8;
    margin-bottom: 10px;
}

    .footer-contact i {
        margin-right: 8px;
        color: #38bdf8;
    }

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    color: #fff;
    transition: 0.3s;
}

    .social-icon:hover {
        background: #2563eb;
        transform: translateY(-4px);
    }

.footer-btn {
    border-radius: 30px;
    padding: 8px 18px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0;
}

.footer-mini-links a {
    color: #94a3b8;
    margin: 0 8px;
    text-decoration: none;
}

    .footer-mini-links a:hover {
        color: #38bdf8;
    }
.scroll-top-btn {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg,#2563eb,#38bdf8);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s ease;
    z-index: 9999; /* IMPORTANT */
}
    .scroll-top-btn.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .scroll-top-btn:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 15px 30px rgba(0,0,0,0.35);
        background: linear-gradient(135deg,#1d4ed8,#0ea5e9);
    }

/* Fix reCAPTCHA overlapping footer */
.grecaptcha-badge {
    z-index: 9999 !important;
    bottom: 14px !important;
    display: none !important;
visibility: hidden;
}

/* ===== NAV BUTTON BASE ===== */

.nav-inquiry-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    height: 36px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    animation: btnPulse 2.8s infinite;
    transition: all .3s ease;
}

/* pulse animation */
@keyframes btnPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.2);
    }

    50% {
        box-shadow: 0 0 12px 2px rgba(255,255,255,0.25);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.2);
    }
}

/* ===== INQUIRE ===== */

.btn-inquire {
    background: linear-gradient(135deg,#1da1f2,#0d6efd);
    color: #fff;
    border-color: #3ea6ff;
    box-shadow: 0 0 10px rgba(13,110,253,0.5);
}

    .btn-inquire:hover {
        box-shadow: 0 0 22px rgba(13,110,253,0.8);
        transform: translateY(-2px);
    }


/* ===== BOOK CALL ===== */

.btn-book {
    background: linear-gradient(135deg,#8b5cf6,#6d28d9);
    color: #fff;
    border-color: #a78bfa;
    box-shadow: 0 0 10px rgba(139,92,246,0.5);
}

    .btn-book:hover {
        box-shadow: 0 0 22px rgba(139,92,246,0.8);
        transform: translateY(-2px);
    }


/* ===== WHATSAPP CONTACT ===== */

.btn-contact {
    background: linear-gradient(135deg,#22c55e,#16a34a);
    color: #fff;
    border-color: #34d399;
    box-shadow: 0 0 10px rgba(34,197,94,0.5);
}

    .btn-contact:hover {
        box-shadow: 0 0 22px rgba(34,197,94,0.8);
        transform: translateY(-2px);
    }
.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

@media (max-width: 991px) {

    /* Collapse container remove extra box look */
    .navbar-collapse {
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        padding: 10px 0;
        margin-top: 10px;
    }

    /* menu items spacing */
    .navbar-nav {
        gap: 12px;
        align-items: stretch !important;
    }

    /* buttons full width */
    .nav-inquiry-btn {
        width: 100%;
        justify-content: center;
        height: 46px;
    }
}

@media (max-width: 991px) {

    .nav-link {
        padding: 10px 6px;
        font-size: 15px;
    }
}

@media (max-width: 991px) {

    .main-navbar .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}
.faq-section {
    background: transparent;
}

.faq-accordion .accordion-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 500;
    box-shadow: none;
}

    .faq-accordion .accordion-button:not(.collapsed) {
        color: #4fb6ff;
    }

.faq-accordion .accordion-body {
    color: #b0b0b0;
    line-height: 1.6;
}


/* Image */
.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

  

.custom-card:hover .card-image img {
    transform: scale(1.1);
}

/* Overlay */
.card-overlay {
    background: linear-gradient( to top, rgba(0,0,0,0.6), transparent );
}

.custom-card:hover .card-overlay {
    background: linear-gradient( to top, rgba(2,6,23,0.95), rgba(2,6,23,0.4) );
}

    .card-overlay h4 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }

    .card-overlay p {
        margin: 0;
        font-size: 14px;
        color: #ccc;
    }

/* Content */
.card-content {
    padding: 18px;
}

/* Title Row */
.title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Title */
.card-title {
    font-size: 18px;
    font-weight: 600;
}

/* Tag */
.tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

    /* Tag Colors */
    .tag.active {
        background: #0d6efd;
        color: #fff;
    }

    .tag.upcoming {
        background: #ffc107;
        color: #000;
    }

/* Text */
.card-text {
    font-size: 14px;
    color: #cfcfcf;
    line-height: 1.6;
}
/* NAV LINK HOVER LINE */

.nav-hover {
    position: relative;
    padding-bottom: 4px;
}

    .nav-hover::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 2px;
        background: #38bdf8;
        transition: width .3s ease;
    }

    .nav-hover:hover::after {
        width: 100%;
    }
/* Responsive tweak */
@media (max-width: 768px) {
    .card-image {
        height: 180px;
    }
}


/* DROPDOWN STYLE */

.custom-dropdown {
    background: rgba(17,25,46,0.95);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 6px 0;
}

    .custom-dropdown .dropdown-item {
        color: #e5e7eb;
        padding: 10px 18px;
        font-size: 14px;
        transition: .2s;
    }

        .custom-dropdown .dropdown-item:hover {
            background: rgba(255,255,255,0.08);
            color: #38bdf8;
        }


/* HOVER OPEN DROPDOWN */

@media (min-width:992px) {

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
@keyframes gradientMove {
0% {background-position:0%}
100% {background-position:300%}
}

.animate-gradient{
background-size:300%;
animation:gradientMove 8s linear infinite;
}

@keyframes float {
0%{transform:translateY(0)}
100%{transform:translateY(-40px)}
}

.animate-float{
animation:float 12s ease-in-out infinite alternate;
}

@keyframes floatSlow{
0%{transform:translateY(0)}
50%{transform:translateY(-20px)}
100%{transform:translateY(0)}
}

.animate-floatSlow{
animation:floatSlow 9s ease-in-out infinite;
}
.team-card-new {
    position: relative;
    padding: 40px 20px 30px;
    border-radius: 22px;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    transition: .4s;
    height: 100%;
}

    .team-card-new:hover {
        transform: translateY(-10px);
        border-color: #0664e3;
        box-shadow: 0 0 40px rgb(5 66 160 / 50%);
    }

.avatar-wrap {
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 15%;
    /* padding: 1px; */
    background: linear-gradient(135deg, #0d4bab, #5082f1);
}

    .avatar-wrap img {
        width: 100%;
        height: 100%;
        border-radius: 18%;
        object-fit: inherit;
    }

.team-card-new h5 {
    margin-top: 18px;
    font-weight: 700;
    color: #fff;
}

.role {
    display: block;
    font-size: .8rem;
    letter-spacing: .6px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .8rem;
    border: 1px solid rgba(255,255,255,0.2);
    color: #cbd5f5;
    text-decoration: none;
    margin-bottom: 14px;
}

    .social-pill:hover {
        border-color: #38bdf8;
        color: #fff;
    }

.team-card-new p {
    font-size: .9rem;
    color: #b2c8e8;
    line-height: 1.6;
    text-align: start;
}

.founder {
    border-color: #0664e3;
    box-shadow: 0 0 40px rgb(5 66 160 / 50%);
}

/* NAMASTE EMOJI WELCOME SCREEN */

#welcomeScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 10%,#0f172a 0%,transparent 40%), radial-gradient(circle at 90% 80%,#1e3a8a 0%,transparent 40%), linear-gradient(135deg,#020617,#020c1b,#020617);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity .8s ease;
}

.welcome-box {
    text-align: center;
    animation: fadeWelcome 1s ease;
}

.namaste-emoji {
    font-size: 120px;
    margin-bottom: 20px;
    animation: namasteBounce 2s infinite;
}

.welcome-title {
    font-size: 28px;
    color: #5a3d2b;
    margin-bottom: 5px;
}

.welcome-brand {
    font-size: 36px;
    font-weight: 700;
    color: #7b3f00;
}

@keyframes namasteBounce {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes fadeWelcome {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.text-secondary {
    --bs-text-opacity: 1;
    color: rgb(143 166 187) !important;
}

.team-card-new {
    flex-shrink: 0;
}
