:root {
    --primary: #010614;
    --accent: #010614;
    --light-accent: #90e0ef;
    --deep: #023e8a;
    --white: #f8fdff;
    --dark: #03071e;
    --mid: #1a2a4a;
    --grad: #020715;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow: 0 8px 32px rgba(0, 119, 182, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Exo 2', sans-serif;
}

/* ── LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
    transition: opacity .5s;
}

#loader .drop {
    width: 52px;
    height: 52px;
    background: var(--grad);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: dropPulse 1s ease-in-out infinite alternate;
}

@keyframes dropPulse {
    from {
        transform: rotate(-45deg) scale(1);
        box-shadow: 0 0 0 0 rgba(0, 180, 216, .6);
    }

    to {
        transform: rotate(-45deg) scale(1.15);
        box-shadow: 0 0 0 20px rgba(0, 180, 216, 0);
    }
}

#loader p {
    color: var(--light-accent);
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ── NAVBAR ── */
#navbar {
    position: relative;
    /* not fixed initially */
    width: 100%;
    z-index: 999;
    padding: 1px 0;
    transition: background .35s, box-shadow .35s, padding .35s;
    background: #ffffff;
}

#navbar.scrolled {
    position: fixed;
    /* fix only after scroll */
    top: 0;
    left: 0;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .3);
    padding: 1px 0;
}

.navbar-brand .brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: var(--grad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.brand-text {
    line-height: 1.1;
}

.brand-text .t1 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    color: #fff;
    letter-spacing: 1px;
}

.brand-text .t2 {
    font-size: .65rem;
    color: var(--light-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: rgb(0, 0, 0) ;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .5px;
    padding: 11px 21px !important;
    position: relative;
    transition: color .25s;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}

.navbar-nav .nav-link:hover {
    color: #000000 !important;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    background: #1a7382;
    color: #fff !important;
    border-radius: 50px;
    padding: 7px 22px !important;
}

.nav-cta::after {
    display: none !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .3);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ── HERO SLIDER ── */
#heroCarousel {
    height: 100vh;
    min-height: 560px;
}

.carousel-item {
    height: 100vh;
    min-height: 509px;
    position: relative;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgb(0 0 0 / 68%) 0%, rgb(0 0 0 / 34%) 60%, rgb(0 0 0 / 12%) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0px;
}

.slide-badge {
    display: inline-block;
    background: rgba(0, 180, 216, .25);
    border: 1px solid var(--accent);
    color: var(--light-accent);
    font-size: .78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
    width: 30%;
    text-align: center;
}

.slide-heading {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    line-height: 57px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .3);
    margin-bottom: 16px;
}


.slide-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .82);
    max-width: 520px;
    margin-bottom: 30px;
}

.btn-grad {
    background: var(--grad);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .5px;
    box-shadow: 0 6px 28px rgba(0, 119, 182, .45);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    display: inline-block;
}

.btn-grad:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 119, 182, .6);
    color: #fff;
}

.btn-outline-light {
    border-radius: 50px !important;
    padding: 11px 28px !important;
    font-weight: 600;
}

.carousel-indicators button {
    width: 28px;
    height: 4px;
    border-radius: 2px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 119, 182, .5);
    border-radius: 50%;
    padding: 20px;
}

/* Wave divider */
.wave-divider {
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
}

/* ── SECTION COMMONS ── */
.section-pad {
    padding: 90px 0;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--deep);
    margin-bottom: 10px;
}

.section-sub {
    color: #5a7fa0;
    font-size: .98rem;
    max-width: 540px;
    margin: 0 auto;
}

.title-line {
    display: block;
    width: 54px;
    height: 4px;
    border-radius: 2px;
    background: var(--grad);
    margin: 14px auto 0;
}

/* ── ABOUT ── */
#about {
    background: #f0f8ff;
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: 18px;
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
    height: 420px;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #020715;
    color: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0, 119, 182, .4);
}

.about-badge .num {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Exo 2', sans-serif;
}

.about-badge .lbl {
    font-size: .75rem;
    letter-spacing: 1px;
}

.counter-box {
    background: #fff;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 119, 182, .1);
    border-top: 3px solid var(--accent);
    transition: transform .3s;
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Exo 2', sans-serif;
}

.counter-lbl {
    font-size: .82rem;
    color: #5a7fa0;
    font-weight: 600;
    letter-spacing: .5px;
}

