:root {
    --navy: #1a2e5a;
    --navy-d: #0f1e3d;
    --navy-l: #243872;
    --orange: #f5a623;
    --orange-d: #e0901a;
    --orange-l: #ffc04d;
    --white: #ffffff;
    --cream: #fffdf7;
    --cream2: #fff8ee;
    --gray: #f4f6fb;
    --muted: #5a6a8a;
    --border: #e4eaf5;
    --font: 'Poppins', sans-serif;
    --sh: 0 4px 24px rgba(26, 46, 90, 0.10);
    --sh-lg: 0 8px 48px rgba(26, 46, 90, 0.14);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    color: var(--navy);
    background: var(--white);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden
}


/* NAV */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(26, 46, 90, 0.08);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px
}

.nav-logo {
    font-size: 1.35rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--navy);
    letter-spacing: -0.3px
}

.nav-logo span {
    color: var(--orange)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 500;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--navy)
}

.btn-nav {
    background: var(--orange)!important;
    color: var(--white)!important;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: 700!important;
    font-size: 0.84rem!important;
    box-shadow: 0 4px 14px rgba(245, 166, 35, .35);
    transition: background .2s, transform .2s!important
}

.btn-nav:hover {
    background: var(--orange-d)!important;
    transform: translateY(-1px)
}


/* HERO */

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream2) 55%, #fff5e0 100%);
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden
}

.hero-blob1 {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .18) 0%, transparent 70%);
    top: -120px;
    left: -120px;
    pointer-events: none
}

.hero-blob2 {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 46, 90, .06) 0%, transparent 70%);
    bottom: -80px;
    right: 8%;
    pointer-events: none
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, .12);
    border: 1.5px solid rgba(245, 166, 35, .35);
    color: var(--orange-d);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 22px;
    animation: fu .7s ease both
}

.hero-badge::before {
    content: '●';
    font-size: .5rem;
    animation: bl 1.5s infinite
}

@keyframes bl {
    0%,
    100% {
        opacity: 1
    }
    50% {
        opacity: .3
    }
}

h1.hero-title {
    font-size: 2.4rem;
    /* font-size: clamp(2.1rem, 3vw, 3.3rem); */
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 6px;
    animation: fu .8s ease .1s both
}

h1.hero-title .hl {
    color: var(--orange)
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 18px;
    animation: fu .8s ease .15s both
}

.hero-desc {
    color: var(--muted);
    font-size: .97rem;
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 510px;
    animation: fu .8s ease .2s both
}

.hero-desc strong {
    color: var(--navy);
    font-weight: 700
}

.hero-actions {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    animation: fu .8s ease .3s both
}

.btn-p {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: .93rem;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(245, 166, 35, .4);
    transition: background .2s, transform .2s, box-shadow .2s
}

.btn-p:hover {
    background: var(--orange-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 166, 35, .5)
}

.btn-o {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--navy);
    font-family: var(--font);
    font-weight: 600;
    font-size: .93rem;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: background .2s, color .2s
}

.btn-o:hover {
    background: var(--navy);
    color: var(--white)
}


/* Hero card */

.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--sh-lg);
    border: 1px solid var(--border);
    animation: fu .9s ease .4s both
}

.hero-card h3 {
    font-size: .82rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px
}

.stat-box {
    background: var(--gray);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: transform .2s
}

.stat-box:hover {
    transform: translateY(-3px)
}

.sn {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1
}

.sn span {
    color: var(--orange)
}

.sl {
    font-size: .74rem;
    color: var(--muted);
    font-weight: 500;
    margin-top: 3px
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.tag {
    background: rgba(26, 46, 90, .07);
    color: var(--navy);
    font-size: .72rem;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 50px;
    border: 1px solid var(--border)
}

.tag.o {
    background: rgba(245, 166, 35, .12);
    color: var(--orange-d);
    border-color: rgba(245, 166, 35, .3)
}

@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(26px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}


/* SECTIONS */

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 5%
}

