/* ----------  THEME COLOR VARIABLES  ---------- */
:root {
    /* brand palette */
    --clr-primary: #3f2da7;
    --clr-primary-light: #513fb3;
    --clr-primary-dark: #14037A;

    /* neutrals */
    --clr-white: #ffffff;
    --clr-off-white: #f7f8ff;
    --clr-light-gray: #f2f3ff;
    --clr-mid-gray: #666666;
    --clr-border-gray: #eeeeee;

    /* mobile menu glass */
    --clr-glass-bg: rgba(144, 146, 255, 0.15);
    --clr-glass-border: rgba(144, 170, 255, 0.6);
    --clr-glass-text: #1310b9;
    --clr-glass-glow: rgba(133, 124, 255, 0.4);
    --clr-glass-dark: rgba(144, 124, 255, 0.25);
    --clr-glass-shadow: rgba(144, 124, 255, 0.6);

    /* mega-menu cosmetic */
    --clr-mega-bg: #fff;
    --clr-mega-card-bg: #f8f9ff;
    --clr-mega-shadow: rgba(0, 0, 0, 0.2);

          
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Prevent content jump */
body {
    font-family: 'Instrument Sans', sans-serif;
    padding-top: 96px;
}

a {
    text-decoration: none;
}
.hero-title,
.hero-title span,
.trusted-partner-section .section-title,
.video-section .section-title,
.text-img-section .section-title,
.case-study-title,
.latest-project-title,
.testimonial-section .section-title,
.cta-title,
.accreditation-section .section-title,
.page-text-content-title, .how-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem) !important;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
}


/* Scroll reveal base */
/* .reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: transform, opacity;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
} */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: calc(var(--delay) * 0.10s);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
/* .reveal.delay-1 {
    transition-delay: 0.15s;
}

.reveal.delay-2 {
    transition-delay: 0.30s;
}

.reveal.delay-3 {
    transition-delay: 0.45s;
}

.reveal.delay-4 {
    transition-delay: 0.60s;
}

.reveal.delay-5 {
    transition-delay: 0.75s;
}

.reveal.delay-6 {
    transition-delay: 0.90s;
}

.reveal.delay-7 {
    transition-delay: 1.05s;
}

.reveal.delay-8 {
    transition-delay: 1.20s;
}

.reveal.delay-9 {
    transition-delay: 1.35s;
}

.reveal.delay-10 {
    transition-delay: 1.50s;
}

.reveal.delay-11 {
    transition-delay: 1.65s;
}

.reveal.delay-12 {
    transition-delay: 1.80s;
} */

/* ///////////////////// Header Start ///////////////// */
/* Fixed header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.main-header {
    background: var(--clr-primary);
    position: relative;
}

.nav-capsule {
    border-radius: 50px;
}

.nav-item {
    padding: 10px 2px;
}

.nav-link {
    color: var(--clr-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.nav-inner-links{
    text-decoration: none;
    color: var(--clr-primary-dark);
}

.nav-link:hover {
    color: var(--clr-white);
    background: var(--clr-primary-light);
    border-radius: 50px;
}

.nav-link:active,
.nav-link:focus {
    color: var(--clr-white);
}

.mega-item {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 15px);
    width: 100%;
    max-width: 1400px;
    background: var(--clr-mega-bg);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px var(--clr-mega-shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;
    z-index: 999;
}

.mega-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-title {
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--clr-primary);
}

.mega-card {
    background: var(--clr-mega-card-bg);
    padding: 15px;
    border-radius: 16px;

    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.mega-card:hover {
    background: var(--clr-primary);
    color: var(--clr-off-white);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}


.mega-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}

.mega-card h6 {
    font-weight: 700;
}

.mega-card p {
    font-size: 14px;
    /* color: var(--clr-mid-gray); */
}

.mega-list {
    list-style: none;
    padding: 0;
}

.mega-list li {
    padding: 6px 0;
    font-weight: 500;
}

.mega-highlight {
    background: var(--clr-primary);
    color: var(--clr-white);
    padding: 20px;
    border-radius: 18px;
}

.expert-btn {
    background: var(--clr-primary);
    border-radius: 50px;
    padding: 10px 25px;
    color: var(--clr-white);
    font-weight: 700;
    font-size: 1.1rem;
}