/* ── SERVICES ── */
#services {
    background: var(--white);
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: 0 4px 24px rgba(0, 119, 182, .08);
    border: 1px solid rgba(0, 180, 216, .1);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    height: 100%;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 44px rgba(0, 119, 182, .2);
    border-color: var(--accent);
}

.service-card:hover .svc-icon {
    background: var(--grad);
    color: #fff;
}

.svc-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(0, 180, 216, .1);
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background .3s, color .3s;
}

.service-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 8px;
}

.service-card p {
    font-size: .83rem;
    color: #6b849a;
    line-height: 1.6;
    margin: 0;
}

/* ── WHY CHOOSE US ── */
#why {
    background: #020715;
    color: #fff;
}

#why .section-title {
    color: #fff;
}

#why .title-line {
    background: rgba(255, 255, 255, .5);
}

#why .section-sub {
    color: rgba(255, 255, 255, .75);
}

.why-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: background .3s, transform .3s;
}

.why-card:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateY(-6px);
}

.why-icon {
    font-size: 2.2rem;
    color: var(--light-accent);
    margin-bottom: 14px;
}

.why-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.why-card p {
    font-size: .83rem;
    color: rgba(255, 255, 255, .75);
    margin: 0;
}

/* ── PROCESS ── */
#process {
    background: #f0f8ff;
}

.process-step {
    box-shadow: rgb(0 0 0 / 20%) 0px 3px 8px;
    text-align: center;
    padding: 20px;
    position: relative;
    height: 254px;
    border-radius: 16px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 38px;
    left: 58%;
    width: calc(100% - 16%);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--light-accent));
}

.step-num {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Exo 2', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 6px 24px rgba(0, 119, 182, .35);
    position: relative;
    z-index: 1;
}

.process-step h5 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--deep);
    margin-bottom: 6px;
}

.process-step p {
    font-size: .8rem;
    color: #6b849a;
}

/* ── GALLERY ── */
#gallery {
    background: var(--white);
}

.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 119, 182, .1);
    cursor: pointer;
    height: 220px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* lightbox */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 8888;
    background: rgba(0, 0, 0, .92);
    align-items: center;
    justify-content: center;
}

#lightbox.active {
    display: flex;
}

#lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 60px rgba(0, 180, 216, .3);
}

#lightbox .lb-close {
    position: absolute;
    top: 20px;
    right: 28px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: #f0f8ff;
}

.testi-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 6px 28px rgba(0, 119, 182, .1);
    border-left: 4px solid var(--accent);
    height: 100%;
}

.testi-stars {
    color: #f4a100;
    font-size: .95rem;
    margin-bottom: 12px;
}

.testi-text {
    font-size: .9rem;
    color: #4a6580;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Exo 2', sans-serif;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--deep);
}

.testi-role {
    font-size: .78rem;
    color: #7a9ab0;
}

/* ── CTA ── */
#cta {
    background: #012a6b;
    color: #fff;
    text-align: center;
}

#cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

#cta p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* ── CONTACT ── */
#contact {
    background: var(--white);
}

.contact-info-box {
    background: var(--deep);
    border-radius: 18px;
    padding: 38px 30px;
    color: #fff;
    height: 100%;
}

.contact-info-box h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
}

.c-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.c-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 180, 216, .2);
    color: var(--light-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.c-item .c-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .55);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.c-item .c-val {
    font-size: .88rem;
    color: rgba(255, 255, 255, .9);
    margin-top: 2px;
}

.contact-form-box {
    background: #fff;
    border-radius: 18px;
    padding: 38px 30px;
    box-shadow: 0 6px 32px rgba(0, 119, 182, .1);
    height: 100%;
}

.form-control,
.form-select {
    border-radius: 10px !important;
    border: 1.5px solid #d4e8f0 !important;
    font-size: .9rem;
    padding: 11px 16px;
    transition: border-color .25s, box-shadow .25s;
}

.form-control:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, .15) !important;
}

.map-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

/* ── FOOTER ── */
footer {
    background: #011a45;
    color: rgba(255, 255, 255, .72);
    padding: 60px 0 0;
}

.footer-brand .t1 {
    font-size: 1.15rem;
    color: #fff;
    font-weight: 800;
    font-family: 'Exo 2', sans-serif;
}

