body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: linear-gradient(100deg, #010224, #000000) !important;
    color: white !important;


}


/* theme toggle */

#theme-toggle {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 20px;
    padding: 5px 12px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, background-color 0.4s ease;
    z-index: 999;
}

#theme-toggle:hover {
    background-color: #f1f1f1;
}

#theme-toggle i:active {
    transform: translateY(-50%) rotate(180deg);
}

#theme-icon {
    transition: transform 0.5s ease, color 0.5s ease;
    color: #f39c12;
    /* moon color */
}

.dark-theme {
    background: white !important;
    color: black !important;
}

.dark-theme #theme-icon {
    color: #f1c40f;
}


.glimpse {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #00bfff, #1e1e2f);
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 9999;
    transition: transform 0.05s ease-out, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.glimpse.spread {
    width: 50px;
    height: 50px;
    opacity: 0.4;
}



/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: #222;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* Paragraphs */
p {
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Links */
a {
    text-decoration: none;
    color: #007BFF;
    transition: color 0.2s ease;
}

a:hover {
    color: #0056b3;
}

/* Buttons */
.btn-primary {
    background-color: #007BFF;

    padding: 10px 20px;
    border: none;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}


/* navbarheader */
.nexis-header-bar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px 10px 40px;
    transition: all 0.3s ease;
    z-index: 1000;
    background: transparent;
    display: flex;
    justify-content: center;
    background-color: #000e1b;
}

.nexis-header-bar.nexis-visible {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nexis-header-bar.nexis-hide {
    transform: translateY(-100%);
}

.nexis-container {
    width: 100%;
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 65px;
}

.nexis-logo-text img {
    width: 170px;
}

.nexis-logo-text1 img {
    width: 150px;
}

@media only screen and (max-width:768px) {
    .nexis-logo-text1 img {
        display: none;
    }
}

.nexis-nav {
    display: flex;
}

.nexis-nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-bottom: 5px;
}

.nexis-nav-list li a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    color: white;
}

.nexis-nav-list .active {
    color: #00d2ff;
}

.nexis-nav-list li a:hover {
    color: #00d2ff;
}

.nexis-start-now-btn {
    padding: 5px 20px;
    background: transparent;
    border: 2px solid #00d2ff;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.nexis-start-now-btn:hover {
    background: #00d2ff;
    color: #000;
}

@media only screen and (max-width:768px) {
    .nexis-start-now-btn {
        display: none;
    }
}

.nexis-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: 20px;
}

.nexis-bar {
    width: 25px;
    height: 3px;
    background-color: #00d2ff;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nexis-nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .nexis-nav.open {
        display: flex;
    }

    .nexis-nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .nexis-menu-toggle {
        display: flex;
    }
}

/* Base dropdown */
.nexis-dropdown {
    position: relative;
}

.nexis-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    cursor: pointer;
}

.nexis-dropdown-icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-top: 2px;
    margin-left: 3px;
}

/* First-level dropdown menu */
.nexis-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #061c21;
    min-width: 180px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 99;
}

.nexis-dropdown:hover>.nexis-dropdown-menu {
    display: block;
}

.nexis-dropdown-menu li {
    list-style: none;
    position: relative;
    /* important for sub menus */
}

.nexis-dropdown-menu li a {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.nexis-dropdown-menu li a:hover {
    background-color: #0e2e34;
}

/* Active dropdown with animation */
.nexis-dropdown.open .nexis-dropdown-menu {
    display: flex;
    animation: fadeInDropdown 0.3s ease forwards;
}

.nexis-dropdown.open .nexis-dropdown-icon {
    transform: rotate(220deg);
}

/* Second-level dropdown (sub-dropdown) */
.nexis-sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #061c21;
    min-width: 180px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 100;
}

.nexis-dropdown-menu li:hover>.nexis-sub-dropdown-menu {
    display: flex;
    animation: fadeInDropdown 0.3s ease forwards;
}

/* Third-level dropdown (sub-sub dropdown) */
.nexis-sub-sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #061c21;
    min-width: 180px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 101;
}

.nexis-sub-dropdown-menu li:hover>.nexis-sub-sub-dropdown-menu {
    display: flex;
    animation: fadeInDropdown 0.3s ease forwards;
}

