/* ----------  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;
}
body:has(.fixed-header),
body:has(.header-design-2),
body:has(.header-design-3) {
    padding-top: 96px;
}

@media (max-width: 991px) {
    body:has(.fixed-header),
    body:has(.header-design-2),
    body:has(.header-design-3) {
        padding-top: 0;
    }
}




.whatsapp-btn {
    position: fixed;
    bottom: 60px;
    right: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Icon styling */
.whatsapp-icon {
    width: 55px;
    height: auto;
    z-index: 999 !important;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.1);
}

/* 🌊 Wave animation */
.wave {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    animation: wave-animation 2.5s infinite;
    z-index: -1;
}

.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 0.8s; }
.wave:nth-child(3) { animation-delay: 1.6s; }

@keyframes wave-animation {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 40px;
        right: 40px;
    }

    .whatsapp-icon {
        width: 45px;
    }

    .wave {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .whatsapp-icon {
        width: 40px;
    }

    .wave {
        width: 55px;
        height: 55px;
    }
}


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;
} */




/* ----------------------------------------
   DESIGN 2 (Modern Minimal)
   ---------------------------------------- */
.header-design-2 {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-design-2 .main-nav-center .nav-link {
    color: #2d3748;
    font-weight: 600;
    padding: 1rem 1.25rem;
    position: relative;
}

.header-design-2 .main-nav-center .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header-design-2 .main-nav-center .nav-link:hover::after {
    width: 60%;
}

.header-design-2 .nav-item.has-mega {
    position: static;
}

.mega-menu-modern {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 0 0 16px 16px;
}

.header-design-2 .nav-item.has-mega:hover .mega-menu-modern {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-card-modern {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.mega-card-modern:hover {
    background: #f7fafc;
    transform: translateY(-2px);
}

.mega-card-modern .card-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.mega-card-modern .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-card-modern .card-content h6 {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.mega-card-modern .card-content p {
    color: #718096;
    margin: 0;
}

/* Mobile Menu Modern */
.mobile-menu-modern .mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-modern .mobile-link-main {
    padding: 1rem;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-menu-modern .mobile-link-main:hover {
    background: #f7fafc;
}

.mobile-menu-modern .mobile-dropdown-toggle {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.mobile-menu-modern .mobile-dropdown-toggle:hover {
    background: #f7fafc;
}

.mobile-menu-modern .mobile-dropdown-toggle i {
    transition: transform 0.3s;
}

.mobile-menu-modern .mobile-dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-menu-modern .mobile-mega-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-menu-modern .mobile-mega-item:hover {
    background: #f7fafc;
}

/* Footer Design 2 */
.footer-design-2 {
    background: #1a202c;
    color: #ffffff;
}

.footer-design-2 .social-modern {
    display: flex;
    gap: 0.75rem;
}

.footer-design-2 .social-icon-modern {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-design-2 .social-icon-modern:hover {
    background: var(--clr-primary);
    transform: translateY(-2px);
}

.footer-design-2 .hover-white:hover {
    color: #ffffff !important;
}

.footer-design-2 .letter-spacing-1 {
    letter-spacing: 0.05em;
}











/* ----------------------------------------
   DESIGN 3 (Transparent Overlay)
   ---------------------------------------- */
.header-design-3 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 1rem;
}

.header-design-3 .header-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
}

/* .header-design-3 .header-logo-white {
    filter: brightness(0) invert(1);
} */

.header-design-3 .nav-bottom-bar {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.header-design-3 .dropdown-hover {
    position: static;
}

.header-design-3 .dropdown-fullwidth {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #6e5fb4d3;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 0 0 20px 20px;
    margin-top: 0.5rem;
}

.header-design-3 .dropdown-hover:hover .dropdown-fullwidth {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-card-glass {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

.mega-card-glass:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

/* Mobile Transparent */
.mobile-menu-transparent {
    background: #1a202c;
}

.mobile-menu-transparent .invert-logo {
    filter: brightness(0) invert(1);
}

/* Footer Design 3 */
.footer-design-3 {
    background: #f7fafc;
}

.footer-design-3 .hover-dark:hover {
    color: #1a202c !important;
}

/* ----------------------------------------
   RESPONSIVE UTILITIES
   ---------------------------------------- */
@media (max-width: 991px) {
    .header-design-2,
    .header-design-3 {
        position: relative;
    }
    
    .header-design-3 {
        background: #1a202c;
    }
    
    .header-design-3 .header-backdrop {
        display: none;
    }
}

/* Ensure body padding for fixed headers */


/* ///////////////////// 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-body {
    background-color: var(--clr-off-white);
    padding: 1rem;
}

.mobile-nav-accordion .accordion-button:not(.collapsed) {
    background-color: var(--clr-white);
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mobile-nav-accordion .accordion-button:not(.collapsed) i.fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-nav-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.mobile-nav-btn {
    transition: all 0.2s;
    color: var(--clr-primary-dark) !important;
}

.accordion-body.mobile-nav-body.pt-3.pb-2.px-0{
    background-color: var(--clr-light-gray) !important;
}

.mobile-nav-btn:active {
    transform: scale(0.98);
}

.mobile-card-link {
    display: block;
    transition: transform 0.2s;
}

.mobile-card-link:active {
    transform: scale(0.95);
}

.mobile-card-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 16/10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mobile-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mobile-card-link:hover .mobile-card-img {
    transform: scale(1.05);
}

.mobile-card-title {
    font-size: 0.875rem;
    line-height: 1.3;
}

.mobile-highlight-card {
    border: 1px solid rgba(0,0,0,0.05);
}

.transition-transform {
    transition: transform 0.3s ease;
}

/* Remove default accordion arrow */
.mobile-nav-accordion .accordion-button::after {
    display: none;
}

.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-bottom: 14px;
    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, #1a1a2e) 0%,
            var(--clr-primary, #16213e) 50%,
            var(--clr-primary-dark, #0f3460) 100%);
    color: var(--clr-off-white, #e8e8e8);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Animated glow background */
.premium-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(98, 75, 195, 0.3), transparent 50%),
        radial-gradient(circle at 80% 100%, rgba(74, 144, 226, 0.2), transparent 50%);
    pointer-events: none;
    animation: footerGlow 8s ease-in-out infinite alternate;
}

@keyframes footerGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Top gradient line */
.premium-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent,
        var(--clr-primary-light, #4a90e2),
        var(--clr-primary-dark, #e94560),
        var(--clr-primary-light, #4a90e2),
        transparent);
    opacity: 0.8;
}

/* ================================
   BRAND SECTION
================================ */

.footer-brand {
    position: relative;
    z-index: 1;
}

.footer-brand img {
    max-height: 65px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-top: 1.5rem;
}

/* ================================
   GRID + COLUMNS (FIXED)
================================ */

.footer-columns-wrapper {
    row-gap: 2rem;
}

.footer-column {
    position: relative;
}



/* ================================
   TYPOGRAPHY
================================ */

.footer-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* underline */
.footer-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg,
        var(--clr-primary-light, #4a90e2),
        var(--clr-primary-dark, #e94560));
    transition: width 0.3s ease;
}

.footer-column:hover .footer-title::after {
    width: 60px;
}

/* toggle icon for mobile */
.toggle-icon {
    font-size: 1.2rem;
    font-weight: bold;
    display: none;
}

/* ================================
   ADDRESS
================================ */

.footer-address {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}

.footer-address i {
    color: var(--clr-primary-light, #4a90e2);
    margin-right: 5px;
}
/* ================================
   LINKS (HOVER EFFECTS)
================================ */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
    position: relative;
    transition: all 0.3s ease;
}

/* arrow animation */
.footer-links li::before {
    content: "›";
    position: absolute;
    left: -12px;
    opacity: 0;
    color: var(--clr-primary-light, #4a90e2);
    transition: all 0.3s ease;
}

.footer-links li:hover {
    padding-left: 12px;
}

.footer-links li:hover::before {
    opacity: 1;
    left: 0;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: all 0.3s ease;
}

/* underline effect */
.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-primary-light, #4a90e2);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a i {
    color: var(--clr-primary-light, #4a90e2);
    transition: transform 0.3s ease;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* ================================
   SOCIAL ICONS (GLASS STYLE)
================================ */

.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg,
        var(--clr-primary-light, #4a90e2),
        var(--clr-primary-dark, #e94560));
    border-color: transparent;
}

/* ================================
   DIVIDER + BOTTOM
================================ */

.footer-divider {
    margin: 45px 0 25px;
    border: none;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
}

.footer-bottom a:hover {
    color: var(--clr-primary-light, #4a90e2);
}

/* ================================
   MOBILE ACCORDION (IMPORTANT)
================================ */

@media (max-width: 767px) {

    .premium-footer {
        padding: 60px 0 30px;
    }

    .footer-columns-wrapper {
        padding: 0px 20px 0px 20px;
    }
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-text {
        text-align: center;
        font-size: 0.9rem;
    }

    /* show toggle icon */
    .toggle-icon {
        display: inline-block;
    }

    /* accordion closed state */
    .footer-column .footer-links,
    .footer-column .footer-address,
    .footer-column .footer-custom-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    /* open state */
    .footer-column.active .footer-links,
    .footer-column.active .footer-address,
    .footer-column.active .footer-custom-content {
        max-height: 500px;
    }

    .footer-column {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1.2rem 0;
    }

    .footer-column:last-child {
        border-bottom: none;
    }

    /* disable hover shift on mobile */
    .footer-links li:hover {
        padding-left: 0;
    }

    .footer-links li::before {
        display: none;
    }

    .footer-links a:hover i {
        transform: none;
    }
}

/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

@media (max-width: 991.98px) {

    .premium-footer {
        padding: 60px 0 30px;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-text {
        text-align: center;
        font-size: 0.9rem;
    }

    /* Remove toggle icon completely */
    .toggle-icon {
        display: none !important;
    }

    /* Remove accordion behavior - always show content */
    .footer-column .footer-links,
    .footer-column .footer-address,
    .footer-column .footer-custom-content {
        max-height: none !important;
        overflow: visible !important;
    }

    /* Add visual separation between brand and columns */
    .col-12.col-lg-7 {
        margin-top: 1rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* 2 columns per row styling */
    .footer-column {
        border-bottom: none; /* Remove accordion borders */
        padding: 0.5rem 0;
    }

    /* Disable hover effects that don't work on touch */
    .footer-links li:hover {
        padding-left: 0;
    }

    .footer-links li::before {
        display: none;
    }

    .footer-links a:hover i {
        transform: none;
    }
}

/* Small mobile adjustments */
@media (max-width: 575.98px) {
    .footer-brand img {
        max-height: 50px;
    }
    
    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
}

/* ================================
   LG AND UP (ORIGINAL DESIGN PRESERVED)
================================ */

@media (min-width: 992px) {
    /* Reset any mobile overrides */
    .col-12.col-lg-7 {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }
    
    .footer-column {
        padding: 0;
    }
    
    /* Re-enable hover effects */
    .footer-links li:hover {
        padding-left: 12px;
    }

    .footer-links li::before {
        display: block;
    }

    .footer-links a:hover i {
        transform: translateX(3px);
    }
}
/* ///////////////////// 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 ///////////////// */




























/* ///////////////////////////////////////////////////////////////////////////////////////////////// */

/* ///////////////////////////////////////////////////////////////////////////////////////////////// */