.footer-brand .t2 {
    font-size: .72rem;
    color: var(--light-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

footer h6 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
    font-size: .88rem;
    text-transform: uppercase;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 9px;
}

footer ul li a {
    color: rgba(255, 255, 255, .62);
    font-size: .86rem;
    text-decoration: none;
    transition: color .25s;
}

footer ul li a:hover {
    color: var(--light-accent);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
    margin-right: 8px;
    transition: background .25s, color .25s, transform .25s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 40px;
    padding: 18px 0;
    font-size: .82rem;
    color: rgba(255, 255, 255, .4);
}

/* ── BACK TO TOP ── */
#backToTop {
    position: fixed;
    bottom: 80px;
    right: 22px;
    z-index: 990;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 119, 182, .4);
    transition: transform .25s;
    cursor: pointer;
}

#backToTop:hover {
    transform: translateY(-4px);
}

#backToTop.show {
    display: flex;
}

/* ── WHATSAPP ── */
#waBtn {
    position: fixed;
    bottom: 22px;
    left: 22px;
    z-index: 990;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
    text-decoration: none;
    transition: transform .25s, box-shadow .25s;
    animation: waPulse 2.5s infinite;
}

#waBtn:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

/* ── RESPONSIVE ── */
@media(max-width:767px) {
    .process-step::after {
        display: none;
    }

    .about-badge {
        right: 0;
        bottom: -10px;
    }
}


/* section#home {
    margin-top: 69px;
} */



.service-card img {
    width: 100%;
    height: 252px;
    object-fit: cover;
    border-radius: 21px;
    margin-bottom: 20px;
    background: #020715;
}







/* ── RESPONSIVE ── */
@media(max-width:600px) {
    .slide-badge {

        width: 76%;
        text-align: center;
    }

    .slide-heading {
        font-size: 22px;
        font-weight: 800;
        color: #fff;
        line-height: 41px;

    }

    .carousel-item {
        height: 79vh;
        min-height: 509px;

    }


}




.gax-breadcrumb {
    background: linear-gradient(90deg, #0b2a4a, #1a7382);
    padding: 61px 0;
    color: #fff;
}

.gax-breadcrumb-title h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 600;
    color: #fff;
}

.gax-breadcrumb-list {
    background: transparent;
}

.gax-breadcrumb-list .breadcrumb-item a {
    color: #cfe6ff;
    text-decoration: none;
    font-size: 14px;
}

.gax-breadcrumb-list .breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

.gax-breadcrumb-list .breadcrumb-item+.breadcrumb-item::before {
    color: #9ec5ff;
}




.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
}

.service-btn {
    display: inline-block;
    padding: 8px 18px;
    background: var(--accent);
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: .3s;
}

.service-btn:hover {
    background: #000;
    color: #fff;
}


 .pa-blog-detail-sec {
    padding: 80px 0;
    background: #ffffff;
}