/* Animation */
@keyframes fadeInDropdown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General responsive adjustments */
@media (max-width: 768px) {

    .nexis-dropdown-menu,
    .nexis-sub-dropdown-menu,
    .nexis-sub-sub-dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
    }

    .nexis-dropdown,
    .nexis-dropdown-menu li,
    .nexis-sub-dropdown-menu li,
    .nexis-sub-sub-dropdown-menu li {
        width: 100%;
    }

    .nexis-dropdown-menu,
    .nexis-sub-dropdown-menu,
    .nexis-sub-sub-dropdown-menu {
        display: none;
        flex-direction: column;
    }

    /* Show dropdown on click — controlled by JavaScript */
    .nexis-dropdown.open .nexis-dropdown-menu,
    .nexis-dropdown-menu li.open>.nexis-sub-dropdown-menu,
    .nexis-sub-dropdown-menu li.open>.nexis-sub-sub-dropdown-menu {
        display: flex;
    }

    .nexis-dropdown-toggle {
        justify-content: space-between;
        padding: 10px;
    }

    .nexis-dropdown-menu li a {
        padding: 12px 20px;
        font-size: 18px;
    }

    .nexis-dropdown-icon {
        margin-left: auto;
        transform: rotate(45deg);
    }
}

/* Extra adjustments for very small screens */
@media (max-width: 480px) {
    .nexis-dropdown-menu li a {
        padding: 14px 16px;
        font-size: 16px;
    }
}


/* 
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: end;
    text-align: left;
    min-height: 90vh;
    background: url('images/new/banner.gif') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -60px 60px -10px #06002198;
} */

/* Add overlay */
/* .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.422);
    
    z-index: 1;
} */

/* Ensure content appears above overlay */
/* .hero-section>* {
    position: relative;
    z-index: 2;
} */
/* Base Styles */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 90px;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    padding-bottom: 38%;
}

.hero-slide,
.hero-slide-m {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}

.hero-slide.active,
.hero-slide-m.active {
    opacity: 1;
    z-index: 1;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0);
    color: #ffffff;
    border: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease;
    border-radius: 50%;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.646);
    padding: 2px 20px 5px 16px;
}

.hero-arrow.left {
    left: 20px;
}

.hero-arrow.right {
    right: 20px;
}

/* Hide mobile on desktop and vice versa */
.desktop-slider {
    display: block;
}

.mobile-sliders {
    display: none;
}

/* Mobile-specific overrides */
@media screen and (max-width: 768px) {
    .desktop-slider {
        display: none;
    }

    .mobile-sliders {
        display: block;
    }

    .mobile-track {
        padding-bottom: 70%;
        /* Taller banners on mobile */
    }

    .mobile-arrow {
        font-size: 24px;
    }

    .mobile-arrow.left {
        left: 10px;
    }

    .mobile-arrow.right {
        right: 10px;
    }
}



.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(157, 0, 255, 0.4), transparent 20%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-glow {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at center, rgba(157, 0, 255, 0.4), transparent 20%);
    opacity: 0;
    transition: opacity 0.3s ease;

}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    animation: fadeIn 2s ease forwards;
}

.hero-content {
    position: relative;
    padding: 2rem;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    min-height: 100vh;
    animation: slideUp 1.5s ease-out forwards;
    opacity: 0;
    align-content: end;

}

.hero-title {
    font-size: 3.6rem;
    font-weight: bold;
    line-height: 1.2;
    animation: fadeInText 2s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-title span {
    display: block;
}

.video-thumbnail {
    width: 300px;
    height: auto;
    border-radius: 20px 0 20px 0;
    margin: 2rem 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: zoomIn 1s ease 1.5s forwards;
    opacity: 0;
}

.video-thumbnail img {
    width: 100%;
    border-radius: inherit;
    display: block;
}

.video-thumbnail::after {
    content: '▶';
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 0.5rem 0.8rem;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 550px;
    line-height: 1.6;
    animation: fadeInText 1.8s ease 2s forwards;
    opacity: 0;
    margin-bottom: 30px;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .video-thumbnail {
        width: 100%;
    }
}


/* Section - dark bg, hidden scroll */
.ai-gallery-section-heading {
    padding: 100px 100px 60px 100px;
}

.ai-gallery-section-title {
    font-size: 40px;
    font-weight: 700;
    margin: 10px 0;
    text-align: center;
}

@media only screen and (max-width:768px) {
    .ai-gallery-section-heading {
        padding: 30px 10px;
    }

    .ai-gallery-section-title {
        font-size: 2rem;
    }
}

.ai-gallery-section-heading p {
    text-align: center;
    color: #ccc;

}

.ai-gallery-section {
    background-color: transparent;
    padding: 30px 0;
    overflow: hidden;
    box-shadow:
        inset 0 60px 60px -10px #030410,
        inset 0 -60px 60px -10px #050718;
}

@media only screen and (max-width:768px) {
    .ai-gallery-section {
        padding: 10px 0;
    }
}

.ai-gallery-section::-webkit-scrollbar {
    display: none;
}

.ai-gallery-scroll-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}