.expert-btn:hover {
    background: var(--clr-primary-light);
    color: var(--clr-white);
}

@media (max-width: 768px) {
    .fixed-header {
        background-color: var(--clr-mega-bg);
    }
}

/* Tablet (≥576px) */
@media (min-width: 576px) {

    .nav-link,
    .expert-btn {
        font-size: 1rem;
    }
}

/* Tablet landscape / small laptop (≥768px) */
@media (min-width: 768px) {

    .nav-link,
    .expert-btn {
        font-size: 1rem;
    }
}

/* Laptop (≥992px) */
@media (min-width: 992px) {

    .nav-link,
    .expert-btn {
        font-size: 1rem;
    }
}

/* Desktop / Large screens (≥1200px) */
@media (min-width: 1200px) {

    .nav-link,
    .expert-btn {
        font-size: 1.15rem;
    }
}

/* Extra-large desktop (≥1400px) */
@media (min-width: 1400px) {

    .nav-link,
    .expert-btn {
        font-size: 1.2rem;
    }
}

/* Prevent overflow on laptop screens */
@media (max-width: 1199px) {
    .mega-menu {
        width: calc(100vw - 40px);
        max-width: 1100px;
        left: 50%;
        transform: translate(-50%, 15px);
    }
}

/* Extra safety for small laptops */
@media (max-width: 1024px) {
    .mega-menu {
        max-width: 960px;
        padding: 30px;
    }
}







/* ================= BASE ================= */
.mobile-menu {
    background: var(--clr-white);
}

.mobile-menu-body {
    padding: 22px;
    background: var(--clr-mega-card-bg)
}

.mobile-menu-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--clr-off-white);
}

/* ================= ACCORDION CARD ================= */
.mobile-nav-item {
    background: var(--clr-primary-dark);
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    border: none;
}

/* Remove Bootstrap default arrow */
.mobile-nav-btn::after {
    display: none !important;
}

/* ================= BUTTON ================= */
.mobile-nav-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--clr-white);
}

.mobile-nav-btn:focus {
    box-shadow: none;
}

/* Left section */
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.mobile-nav-span-cont {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-left i {
    color: #4AAB3D;
    font-size: 1rem;
}

/* ================= CHEVRON ================= */
.nav-chevron {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--clr-white);
    border-bottom: 2px solid var(--clr-white);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.mobile-nav-btn:not(.collapsed) .nav-chevron {
    transform: rotate(-135deg);
    opacity: 1;
}

/* ================= BODY ================= */
.mobile-nav-body {
    padding: 6px 20px 16px;
}

.mobile-nav-body a {
    background: var(--clr-off-white);
    display: block;
    padding: 12px;
    border-radius: 10px;
    margin: 2px 0px;
    font-weight: 500;
    color: var(--clr-primary-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--clr-border-gray);
}

.mobile-nav-body a:last-child {
    border-bottom: none;
}

.mobile-nav-body a:hover {
    color: var(--clr-primary);
}

.accordion-item.mobile-nav-item {
    border-radius: 15px;
}

/* ================= SINGLE LINK ================= */
.mobile-nav-single {
    margin-top: 20px;
    background: var(--clr-primary-dark);
    padding: 18px 20px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--clr-white);
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.mobile-nav-single i {
    opacity: 0.6;
}

/* ================= CTA ================= */
.mobile-menu-cta {
    margin-top: 28px;
}

.mobile-menu-btn {
    display: block;
    background: var(--clr-primary);
    color: var(--clr-white);
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}



.offcanvas-header .btn-close {
    margin: 0;
    padding: 0;
    margin-left: auto;
}

/* Shared glass glow button base */
.mobile-menu-btn,
.mobile-close-btn {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-glass-bg);
    border: 2px solid var(--clr-glass-border);
    border-radius: 14px;
    color: var(--clr-glass-text);
    font-size: 1.25rem;
    box-shadow: 0 0 18px var(--clr-glass-glow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all .3s ease;
}

/* Hover / Focus */
.mobile-menu-btn:hover,
.mobile-menu-btn:focus,
.mobile-close-btn:hover,
.mobile-close-btn:focus {
    background: var(--clr-glass-dark);
    box-shadow: 0 0 30px var(--clr-glass-shadow);
    transform: translateY(-1px);
}

/* Active */
.mobile-menu-btn:active,
.mobile-close-btn:active {
    transform: scale(.95);
}

/* Hamburger icon */
.mobile-menu-btn i {
    pointer-events: none;
}

/* Close button tweak */
.mobile-close-btn {
    width: 40px;
    height: 40px;
    background-image: none !important;
    opacity: 1;
}

.mobile-close-btn::before {
    content: "✕";
    font-size: 1.3rem;
    font-weight: 700;
}

/* Header alignment fix */
.offcanvas-header .btn-close {
    margin-left: auto;
}




/* ///////////////////// Header Close ///////////////// */


/* ///////////////////// Footer Start ///////////////// */
.premium-footer {
    background: linear-gradient(180deg,
            var(--clr-primary-dark),
            var(--clr-primary));
    color: var(--clr-off-white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

/* soft luxury glow */
.premium-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top,
            rgba(98, 75, 195, 0.25),
            transparent 45%);
    pointer-events: none;
}

/* ================= Typography ================= */

.footer-title {
    color: var(--clr-white);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--clr-off-white);
    opacity: 0.9;
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--clr-off-white);
    opacity: 0.85;
}