/* LEFT CONTENT */
.pa-blog-detail-img img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.pa-blog-detail-meta {
    color: #000000;
    font-size: 14px;
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.pa-blog-detail-title {
    color: #000000;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 45px;
}

.pa-blog-detail-text {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Quote */
.pa-blog-quote {
    background: #0b1f3b;
    border-left: 4px solid #ffc107;
    padding: 20px;
    color: #ffffff;
    font-style: italic;
    border-radius: 8px;
    margin: 25px 0;
}

/* SIDEBAR */
.pa-sidebar-box {
    background: #0b1f3b;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.pa-sidebar-title {
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

.pa-sidebar-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ffc107;
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* Search */
.pa-search-box {
    display: flex;
    background: #071a33;
    border-radius: 50px;
    overflow: hidden;
}

.pa-search-box input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    background: transparent;
    color: #fff;
}

.pa-search-box button {
    background: #ffc107;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

/* Recent */
.pa-recent-blog {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.pa-recent-blog img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.pa-recent-blog h6 {
    color: #fff;
    margin: 0;
    font-size: 14px;
    transition: 0.3s;
}

.pa-recent-blog span {
    font-size: 12px;
    color: #aaa;
}

.pa-recent-blog:hover h6 {
    color: #ffc107;
}

/* Tags */
.pa-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pa-tags a {
    padding: 6px 14px;
    background: #071a33;
    border-radius: 30px;
    font-size: 13px;
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.pa-tags a:hover {
    background: #ffc107;
    color: #000;
}

/* Services List */
.pa-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pa-service-list li {
    margin-bottom: 10px;
}

.pa-service-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #071a33;
    border-radius: 8px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

/* Arrow icon */
.pa-service-list li a::after {
   
    font-size: 14px;
    transition: 0.3s;
}

/* Hover Effects */
.pa-service-list li a:hover {
    background: #ffc107;
    color: #000;
    transform: translateX(5px);
}

.pa-service-list li a:hover::after {
    transform: translateX(5px);
}


    :root {
  --pa-primary: #0b1f3b;
  --pa-gold: #c9a24a;
  --pa-white: #ffffff;
  --pa-light: #f8f9fa;
  --pa-transition: 0.3s ease;
}

/* Section Titles */
.pa-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--pa-primary);
}

.pa-section-subtitle {
  color: #777;
}

/* INDUSTRIES */
.pa-industries {
  background: var(--pa-light);
}

.pa-industry-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  transition: var(--pa-transition);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pa-industry-card:hover {
  transform: translateY(-5px);
  background: var(--pa-primary);
  color: white;
}

/* WHY */
.pa-why-list {
  list-style: none;
  padding: 0;
}

.pa-why-list li {
  margin-bottom: 12px;
  font-weight: 500;
}

.pa-why-img {
  height: 300px;
  background: url('https://via.placeholder.com/500') center/cover;
  border-radius: 10px;
}

/* CTA */
.pa-cta {
    padding: 100px 0px !important;
    background: var(--pa-primary);
    color: white;
}

.pa-btn {
    text-decoration: none;
  background: var(--pa-gold);
  color: black;
  padding: 12px 25px;
  border-radius: 6px;
  margin: 5px;
  display: inline-block;
  font-weight: 600;
  transition: var(--pa-transition);
}

.pa-btn:hover {
  transform: scale(1.05);
}

.pa-btn-outline {
     text-decoration: none;
  border: 2px solid white;
  padding: 12px 25px;
  border-radius: 6px;
  color: white;
  margin: 5px;
}

/* FOUNDER */
.pa-founder-img {
  height: 350px;
  background: url('https://via.placeholder.com/400') center/cover;
  border-radius: 10px;
}

/* STATS */
.pa-stats {
  background: var(--pa-primary);
  color: white;
}

.pa-stats h2 {
  color: var(--pa-gold);
  font-weight: 700;
}

/* Responsive */
@media(max-width:768px){
  .pa-section-title {
    font-size: 24px;
  }
}





/* SECTION */
.pa-industries {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* TITLE */
.pa-section-title {
    color: #000000;
    font-weight: 700;
    font-size: 34px;
}

.pa-section-subtitle {
    color: #000000;
    font-size: 15px;
}

/* CARD */
.pa-industry-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}

/* ICON */
.pa-industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f5d67b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0b1f3b;
    transition: 0.4s;
}

/* TEXT */
.pa-industry-card h6 {
    color: #000000;
    font-weight: 600;
    margin-top: 10px;
}

/* HOVER EFFECT */
.pa-industry-card:hover {
    color: #ffffff;
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(212,175,55,0.4);
}

.pa-industry-card:hover h6 {
    color: #ffffff;
}

/* ICON HOVER */
.pa-industry-card:hover .pa-industry-icon {
    transform: rotate(8deg) scale(1.1);
    box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* GLOW EFFECT */
.pa-industry-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(212,175,55,0.2), transparent 70%);
    opacity: 0;
    transition: 0.4s;
    top: 0;
    left: 0;
}

.pa-industry-card:hover::before {
    opacity: 1;
}




h2.cta-title.fedfe {
    font-size: 29px;
}


.pa-industry-card {
    box-shadow: rgb(50 77 111) 0px 3px 8px;
}



.pa-founder-img img{
    width: 100%;
    border-radius: 20px;
    height: 350px;
    object-fit: cover;
}

.pa-sidebar-box p{
    color: white;
}


.pa-blog-detail-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .pa-section-title {
        font-size: 26px;
    }
    .pa-industry-card {
    height: 193px;

}

.pa-blog-detail-img img {
    width: 100%;
    height: auto !important;
    object-fit: cover;
   
}


}