.ai-gallery-scroll-wrapper::-webkit-scrollbar {
    display: none;
}


.ai-gallery-container {
    display: flex;
    gap: 30px;
}


@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ai-gallery-scroll-wrapper:hover .ai-gallery-container {
    animation-play-state: paused;
}

.ai-gallery-section {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Scroll Container */
.ai-gallery-container {
    display: flex;
    gap: 30px;
    padding: 20px;
    width: max-content;
    align-items: center;
}

/* Card Styles */
.ai-gallery-card {
    position: relative;
    flex: 0 0 auto;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

/* Image */
.ai-gallery-card img {
    height: 220px;
    width: auto;
    border-radius: 10px;
    object-fit: cover;
}

.ai-gallery-card:nth-child(odd) img {
    height: 250px;
    object-fit: cover;
}

/* Even child images */
.ai-gallery-card:nth-child(even) img {
    height: 300px;
    object-fit: cover;
}

@media only screen and (max-width:768px) {
    .ai-gallery-card:nth-child(odd) img {
        height: 150px;
        object-fit: cover;
    }

    /* Even child images */
    .ai-gallery-card:nth-child(even) img {
        height: 150px;
        object-fit: cover;
    }
}

/* Hover purple glow effect */
.ai-gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(157, 0, 255, 0.68), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.ai-gallery-card:hover::before {
    opacity: 1;
}

.ai-gallery-card:hover img {
    transform: scale(1.05);
}

.glow-counter-section {
    padding: 60px 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;


}

.glow-counter-section.visible {
    opacity: 1;
    transform: translateY(0);
    box-shadow: inset 0 60px 60px -10px #050718;
}

.glow-counter-wrapper {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
    text-align: center;
}

@media only screen and (max-width:768px) {
    .glow-counter-wrapper {
        flex: 0 0 calc(50% - 50px);
        box-sizing: border-box;
        gap: 30px;
    }

}

.glow-counter-card {
    transition: transform 0.3s ease;
}

.glow-counter-card:hover {
    transform: translateY(-5px);
}

.glow-counter-card h2 {
    font-size: 26px;
    color: #00D0FF;
    margin-bottom: 8px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.glow-counter-card p {
    font-size: 16px;
    margin: 0;
    letter-spacing: 0.5px;
}


/* section 4 */
.ai-working-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10%;
    background: url('images/aboutus/banner3.gif') no-repeat left center;
    background-size: cover;
    background-blend-mode: overlay;
    position: relative;
    height: 550px;
    margin: 30px 0;
}

@media only screen and (max-width:768px) {
    .ai-working-section {
        padding: 0;
        background: none;
    }
}

/* Content Container */
.ai-working-content {
    max-width: 550px;
    animation: ai-working-fadeInUp 1s ease-in-out;
    background-color: #000000d6;
    padding: 40px;
    border-radius: 0 40px 0 40px;

}

@media only screen and (max-width:768px) {
    .ai-working-content {
        padding: 40px 20px;
    }
}

/* Tag Text */
.ai-working-tag {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #61dafb;
    margin-bottom: 10px;
}

/* Title */
.ai-working-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Description */
.ai-working-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #ccc;
}

/* Call To Action Button */
.ai-working-button {
    background: transparent;
    border: 1px solid white;
    padding: 12px 24px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #61dafb;
    color: white;
    text-decoration: none;
}

.ai-working-button:hover {
    background: #61dafb;
    box-shadow: 0 0 20px #61dafb, 0 0 30px #61dafb;
    color: black;
}

/* Animations */
@keyframes ai-working-fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes ai-working-bgZoom {
    0% {
        background-size: 100% auto;
    }

    100% {
        background-size: 105% auto;
    }
}



.ai-step-section {
    padding: 80px 10%;
    background: radial-gradient(circle at center, #061727, #01010a);

    font-family: 'Segoe UI', sans-serif;
}

.ai-step-container {
    max-width: 700px;
    margin: auto;
}

.ai-step-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.ai-step-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 0 10px rgba(97, 218, 251, 0.1);
}

.ai-step-toggle {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    color: #61dafb;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.ai-step-toggle:hover {
    background: rgba(97, 218, 251, 0.05);
}

.ai-step-content {
    max-height: 0;
    opacity: 0;
    padding: 0 20px;
    overflow: hidden;

    color: #ddd;
    transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.3s ease;
}

.ai-step-item.active .ai-step-content {
    max-height: 200px;
    opacity: 1;
    padding: 15px 20px 20px;
}

.ai-hero-section {
    padding: 100px 5%;
    font-family: 'Segoe UI', sans-serif;
}

.ai-hero-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

.ai-hero-text {
    flex: 1 1 45%;
}

.ai-hero-text p {
    color: #ccc;
}

.ai-step-label {
    color: #00d0ff;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.ai-hero-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
}

@media only screen and (max-width:768px) {
    .ai-hero-title {
        font-size: 28px;
    }
}

.ai-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ai-accordion-header {
    cursor: pointer;
    font-size: 1.15rem;
    padding: 12px 16px;

    border-radius: 8px;
    border-left: 4px solid #00d0ff;
    transition: background 0.3s ease;
}

.ai-accordion-header:hover {
    background-color: #152436;
}

.ai-accordion-header.active {

    color: #00d0ff;
}

.ai-accordion-body {
    max-height: 0;
    overflow: hidden;

    padding: 0 16px;
    border-left: 2px solid #00d0ff;
    border-radius: 0 0 8px 8px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.ai-accordion-body.open {
    padding: 12px 16px;
    max-height: 200px;
}

.ai-hero-images {
    position: relative;
    flex: 1 1 45%;
}

.ai-img {
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.ai-img-main {
    width: 100%;
    max-width: 350px;
    position: relative;
    z-index: 2;

}

.ai-img-bottom {
    position: absolute;
    bottom: -35px;
    left: 35%;
    width: 250px;
    z-index: 4;
}

.ai-img-top-right {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 210px;
    z-index: 3;
}

@media only screen and (max-width:768px) {
    .ai-img-main {
        max-width: 200px;
        position: relative;
        z-index: 2;

    }

    .ai-img-bottom {
        position: absolute;
        bottom: -35px;
        left: 35%;
        width: 150px;
        z-index: 4;
    }

    .ai-img-top-right {
        position: absolute;
        top: -40px;
        right: -10px;
        width: 140px;
        z-index: 3;
    }

}

.ai-img:hover {
    transform: scale(1.03);
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-hero-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.ai-hero-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.ai-img {
    opacity: 0;
    transform: translateY(30px);
}

/* Triggered when in view */
.ai-img.visible {
    animation: fadeInUp 1s ease forwards;
}

/* Delay for each image */
.ai-img-main.visible {
    animation-delay: 0.2s;
}

.ai-img-bottom.visible {
    animation-delay: 0.8s;
}

.ai-img-top-right.visible {
    animation-delay: 1.4s;
}


.expert-marquee-section {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background-color: #0000003f;
}

.expert-marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: expertScrollLeft 15s linear infinite;
    font-size: 64px;
    font-weight: 700;
}

@media only screen and (max-width:768px) {
    .expert-marquee-track {

        font-size: 30px;
        font-weight: 700;
    }
}

.expert-marquee-text {
    display: inline-block;
    padding-right: 80px;
    color: rgba(255, 255, 255, 0.2);
}



@keyframes expertScrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.image-examples-section {

    padding: 80px 20px;
}

.image-examples-container {
    max-width: 1200px;
    margin: 0 auto;
}

.image-examples-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.image-examples-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    /* background: linear-gradient(to right, #fff, #a580ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.image-examples-title span {
    display: block;
    /* background: linear-gradient(to right, #a580ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.image-examples-button {
    margin-top: 20px;
    display: inline-block;
    background-color: #fff;
    color: #111;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.image-examples-button:hover {
    background-color: #a580ff;
    color: #fff;
}

.image-examples-description {
    flex: 1 1 300px;
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.6;
    color: #ccc;
}

.image-examples-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.image-card {
    flex: 1 1 calc(33.333% - 20px);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .image-examples-title {
        font-size: 2.5rem;
    }

    .image-examples-grid {
        flex-direction: column;
    }

    .image-card {
        flex: 1 1 100%;
    }
}

.aiben-section {
    padding: 50px;
    text-align: center;

}

.aiben-container {
    max-width: 1200px;
    margin: 0 auto;
}

.aiben-subheading {
    text-transform: uppercase;
    color: #00e0ff;
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-align: start;
}

.aiben-heading {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 30px;
    width: 70%;
    text-align: start;
}

.aiben-button {
    background-color: #4be9f2;
    border: none;
    color: #000000;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 50px;
}

.aiben-button:hover {
    transform: scale(1.05);
}

.aiben-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.aiben-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 16px;
    padding: 30px 20px;
    flex: 1 1 calc(25% - 30px);
    /* 4 cards per row with spacing */
    max-width: calc(25% - 30px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .aiben-card {
        flex: 1 1 calc(50% - 30px);
        /* 2 per row on tablets */
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 600px) {
    .aiben-card {
        flex: 1 1 100%;
        /* 1 per row on mobile */
        max-width: 100%;
    }
}

.aiben-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(75, 233, 242, 0.2);
}

.aiben-card-title {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;

}

.aiben-card-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.aiben-card-label {
    font-size: 16px;
    text-align: start;
}

/* Fade-in animation */
.aiben-visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-in-out;
}

.digimex-section {
    padding: 80px 20px;
    text-align: center;
}

.digimex-header {
    max-width: 900px;
    margin: 0 auto 40px;
}

.digimex-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.digimex-description {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.digimex-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 50px auto;
    max-width: 1000px;
}

.digimex-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.digimex-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(75, 233, 242, 0.4);
}

.digimex-button-container {
    margin-top: 30px;
}

.digimex-button {
    background: #39e6f3;
    color: #000;
    font-size: 16px;
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.digimex-button:hover {
    background: #2ad1dd;
    transform: translateY(-2px);
}

.ainews-section {
    padding: 80px 20px 20px 20px;
    max-width: 1200px;
    margin: auto;
}

.ainews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ainews-subtitle {
    color: #00D0FF;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

.ainews-title {
    font-size: 40px;
    margin-top: 10px;
    font-weight: 700;

}

@media only screen and (max-width:768px) {

    .ainews-title {
        font-size: 28px;
        margin-top: 10px;

    }
}

.ainews-button {
    background: transparent;
    border: 2px solid #ffffff;
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.ainews-button:hover {
    background-color: #42e3e9;
    color: #000;
    transform: scale(1.05);
}

.ainews-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.ainews-card {
    background-color: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: 0.6s ease forwards;
    border: 1px solid rgba(209, 209, 209, 0.381);
}

.ainews-card:nth-child(2) {
    animation-delay: 0.2s;
}

.ainews-card:nth-child(3) {
    animation-delay: 0.4s;
}

.ainews-card:nth-child(4) {
    animation-delay: 0.6s;
}

.ainews-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.ainews-card:nth-child(1) {
    transition-delay: 0.1s;
}

.ainews-card:nth-child(2) {
    transition-delay: 0.3s;
}

.ainews-card:nth-child(3) {
    transition-delay: 0.5s;
}

.ainews-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(66, 227, 233, 0.3);
}

.ainews-card .headline-para p {
    font-size: 14px;

    padding: 0 20px;

}

.ainews-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.ainews-date {
    color: #42e3e9;
    font-size: 13px;
    margin: 15px 20px 0;
    display: block;
}

.ainews-category {
    font-size: 12px;
    color: #aaa;
    margin: 5px 20px;
    text-transform: uppercase;
}

.ainews-headline {
    font-size: 18px;
    margin: 10px 20px;
    font-weight: bold;

}

.ainews-readmore {
    display: inline-block;
    margin: 10px 20px 20px;
    font-size: 14px;
    color: #42e3e9;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-right: 18px;
}

.ainews-readmore::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.ainews-readmore::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: #42e3e9;
    transition: width 0.3s ease;
}

.ainews-readmore:hover {
    color: #ffffff;
}

.ainews-readmore:hover::before {
    width: 100%;
}

.ainews-readmore:hover::after {
    transform: translate(5px, -50%);
}


/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive padding */
@media (max-width: 600px) {
    .ainews-header {
        flex-direction: row;
        align-items: flex-start;
    }

    .ainews-button {
        margin-top: 20px;
    }
}


.section-ai-services {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.intro-ai-content {
    animation: fadeUp 0.6s ease forwards;
}


.intro-tagline {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #28d8ff;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.intro-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: white;
}

.btn-explore-services {
    display: inline-block;
    padding: 12px 28px;
    border: 1.5px solid #ffffff;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-explore-services:hover {
    background-color: #28d8ff;
    color: #0f1218;
    border-color: #28d8ff;
}

@media only screen and (max-width:768px) {
    .intro-ai-content {
        display: flex;
        justify-content: space-between;
    }

    .btn-explore-services {
        padding: 8px 15px;
        height: 45px;
    }
}

.grid-service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-tile-unique {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeUp 0.8s ease;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;

}

.feature-tile-unique.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-tile-unique:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-tile-unique:nth-child(2) {
    transition-delay: 0.3s;
}

.feature-tile-unique:nth-child(3) {
    transition-delay: 0.5s;
}

.feature-tile-unique:nth-child(4) {
    transition-delay: 0.7s;
}



.icon-placeholder {
    font-size: 30px;
    color: #28d8ff;
}

.feature-title {
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.feature-description {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .section-ai-services {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-heading {
        font-size: 28px;
    }

    .grid-service-features {
        gap: 30px;
    }
}

.unique-ai-section {
    padding: 80px 20px;
    position: relative;
}

.unique-ai-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.unique-ai-sub {
    color: #38bdf8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.unique-ai-button {
    background: #38bdf8;
    border: none;
    color: #000;
    padding: 10px 25px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.unique-ai-button:hover {
    transform: scale(1.05);
}

.unique-card-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.unique-hover-card {
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 20px;
    width: 280px;
    transition: all 0.4s ease;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.unique-hover-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.unique-hover-card:nth-child(1) {
    transition-delay: 0.1s;
}

.unique-hover-card:nth-child(2) {
    transition-delay: 0.3s;
}

.unique-hover-card:nth-child(3) {
    transition-delay: 0.5s;
}

.unique-hover-card:nth-child(4) {
    transition-delay: 0.7s;
}


.unique-hover-card:hover {
    background: rgba(56, 189, 248, 0.08);
    transform: translateY(-5px);
}

.unique-hover-card h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 20px;
    min-height: 30px;
}

.unique-hover-card small {
    font-size: 0.75rem;
    color: #94a3b8;
}

.unique-readmore {
    position: absolute;
    background: white;
    color: black;
    padding: 5px 12px;
    font-size: 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: top 0.1s, left 0.1s;
    opacity: 0;
    z-index: 100;

}

.unique-hover-card:hover .unique-readmore {
    opacity: 1;
    z-index: 1000;

}



/* --- Fixed display toggle styles --- */




#chatbot-message {
    display: block;
    /* default */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#chatbot-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Hide initially */
#chatbot-window {
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

/* Show window */
#chatbot-window.visible {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

#chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    flex-direction: row-reverse;
}

/* Chatbot Button */
#chatbot-btn {
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: 1.5s ease-in-out infinite alternate, bounce 2s infinite;
}

#chatbot-btn {
    box-shadow: 5px 3px white;
}

#chatbot-btn:hover {
    transform: scale(1.1);
}

#chatbot-message {
    background: #ffffff;
    color: rgb(0, 0, 0);
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 20px;
    white-space: nowrap;
    position: relative;
    display: none;
    opacity: 0;
    transform: scale(0.8);
    transform-origin: right center;
    /* makes it pop from the icon */
}

/* Bubble tail */
#chatbot-message::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #ffffff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Keyframes for opening */
@keyframes bubbleOpen {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
    }

    60% {
        transform: scale(1.05) translateY(-2px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Active state */
#chatbot-message.show {
    display: inline-block;
    animation: bubbleOpen 0.5s ease forwards;
}


/* Glow animation */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
    }

    100% {
        box-shadow: 0 0 25px rgba(74, 144, 226, 0.8);
    }
}



#chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 320px;
    height: 400px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 9999;
}

#chatbot-window.visible {
    transform: scale(1);
    opacity: 1;
}

.chatbot-header {
    background-color: #4A90E2;
    color: white;
    padding: 10px 15px 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.chatbot-header h3 {
    font-size: 20px;
}

.chatbot-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #f7f9fb;
}

.chatbot-input {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 10px;
}

.chatbot-input input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
}

.chatbot-input button {
    margin-left: 10px;
    padding: 8px 14px;
    border: none;
    background-color: #4A90E2;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chatbot-input button:hover {
    background-color: #357ABD;
}

.bot-message,
.user-message {
    padding: 4px 12px;
    margin: 6px 0;
    border-radius: 12px;
    max-width: 80%;
    animation: fadeInUp 0.5s ease;
    display: inline-block;
    clear: both;
    font-size: 12px;
}

.bot-message {
    background-color: #e0e0e0;
    color: #000;
    align-self: flex-start;
    float: left;
}

.user-message {
    background-color: #1c8b18;
    color: white;
    align-self: flex-end;
    float: right;
}

/* Clear floats */
.chatbot-body::after {
    content: "";
    display: table;
    clear: both;
}

.typing::after {
    content: '...';
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        content: '';
    }

    33% {
        content: '.';
    }

    66% {
        content: '..';
    }

    100% {
        content: '...';
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}