/* ================= Links ================= */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--clr-off-white);
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.footer-links a:hover {
    color: var(--clr-white);
    opacity: 1;
    padding-left: 4px;
}

/* ================= Social Icons ================= */

.footer-social {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.footer-social a {
    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;

    color: var(--clr-white);
    font-size: 1.1rem;

    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.15);

    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--clr-glass-glow);
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

/* ================= Divider ================= */

.footer-divider {
    margin: 40px 0 20px;
    border-color: var(--clr-mid-gray);
}

/* ================= Bottom ================= */

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: var(--clr-off-white);
    opacity: 0.7;
}

.footer-col-hr {
    color: var(--clr-off-white);
    width: 50%
}


/* ---------- Responsive tweaks ---------- */

/* Mobile */
@media (max-width: 767px) {

    .premium-footer {
        padding: 60px 0 25px;
    }

    .footer-col-hr {
        width: 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        gap: 12px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {

    .footer-col-hr {
        width: 45px;
    }
}

/* Large screens */
@media (min-width: 1200px) {

    .premium-footer {
        padding: 90px 0 35px;
    }
}

/* ///////////////////// Footer Close ///////////////// */



/* ///////////////////// Hero Section Start ///////////////// */
.hero-section {
    background:
        radial-gradient(circle at top right, rgba(81, 63, 179, .15), transparent 60%),
        linear-gradient(135deg, var(--clr-light-gray), var(--clr-off-white));
    padding: 60px 0;
    overflow: hidden;
}

/* Badge */
.hero-badge {
    background: rgba(81, 63, 179, 0.1);
    color: var(--clr-primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Headings */
.hero-title {
    /* font-size: clamp(2.2rem, 4.5vw, 3.8rem); */
    /* font-weight: 600; */
    line-height: 1.15;
    color: var(--clr-primary-dark);
}

.hero-title span {
    color: #2EB14B;
}

/* Text */
.hero-text {
    /* max-width: 520px; */
    font-size: 1.05rem;
    color: var(--clr-mid-gray);
}

/* Button */
.hero-btn {
    border-radius: 50px;
    padding: 14px 34px;
    background: linear-gradient(135deg,
            var(--clr-primary),
            var(--clr-primary-light));
    color: var(--clr-white);
    border: none;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(63, 45, 167, .35);
}

.hero-btn:hover {
    color: var(--clr-white);
}

/* Visual */
.hero-visual {
    position: relative;
    max-width: 440px;
    animation: popIn 1s ease forwards;
}

.hero-phone {
    width: 550px;
    border-radius: 32px;
    box-shadow: 0 35px 80px rgba(63, 45, 167, .35);
    /* animation: float 6s ease-in-out infinite; */
}

.hero-phone img {
    width: 550px;
    border-radius: 32px;
}

.hero-note svg.svg-inline--fa.fa-star,
svg.svg-inline--fa.fa-star-half {
    color: #FFC107 !important;
    font-size: 1rem;
}

/* Floating Cards */
.hero-card {
    position: absolute;
    background: var(--clr-white);
    padding: 30px 22px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(63, 45, 167, .25);
    min-width: 170px;
    animation: popCard 1s ease forwards;
}

.hero-card strong {
    font-size: 1.3rem;
    color: var(--clr-primary);
}

.hero-card span {
    font-size: 0.85rem;
    color: var(--clr-mid-gray);
}

/* Positions (Desktop) */
.card-top {
    top: -100px;
    left: -90px;
}

.card-left {
    top: 90%;
    left: -90px;
}

.card-bottom {
    bottom: -20px;
    right: -100px;
}

/* Animations */
@keyframes popIn {
    from {
        transform: scale(.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes popCard {
    from {
        transform: scale(.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================
       RESPONSIVE BREAKPOINTS
       ========================= */

/* Tablets */
@media (max-width: 991px) {
    .hero-visual {
        margin-top: 40px;
    }

    .hero-card {
        padding: 22px 18px;
        min-width: 150px;
    }

    .card-top {
        top: -80px;
        left: -60px;
    }

    .card-left {
        left: -60px;
    }

    .card-bottom {
        right: -70px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-visual {
        max-width: 100%;
    }

    .hero-card {
        position: static;
        /* margin: 10px; */
        flex: 1 1 45%;
    }

    .hero-visual {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .hero-phone {
        order: -1;
        margin-bottom: 20px;
        width: 380px;
    }
    .hero-phone img{
        width: 380px;
    }
}



/* Tablet landscape / small laptop (≥768px) */
@media (min-width: 768px) {
    .card-bottom {
        bottom: -40px;
        right: -90px;
    }

    .card-left {
        top: 80%;
        left: -90px;
    }
        .hero-phone {
        order: -1;
        margin-bottom: 20px;
        width: 420px;
    }
    .hero-phone img{
        width: 420px;
    }
}

/* Laptop (≥992px) */
@media (min-width: 992px) {
    .card-bottom {
        bottom: -90px;
        right: -25px;
    }
        .hero-phone {
        order: -1;
        margin-bottom: 20px;
        width: 480px;
    }
    .hero-phone img{
        width: 480px;
    }
}



/* ///////////////////// Hero Section Close ///////////////// */



/* ///////////////////// Trusted Partner Section Start ///////////////// */
.trusted-partner-section {
    /* background: linear-gradient(135deg, var(--clr-light-gray), var(--clr-off-white)); */
    border-radius: 80px;
    padding: 70px 20px;
    margin: 60px auto;
}

/* Heading */
.trusted-partner-section .section-title {
    /* font-size: 3rem; */
    /* font-weight: 800; */
    color: var(--clr-primary-dark);
}

.trusted-partner-section .section-subtitle {
    font-size: 1rem;
    color: var(--clr-mid-gray);
}

/* Trusted Partner Slider */
.trusted-partner-slider img {
    max-height: 95px;
    margin: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all .3s ease;
}

.trusted-partner-slider img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Slick spacing */
.trusted-partner-slider .slick-slide {
    display: flex;
    align-items: center;
}

/* Service Cards */
.service-card {
    background: var(--clr-white);
    border-radius: 26px;
    border: 2px solid var(--clr-glass-border);
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 20px 45px rgba(63, 45, 167, .12);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.service-card img {
    max-width: 150px;
    margin-bottom: 15px;
    transition: transform .35s ease;
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-primary-dark);
}

/* Hover Animation */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(63, 45, 167, .25);
}

.service-card:hover img {
    transform: scale(1.1) rotate(-2deg);
}

/* ///////////////////// Trusted Partner Section Close ///////////////// */




/* ///////////////////// video Section Start ///////////////// */
.video-section {
    background: var(--clr-primary);
    border-radius: 80px;
    padding: 80px 20px;
    margin: 60px auto;
}

/* Headings */
.video-section .section-title {
    /* font-size: 3rem; */
    /* font-weight: 800; */
    color: var(--clr-off-white);
}

.video-section .section-subtitle {
    color: var(--clr-off-white);
    font-size: 1rem;
}

/* Video Card */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 */
    background: var(--clr-white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(63, 45, 167, .25);
}

/* Iframe */
.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 28px;
}

.video-section-btn {
    border-radius: 50px;
    padding: 14px 34px;
    background: linear-gradient(135deg,
            var(--clr-off-white),
            var(--clr-glass-bg));
    color: var(--clr-primary-dark);
    border: none;
    font-weight: 700;
    cursor: pointer;

    box-shadow: 0 12px 30px rgba(63, 45, 167, 0.35);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background-position 0.5s ease;
    background-size: 200% 200%;
}

/* Hover effect */
.video-section-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 18px 45px rgba(63, 45, 167, 0.45),
        0 0 0 6px rgba(74, 171, 61, 0.12);
    background-position: right center;
    color: var(--clr-white);
}

/* Click / active feedback */
.video-section-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 8px 18px rgba(63, 45, 167, 0.35);
}

/* Hover polish */
.video-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 90px rgba(63, 45, 167, .35);
    transition: all .35s ease;
}

/* Mobile */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 15px;
        border-radius: 30px;
    }
}

/* ///////////////////// video Section Close ///////////////// */



/* ///////////////////// Text Img Section Start ///////////////// */
.text-img-section {
    background:
        radial-gradient(circle at top right, rgba(81, 63, 179, .12), transparent 60%),
        linear-gradient(135deg, var(--clr-light-gray), var(--clr-off-white));
    border-radius: 80px;
    padding: 80px 20px;
    margin: 60px auto;
}

/* Text */
.text-img-section .section-title {
    /* font-size: 3rem;
    font-weight: 800; */
    color: var(--clr-primary-dark);
}

.text-img-section .section-subtitle {
    font-size: 1rem;
    color: var(--clr-mid-gray);
    line-height: 1.7;
    text-align: start;
}

/* Button */
.section-btn {
    border-radius: 50px;
    padding: 12px 30px;
    background: linear-gradient(135deg,
            var(--clr-primary),
            var(--clr-primary-light));
    color: var(--clr-white);
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(63, 45, 167, .35);
    transition: all .3s ease;
}

.section-btn:hover {
    transform: translateY(-3px);
    color: var(--clr-white);
    box-shadow: 0 18px 45px rgba(63, 45, 167, .45);
}

/* Image Card */
.image-card {
    background: var(--clr-white);
    padding: 18px;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(63, 45, 167, .25);
    transition: all .35s ease;
}

.image-card img {
    width: 100%;
    border-radius: 20px;
}

/* Hover */
.image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(63, 45, 167, .35);
    color: var(--clr-white);
}

/* Mobile */
@media (max-width: 768px) {
    .text-img-section {
        padding: 60px 15px;
        border-radius: 30px;
    }

    .image-card {
        margin-top: 20px;
    }
}

/* ///////////////////// Text Img Section Close ///////////////// */




/* ///////////////////// Case Study Section Start ///////////////// */
.case-study-case {
    background: linear-gradient(180deg, var(--clr-light-gray), var(--clr-off-white));
    padding: clamp(60px, 8vw, 100px) 0;
    border-radius: 80px;

}

/* HEADING */
.case-study-title {
    /* font-size: 3rem;
    font-weight: 700; */
    color: var(--clr-primary-dark);
}

.case-study-subtitle {
    color: var(--clr-mid-gray);
    max-width: 680px;
    margin: auto;
}

/* TABS */
.case-study-tabs {
    border: none;
    gap: 12px;
}

.case-study-tabs .nav-link {
    border: none;
    background: var(--clr-light-gray);
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--clr-primary-dark);
    white-space: nowrap;
    transition: all .3s ease;
}

.case-study-tabs .nav-link.active {
    background: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: 0 8px 24px rgba(63, 45, 167, .35);
}

/* TAB CONTENT WRAPPER */
.case-study-tab-content {
    background: var(--clr-white);
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(20, 3, 122, .12);
}

/* SLIDE WRAPPER */
.premium-slide {
    padding: 10px;
}

/* CONTENT CARD */
.case-study-card {
    /* background: linear-gradient(180deg, #fff, #f9faff); */
    background: var(--clr-primary-dark);
    border-radius: 22px;
    padding: clamp(24px, 4vw, 40px);
    box-shadow: 0 0px 10px rgba(20, 3, 122, .12);
    /* transition: transform .4s ease, box-shadow .4s ease; */
}

.premium-slide:hover .case-study-card {
    /* transform: translateY(-6px); */
    box-shadow: 0 0px 10px rgba(20, 3, 122, .18);
}

/* TAG */
.case-tag {
    display: inline-block;
    background: var(--clr-glass-glow);
    color: var(--clr-off-white);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 14px;
}

/* TEXT */
.case-title {
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 6px;
}

.case-meta {
    font-size: .85rem;
    color: var(--clr-off-white);
    margin-bottom: 14px;
}

.case-desc {
    color: var(--clr-off-white);
    line-height: 1.7;
}

/* LINK */
.case-link {
    font-weight: 600;
    color: var(--clr-off-white);
    text-decoration: none;
    position: relative;
}

.case-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--clr-off-white);
    transition: width .3s ease;
}

.case-study-tabs>.nav-item>.nav-link {
    font-size: 1rem;
}

.case-link:hover::after {
    width: 100%;
}

/* IMAGE */
.case-study-image {
    width: 100%;
    max-width: 420px;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(20, 3, 122, .22);
    transition: transform .45s ease;
}

.premium-slide:hover .case-study-image {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 767px) {
    .case-study-card {
        text-align: center;
    }

    .case-study-tabs {
        padding-bottom: 10px;
    }
}

/* ///////////////////// Case Study Section Close ///////////////// */




/* ///////////////////// Latest Project Section Start ///////////////// */
.latest-project-section {
    background: var(--clr-primary-dark);
    border-radius: 50px;
    margin: 40px 15px;
}

.latest-project-title {
    /* font-weight: 800;
    font-size: 3rem; */
    color: var(--clr-white);
}

.latest-project-subtitle {
    color: var(--clr-white);
    ;
}

.modal-title {
    font-weight: 700;
    font-size: 1.8rem;

}

.project-card {
    background: var(--clr-white);
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
    transition: all .45s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .12);
}