.sp {
    padding: 88px 0
}

.stag {
    display: inline-block;
    background: rgba(245, 166, 35, .12);
    color: var(--orange-d);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 50px;
    border: 1px solid rgba(245, 166, 35, .3);
    margin-bottom: 13px
}

.stitle {
    font-size: clamp(1.7rem, 4vw, 2.7rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 13px
}

.stitle .hl {
    color: var(--orange)
}

.sdesc {
    color: var(--muted);
    max-width: 530px;
    font-size: .96rem
}

.sh {
    text-align: center;
    margin-bottom: 52px
}

.sh .sdesc {
    margin: 0 auto
}


/* SERVICES */

#services {
    background: var(--gray)
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.svc-card {
    background: var(--white);
    border-radius: 16px;
    padding: 34px 28px;
    border: 1.5px solid var(--border);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden
}

.svc-card.active {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(245, 166, 35, 0.4);
    border-color: var(--orange);
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
    border-color: rgba(245, 166, 35, .3)
}

.svc-card:hover::before {
    transform: scaleX(1)
}

.si {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-l));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 18px
}

.svc-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 9px
}

.svc-card p {
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.7
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--orange);
    text-decoration: none;
    transition: gap .2s
}

.svc-link:hover {
    gap: 10px
}


/* WHY */

#why {
    background: var(--white)
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.why-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-l) 100%);
    border-radius: 22px;
    padding: 48px 38px;
    color: white;
    position: relative;
    overflow: hidden
}

.why-box::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(245, 166, 35, .12);
    top: -80px;
    right: -80px
}

.why-box::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    bottom: -50px;
    left: -50px
}

.wb-num {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    position: relative;
    z-index: 1
}

.wb-lbl {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 28px;
    position: relative;
    z-index: 1
}

.wb-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    position: relative;
    z-index: 1
}

.wm {
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 14px
}

.wm .mn {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--orange-l)
}

.wm .ml {
    font-size: .72rem;
    color: rgba(255, 255, 255, .65);
    margin-top: 1px
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px
}

.wi {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--gray);
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: border-color .2s, transform .2s
}

.wi:hover {
    border-color: var(--orange);
    transform: translateX(4px)
}

.wi-ico {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(26, 46, 90, .1)
}

.wi h4 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px
}

.wi p {
    font-size: .82rem;
    color: var(--muted)
}


/* PROCESS */

#process {
    background: var(--navy-d)
}

#process .stitle {
    color: white
}

#process .sdesc {
    color: rgba(255, 255, 255, .55)
}

.proc-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 52px;
    position: relative
}

.proc-grid::before {
    content: '';
    position: absolute;
    top: 43px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(245, 166, 35, .25)
}

.ps {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.ps-n {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 2px solid rgba(245, 166, 35, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    transition: background .3s, border-color .3s
}

.ps:hover .ps-n {
    background: var(--orange);
    color: white;
    border-color: var(--orange)
}

.ps h3 {
    font-size: .92rem;
    font-weight: 700;
    color: white;
    margin-bottom: 7px
}

.ps p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6
}


/* AUDIENCE */

#audience {
    background: var(--cream)
}

.aud-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px
}

.aud-card {
    background: var(--white);
    border-radius: 14px;
    padding: 26px 22px;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: border-color .2s, transform .2s, box-shadow .2s
}

.aud-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
    box-shadow: var(--sh)
}

.ai {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy), var(--navy-l));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0
}

.aud-card h4 {
    font-size: .92rem;
    font-weight: 700;
    color: var(--navy)
}

.aud-card p {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 2px
}


/* BENEFITS */

#benefits {
    background: var(--white)
}

.ben-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.ben-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ben-row {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    transition: border-color .2s, background .2s
}

.ben-row:hover {
    border-color: var(--orange);
    background: rgba(245, 166, 35, .04)
}

.chk {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--orange), var(--orange-d));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: .78rem;
    font-weight: 700;
    flex-shrink: 0
}