/* footer */

.ft-hub-footer {
    background-color: black;
    color: white;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.ft-hub-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.ft-hub-footer.visible .ft-hub-container {
    opacity: 1;
    transform: translateY(0);
}

.ft-hub-column {
    flex: 1 1 22%;
    min-width: 250px;
}

.ft-hub-column img {
    width: 85%;
    background-color: white;
    border-radius: 10px;
    padding: 5px;
}

.ft-hub-column p span {
    color: #0A70B0;
    font-size: 20px;
}

.ft-hub-column p strong i {
    margin-right: 8px;
}

.ft-hub-column p a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease, transform 0.3s ease;

}

.ft-hub-column h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.ft-hub-column h3 {
    font-size: 20px;
    color: #00c3ff;
}

.ft-hub-copyright p a {
    text-decoration: none;
    color: grey;
}

.ft-hub-copyright p a:hover {
    color: aqua;
}

.ft-hub-column ul {
    list-style-type: disc;
    padding-left: 18px;
}

.ft-hub-column ul li {
    list-style: none;
}

.ft-hub-column ul li a {
    margin-bottom: 10px;
    color: white;
    line-height: 1.6;
    list-style: none;
    text-decoration: none;
}

.ft-hub-column ul li a:hover {
    color: #00e0ff;

}