.project-img-wrapper {
    position: relative;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .6s ease;
}

.project-card:hover .project-img {
    transform: scale(1.12);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 32, 50, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
    backdrop-filter: blur(4px);
}

.project-overlay span {
    background: var(--clr-white);
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--clr-primary-dark)
}

.project-card .project-overlay {
    opacity: 1;
}

.project-info {
    padding: 20px;
}

.project-info h4 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: var(--clr-primary-dark);
}

.project-info p {
    color: var(--clr-mid-gray);
    font-size: .85rem;
}

/* MODAL */
.carousel-img-wrapper {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-img {
    max-width: 92%;
    max-height: 92%;
    border-radius: 24px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .6);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-white);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    border: none;
    font-size: 20px;
    z-index: 1056;
}

.modal-content-right {
    overflow-y: auto;
}

.model-row-cont {
    overflow-y: auto;
}

/* THUMB STRIP */
.project-thumbs-wrapper {
    background: var(--clr-light-gray);
    border-top: 1px solid var(--clr-off-white);
}

.project-thumbs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.project-thumbs::-webkit-scrollbar {
    height: 6px;
}

.project-thumbs::-webkit-scrollbar-thumb {
    background: var(--clr-light-gray);
    border-radius: 10px;
}

.project-thumb {
    width: 90px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.project-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.project-thumb.active {
    opacity: 1;
    border-color: var(--clr-primary-dark);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* MOBILE */
@media (max-width: 768px) {
    .project-thumb {
        width: 70px;
        height: 50px;
    }
}

/* ///////////////////// Latest Project Section Close ///////////////// */



/* ///////////////////// Testimonial Section STart ///////////////// */

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin: 15px;
    height: 280px;
    /* Increased height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-section .section-title {
    /* font-size: 3rem;
    font-weight: 800; */
    color: var(--clr-primary-dark);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Top section */
.testimonial-top {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.user-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f3f4;
}

.user-info strong {
    display: block;
    font-size: 16px;
}

.user-info span {
    font-size: 13px;
    color: #5f6368;
}

.google-icon {
    width: 26px;
    position: absolute;
    right: 0;
    top: 0;
}

/* Stars */
.stars {
    color: #fbbc04;
    font-size: 15px;
    margin-top: 3px;
}

/* Text with 5–6 line truncation */
.testimonial-text {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 576px) {
    .testimonial-card {
        height: auto;
        padding: 25px;
    }

    .testimonial-text {
        -webkit-line-clamp: 5;
    }
}

/* ///////////////////// Testimonial Section Close ///////////////// */



/* ///////////////////// CTA Section Start ///////////////// */

.cta-section {
    padding: 90px 15px;
    background: linear-gradient(135deg,
            var(--clr-primary-dark),
            var(--clr-primary));
    position: relative;
    overflow: hidden;
    border-radius: 80px;
}

/* ambient glow */
.cta-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle,
            var(--clr-glass-glow),
            transparent 70%);
    top: -160px;
    right: -160px;
}