.ben-row span {
    font-size: .91rem;
    font-weight: 500;
    color: var(--navy)
}

.bars {
    display: flex;
    flex-direction: column;
    gap: 22px
}

.bt {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px
}

.bt span:first-child {
    font-size: .86rem;
    font-weight: 600;
    color: var(--navy)
}

.bt span:last-child {
    font-size: .86rem;
    font-weight: 700;
    color: var(--orange)
}

.btr {
    height: 8px;
    background: var(--gray);
    border-radius: 4px;
    overflow: hidden
}

.bf {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--navy), var(--orange))
}


/* AEO */

#aeo {
    background: var(--navy)
}

#aeo .stitle {
    color: white
}

#aeo .sdesc {
    color: rgba(255, 255, 255, .55)
}

.aeo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px
}

.aeo-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 26px 22px;
    transition: background .2s, border-color .2s
}

.aeo-card:hover {
    background: rgba(245, 166, 35, .1);
    border-color: rgba(245, 166, 35, .4)
}

.aeo-q {
    font-size: .86rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 11px;
    line-height: 1.4
}

.aeo-a {
    font-size: .84rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7
}


/* FAQ */

#faq {
    background: var(--gray)
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 44px
}

.faq-card {
    background: var(--white);
    border-radius: 14px;
    padding: 26px 26px;
    border: 1.5px solid var(--border);
    transition: border-color .2s, box-shadow .2s
}

.faq-card:hover {
    border-color: var(--orange);
    box-shadow: var(--sh)
}

.faq-card h4 {
    font-size: .93rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 11px;
    display: flex;
    gap: 10px
}

.fq {
    width: 23px;
    height: 23px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .73rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px
}

.faq-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.7
}


/* CTA */

#cta {
    background: linear-gradient(135deg, var(--cream2) 0%, #fff5e0 100%);
    text-align: center;
    position: relative;
    overflow: hidden
}

#cta::before {
    content: '';
    position: absolute;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .12) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%)
}

#cta .stitle {
    font-size: clamp(2rem, 5vw, 3.3rem)
}

#cta .sdesc {
    margin: 14px auto 36px;
    max-width: 490px
}

.cta-chips {
    display: flex;
    justify-content: center;
    gap: 11px;
    margin-top: 28px;
    flex-wrap: wrap
}

.cc {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 2px 8px rgba(26, 46, 90, .06)
}


/* FOOTER */

footer {
    background: var(--navy-d);
    color: rgba(255, 255, 255, .7);
    padding: 56px 5% 26px
}

.ft {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 44px
}

.fl {
    font-size: 1.45rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 12px
}

.fl span {
    color: var(--orange)
}

.fb p {
    font-size: .86rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .5)
}

.fc h5 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--orange);
    margin-bottom: 16px
}

.fc ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.fc a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: .86rem;
    transition: color .2s
}

.fc a:hover {
    color: var(--orange)
}

hr.fd {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 22px
}

.fb2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.fb2 p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35)
}


/* RESPONSIVE */

@media(max-width:1024px) {
    .svc-grid {
        grid-template-columns: 1fr 1fr
    }
    .ft {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:820px) {
    .nav-links {
        display: none
    }
    .hero-inner {
        grid-template-columns: 1fr
    }
    .hero-card {
        display: none
    }
    .why-grid {
        grid-template-columns: 1fr
    }
    .why-box {
        display: none
    }
    .proc-grid {
        grid-template-columns: 1fr 1fr
    }
    .proc-grid::before {
        display: none
    }
    .aud-grid {
        grid-template-columns: 1fr 1fr
    }
    .ben-grid {
        grid-template-columns: 1fr
    }
    .aeo-grid {
        grid-template-columns: 1fr
    }
    .faq-grid {
        grid-template-columns: 1fr
    }
    .ft {
        grid-template-columns: 1fr
    }
}

@media(max-width:500px) {
    .svc-grid {
        grid-template-columns: 1fr
    }
    .aud-grid {
        grid-template-columns: 1fr
    }
    .proc-grid {
        grid-template-columns: 1fr
    }
}


/* nav and futter */

.navbar-custom {
    background: white;
    transition: all 0.4s ease-in-out;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-custom.scrolled {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.navbar-brand .logo {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
}

.navbar-brand .logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
}

.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    margin: 0 12px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ff9800 !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #ff9800;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.nav-btn a {
    text-decoration: none;
    color: #fff;
}

.nav-btn {
    background: linear-gradient(45deg, #ff9800, #ff5722);
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(255, 152, 0, 0.3);
}

.nav-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.6);
}