.ft-hub-apps img {
    width: 100px;
    margin-right: 10px;
    margin-top: 20px;
}

.ft-hub-subscribe {
    display: flex;
    margin: 20px 0;
}




.ft-hub-social-icons {
    margin-top: 20px;
}

.ft-hub-social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #ccc;
    transition: color 0.3s ease, transform 0.3s ease;
}

.ft-hub-social-icons a:hover {
    color: #00e0ff;
    transform: translateY(-3px);
}

.ft-hub-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.ft-hub-footer .ft-hub-container {
    border-bottom: 1px solid #222;
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.ft-hub-footer p {
    margin: 5px;
    padding-bottom: 5px;

}

.ft-hub-copyright {
    text-align: center;
    font-size: 14px;
    color: #888;
}


/* Responsive */
@media (max-width: 768px) {
    .ft-hub-container {
        flex-direction: column;
    }

    .ft-hub-subscribe {
        flex-direction: column;
    }

    .ft-hub-subscribe input,
    .ft-hub-subscribe button {
        border-radius: 8px;
        width: 100%;
        margin-bottom: 10px;
    }

    .ft-hub-payments img {
        margin-bottom: 10px;
    }
}

/* testinmonial */
.testimonial-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.testimonial-header h2 {
    font-size: 40px;
    font-weight: 700;
}

.testimonial-header p {
    color: grey;
}

.testimonial-image {
    flex: 1;
    max-width: 250px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    align-items: center;
    justify-items: center;
}

.testimonial-image img {
    text-align: center;
    width: 80%;
    display: block;
    border-radius: 10px;
    border-radius: 50%;
}

.testimonial-content {
    flex: 1;
    color: #ffffff;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-quote {
    font-size: 48px;
    color: #2cd4f6;
    margin-bottom: 10px;
}

.testimonial-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #cfd3dc;
}