/* glass container */
.cta-wrapper {
    background: var(--clr-glass-bg);
    backdrop-filter: blur(14px);
    border-radius: 36px;
    padding: 55px;
    border: 1px solid var(--clr-glass-border);
    box-shadow: 0 35px 90px rgba(20, 3, 122, 0.45);
}

/* badge */
.cta-badge {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
}

/* text */
.cta-title {
    /* font-size: 3rem;
    font-weight: 800; */
    color: var(--clr-white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.05rem;
    color: var(--clr-off-white);
    line-height: 1.7;
    max-width: 680px;
}

/* CTA BUTTON */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 28px;
    border-radius: 80px;
    background: linear-gradient(135deg,
            var(--clr-primary-light),
            var(--clr-primary));
    color: var(--clr-white);
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(63, 45, 167, 0.45);
    transition: all 0.4s ease;
}

/* icon bubble */
.cta-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* button text */
.cta-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-btn-text small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.cta-btn-text strong {
    font-size: 1.2rem;
    letter-spacing: 0.4px;
}

/* hover */
.cta-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 35px 80px rgba(63, 45, 167, 0.6);
    color: var(--clr-white);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cta-wrapper {
        padding: 35px 25px;
        text-align: center;
    }

    .cta-btn-text {
        align-items: center;
    }
    