.navbar-toggler {
    border: none;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280,0,0,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
    .navbar-custom {
        background: #ffffff;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    .navbar-nav {
        background: #ffffff;
        border-radius: 12px;
        padding: 15px 0;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    .navbar-nav .nav-link {
        margin: 10px 0;
        font-size: 17px;
        display: block;
        color: #000 !important;
    }
    .nav-btn {
        width: 85%;
        margin: 12px auto;
        display: block;
        text-align: center;
    }
    .navbar-brand .logo {
        width: 120px;
    }
}


/* dropdown section */

.nav-item {
    position: relative;
}

.nav-item .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    background: #ffffff;
    border-radius: 6px;
    padding: 8px 0;
    min-width: 190px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 9999;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333 !important;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f3f3f3;
}

.nav-item:hover>.dropdown-menu {
    display: block;
}

.navbar-collapse {
    overflow: visible !important;
}

.nav-item.open>.dropdown-menu {
    display: block !important;
}

.nav-item.open i {
    transform: rotate(180deg);
    transition: 0.3s;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.social-icon {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, #F7941E, #173E84);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.social-icon i {
    z-index: 1;
    transition: transform 0.4s ease;
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon:hover i {
    transform: scale(1.2);
}

.social-icon.facebook:hover {
    text-decoration: none;
    background: #3b5998;
}

.social-icon.instagram:hover {
    text-decoration: none;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.linkedin:hover {
    text-decoration: none;
    background: #0077b5;
}

.social-icon.whatsapp:hover {
    text-decoration: none;
    background: #25D366;
}

@media (max-width: 767px) {
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.footer {
    background: url('futter\ image\ \(2\).jpg') no-repeat center center/cover;
    position: relative;
    color: #fff;
    padding: 80px 20px 30px;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(50 48 48 / 61%);
    z-index: 0;
}

@keyframes fadeBg {
    0% {
        filter: brightness(0.85) saturate(1);
    }
    50% {
        filter: brightness(1) saturate(1.1);
    }
    100% {
        filter: brightness(0.85) saturate(1);
    }
}

.footer {
    animation: fadeBg 15s ease-in-out infinite;
}

.footer-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* gap: 40px; */
}

.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f4f4f4;
    max-width: 320px;
}

.futter-num {
    text-decoration: none;
    color: white;
}

.futter-num:hover {
    text-decoration: none;
    color: white;
}

.futter-mail {
    text-decoration: none;
    color: white;
}

.futter-mail:hover {
    text-decoration: none;
    color: white;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-col h4:hover::after {
    width: 80px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #f4f4f4;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.contact-info li {
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #fff;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    font-size: 0.9rem;
    color: #eee;
}

@media (max-width: 991px) {
    .footer-row {
        gap: 30px;
    }
    .footer-col {
        flex: 1 1 45%;
    }
}

@media (max-width: 767px) {
    .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-logo {
        margin: 0 auto 15px;
    }
    .footer-about {
        margin: 0 auto 20px;
    }
}


/* whatsapp icon */

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 6px 6px 8px #999;
    z-index: 100;
}

.float:hover {
    color: white;
}

.my-float {
    margin-top: 16px;
}

.dropdown-item:hover {
    color: #ffb84d !important;
    /* light orange */
    text-decoration: underline;
}