.testimonial-author {
    font-weight: bold;
    font-size: 18px;
}

.testimonial-role {
    color: #2cd4f6;
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-nav button {
    background: none;
    border: 2px solid #fff;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav button:hover {
    background-color: #2cd4f6;
    color: #000;
}

@media (max-width: 768px) {
    .testimonial-section {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-image,
    .testimonial-content {
        max-width: 100%;
    }
}

.header-banner-section {
    height: 70vh;
    align-content: center;
    background-color: black;
    color: white;
    margin-top: 100px;
}

.header-banner-section .header-body-content {
    text-align: center;
}

.header-banner-section .header-body-content h1 {
    font-size: 40px;
    font-weight: 600;
}

.header-banner-section .header-body-content h6 a {
    font-size: 22px;
    text-decoration: none;
    font-weight: 500;
    color: white;
    margin: 0 5px;
}

.support-center-slider {
    max-width: 1200px;
    margin: auto;
    padding: 60px 0;
}

@media only screen and (max-width:768px) {
    .support-center-slider {
        padding: 10px;
    }

    .header-banner-section {
        height: 50vh;
    }

    .header-banner-section .header-body-content h1 {
        font-size: 22px;

    }

    .header-banner-section .header-body-content h6 a {
        font-size: 12px;
    }

    .header-body-content h6 span i {
        font-size: 12px;
    }
}

.support-center-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.support-center-subtitle {
    color: #2ecdfd;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.support-center-title {
    font-size: 40px;
    font-weight: bold;
    margin: 10px 0;
    flex: 1 1 100%;
}

@media only screen and (max-width:768px) {
    .support-center-title {
        font-size: 30px;
    }
}

.support-center-view-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.support-center-view-btn:hover {
    background-color: #2ecdfd;
    border-color: #2ecdfd;
    color: #000;
}

.support-center-carousel-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 20px;
    padding-top: 30px;
}

.support-center-carousel-scroll::-webkit-scrollbar {
    display: none;
}

.support-center-slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 400px;
    margin-right: 30px;
    overflow: hidden;
    transition: transform 0.5s ease;
}