.cta-section {
    border-radius: 30px;
}
}



/* ///////////////////// CTA Section Close ///////////////// */



/* ///////////////////// Accreditation Section Start ///////////////// */

/* Section Shell */
.accreditation-section {
    padding: 110px 0;
    background: linear-gradient(135deg,
            var(--clr-off-white),
            var(--clr-light-gray));
}

.accreditation-wrapper {
    background: var(--clr-white);
    border-radius: 44px;
    padding: 50px 60px;
    box-shadow: 0 40px 80px rgba(63, 45, 167, 0.08);
}

/* Badge */
.accreditation-section .section-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--clr-primary);
    background: rgba(63, 45, 167, 0.1);
    margin-bottom: 16px;
}

/* Title */
.accreditation-section .section-title {
    /* font-size: 3rem;
    font-weight: 800; */
    color: var(--clr-primary-dark);
}

.accreditation-section .section-subtitle {
    max-width: 650px;
    margin: 14px auto 0;
    font-size: 16px;
    color: var(--clr-mid-gray);
}

/* Slick spacing */
.accreditation-slider .slick-slide {
    padding: 16px;
}

/* Card */
.accreditation-card {
    background: linear-gradient(145deg, #ffffff, #f4f6ff);
    border-radius: 20px;
    padding: 15px;
    /* height: 180px; */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0px 20px rgba(63, 45, 167, 0.1);
    transition: all 0.4s ease;
}

.accreditation-card img {
    max-width: 80%;
    /* max-height: 80px; */
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.35s ease;
    image-rendering: -webkit-optimize-contrast;

}

.accreditation-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0px 20px rgba(63, 45, 167, 0.1);
}

.accreditation-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* CTA Button */
.accreditation-btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    background: linear-gradient(135deg,
            var(--clr-primary),
            var(--clr-primary-light));
    color: var(--clr-white);
    box-shadow: 0 14px 35px rgba(63, 45, 167, 0.4);
    transition: all 0.35s ease;
}

.accreditation-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 20px 50px rgba(63, 45, 167, 0.45),
        0 0 20px rgba(133, 124, 255, 0.4);
    color: var(--clr-white);
}

@media (max-width: 768px) {
    .accreditation-wrapper {
        padding: 50px 25px;
        border-radius: 28px;
    }

}

/* ///////////////////// Accreditation Section Close ///////////////// */