.support-center-slide:hover {
    transform: translateY(-8px);
    opacity: 1;
    box-shadow: 2px 2px 15px #61dafba8;
}

.support-center-slide {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.support-center-slide.in-view {
    opacity: 1;
    transform: translateY(0);
}

.support-center-slide img {
    width: 100%;

    height: 75%;
    object-fit: cover;
}

.support-center-date {
    background-color: #2ecdfd;
    color: #000;
    padding: 4px 10px;
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    border-radius: 4px;
}

.support-center-category {
    font-size: 13px;
    color: #aaa;
    margin-top: 10px;
}

.support-center-heading {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    color: white;
}

.support-center-readmore {
    color: #2ecdfd;
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    float: bottom;
}

.support-center-readmore span {
    color: white;
}

.support-center-pagination {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

@media only screen and (max-width:768px) {
    .support-center-slide {
        width: 220px;
        margin-right: 15px;
    }

    .support-center-slide .p-3 {
        padding: 5px !important;


    }

    .support-center-heading {
        font-size: 14px;
    }
}


.support-center-pagination .dot {
    height: 8px;
    width: 8px;
    margin: 0 4px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
    cursor: pointer;
}

.support-center-pagination .dot.active {
    background-color: #2ecdfd;
}



.brand-slider-unique {
    padding: 40px 0 10px 0;
    background: transparent;
    overflow: hidden;
    position: relative;

}

.brand-title {
    font-size: 40px;
    font-weight: bold;
    margin: 10px 0;
    flex: 1 1 100%;
    margin-bottom: 30px;
    text-align: center;
}

.brand-track-wrapper {
    overflow: hidden;
    width: 100%;
    background-color: #18181f4f;
}

.brand-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll-left 30s linear infinite;

}


.brand-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease, filter 0.3s ease;
    padding-top: 20px;
}

@media only screen and (max-width:768px) {
    .brand-track {
        gap: 20px;
    }
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    /* filter: grayscale(100%) brightness(1.3); */
    transition: transform 0.4s ease, filter 0.4s ease;
}

.brand-logo:hover img {
    transform: scale(1.15) rotate(5deg);
    /* filter: grayscale(0%) brightness(1); */
}

/* ✅ Correct seamless scroll keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-track-wrapper:hover .brand-track {
    animation-play-state: paused;
}