/* card horizontal scrolling */
/* Hide scrollbar */
.scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
    cursor: grab; /* default cursor */
    user-select: none; /* prevent text selection */
}
.scroll-container:active {
    cursor: grabbing; /* dragging cursor */
}
.scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Dots */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 8px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active {
    background: #ff6900;
}

.fw-300 {
    font-weight: 300 !important;
}
.fw-400 {
    font-weight: 400 !important;
}
.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fs-6 {
    font-size: 1rem !important;
}

.fs-3rem {
    font-size: 3rem !important;
}

.number-circle {
    background-color: #09293b;
    width: 80px;
    height: 80px;
    font-size: 3rem;
    line-height: 1;
}

@media (max-width: 576px) {
    /* for mobile devices */
    .number-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

.light-primary-bg {
    background-color: rgba(255, 105, 0, 0.05); /* #FF6900 at 5% opacity */
}

.splide__slide {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important; /* <-- This is the key fix */
}

.splide__track {
    background: none !important;
    background-color: transparent !important;
}



/* NEW INDEX CSS STARTS HERE */
body,
body *:not(html):not(style):not(br):not(tr):not(code):not(i) {
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif !important; */
    position: relative;
}


/* SECTION 2 CARDS STYLING */
/* Card Container */
.storage-card {
    width: 20rem;
    height: 30rem !important;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.25s ease;
}

.storage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

/* Image */
.storage-img {
    height: 200px;
    object-fit: cover;
}

/* Badge */
.storage-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0.5rem 1.2rem;
    /* font-weight: 600; */
    border-radius: 50px;
    /* font-size: 0.9rem; */
    letter-spacing: 0.5px;
}

/* Title */
.storage-title {
    font-size: 2.4rem;
}

/* Description */
.storage-description {
    line-height: 1.7;
    color: #5e7285 !important;
}

/* Button */
.storage-btn {
    padding: 0.9rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 16px;
    transition: all 0.2s ease;
}

.storage-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(255, 153, 0, 0.3);
}

/* Bouncing Icon Animation */
.chevron-bounce {
    display: inline-block;
    animation: chevronBounce 1.8s infinite;
}

@keyframes chevronBounce {
    0%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(4px);
    }
    50% {
        transform: translateY(0);
    }
    70% {
        transform: translateY(2px);
    }
}

.bg-subtle-gray{
    background-color: #F4F3F1;
}

.bg-transparent-dark {
    position: relative;
    background-color: #1b3d5086 !important;
    border: 1px solid #295067 !important;
    transition: transform 0.25s ease;
    overflow: hidden;
}

/* Gradient overlay */
.bg-transparent-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #406780bf,
        #44728f8c,
        #2a526a8c
    );
    opacity: 0;
    transition: opacity 0.35s ease-in-out;
    z-index: 0;
}

/* Keep content above overlay */
.bg-transparent-dark > * {
    position: relative;
    z-index: 1;
}

.bg-transparent-dark:hover::before {
    opacity: 1;
}

.bg-transparent-dark:hover {
    transform: translateY(-2px);
}

/* Bouncing Square Animation */
.image-wrapper {
    position: relative;
    display: inline-block;
}

/* Floating Base */
.floating-square {
    position: absolute;
    width: 110px;
    height: 110px;
    background-color: rgba(210, 210, 210, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(6px);
    animation: floatBounce 4s ease-in-out infinite;
    z-index: 2;
}

/* Lower Left */
.square-left {
    bottom: 5%;
    left: 8%;
}

/* Upper Right */
.square-right {
    top: 5%;
    right: 8%;
    animation-delay: 1.5s;
}

/* Smooth Bounce */
@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .floating-square {
        width: 85px;
        height: 85px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .floating-square {
        width: 65px;
        height: 65px;
    }
}

/* Video Container */
.video-wrapper {
    max-width: 950px;
}

@media (max-width: 768px) {
    #industry-section h1,
    #industry-section p,
    .video-wrapper {
        width: 100% !important;
    }

    #industry-section h1 {
        font-size: 1.8rem;
    }

    #industry-section p {
        font-size: 1rem;
    }
}

/* Testimonial Carousel */
.testimonial-carousel-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-card {
    background-color: #F4F3F1;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 320px;
    max-width: 700px;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Carousel Transitions */
#testimonialCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Navigation Buttons */
.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.testimonial-nav-btn:hover {
    background-color: #ff6900;
    border-color: #ff6900;
    transform: scale(1.1);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

/* Pagination Dots */
.testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-indicators button.active {
    background-color: #ff6900;
    width: 32px;
    border-radius: 6px;
}

.testimonial-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.testimonial-indicators button.active:hover {
    background-color: #ff6900;
}

.quote-icon {
    width: 64px;
    height: 64px;
    background-color: #ff6900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #2c3e50;
    margin: 0;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #5a5a5a;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.2;
}

.author-title {
    font-size: 0.95rem;
    color: #7f8c9a;
    line-height: 1.2;
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .testimonial-carousel-wrapper {
        max-width: 650px;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .testimonial-carousel-wrapper {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .testimonial-card {
        padding: 1.75rem 1.5rem;
        min-height: auto;
    }

    .quote-icon {
        width: 56px;
        height: 56px;
    }

    .quote-icon svg {
        width: 28px;
        height: 28px;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-title {
        font-size: 0.875rem;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-indicators button {
        width: 10px;
        height: 10px;
    }

    .testimonial-indicators button.active {
        width: 24px;
    }
}

.form-bg-transparent-dark {
    position: relative;
    background-color: #1b3d5086 !important;
    border: 1px solid #295067 !important;
    transition: transform 0.25s ease;
    overflow: hidden;
}

/* ===== RESPONSIVE UTILITY CLASSES ===== */
.responsive-width {
    width: 75%;
}

.responsive-text {
    font-size: 1.25rem;
}

.responsive-subtext {
    font-size: 1.25rem;
}

.responsive-heading {
    font-size: 3rem;
}

/* ===== HERO SECTION RESPONSIVE ===== */
#hero-section {
    height: 100vh;
    margin-top: 3rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ===== CARD & IMAGE RESPONSIVE ===== */
.card.mb-4 {
    width: 100%;
    max-width: 24rem;
}

/* ===== TABLET RESPONSIVE (Below 992px) ===== */
@media (max-width: 991px) {
    .responsive-width {
        width: 85%;
    }

    .responsive-heading {
        font-size: 2.25rem;
    }

    .responsive-text {
        font-size: 1.125rem;
    }

    .responsive-subtext {
        font-size: 1.125rem;
    }

    .fs-3rem {
        font-size: 2.25rem !important;
    }

    /* Storage cards */
    .storage-card {
        width: 100%;
        max-width: 22rem;
    }

    /* Built-for cards */
    .card[style*="width: 19rem"] {
        width: 100% !important;
        max-width: 18rem !important;
    }

    /* Transparent dark cards */
    .card[style*="width: 20rem"] {
        width: 100% !important;
        max-width: 18rem !important;
    }
}

/* ===== MOBILE RESPONSIVE (Below 768px) ===== */
@media (max-width: 767px) {
    #hero-section {
        height: 75vh !important;
        min-height: 75vh;
        margin-top: 2rem !important;
    }

    .hero-container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    #hero-section .mt-5 {
        margin-top: 1.5rem !important;
    }

    #hero-section .mb-5 {
        margin-bottom: 2rem !important;
    }

    .responsive-width {
        width: 95%;
    }

    .responsive-heading {
        font-size: 1.875rem;
        text-align: center !important;
    }

    .responsive-text {
        font-size: 1rem;
    }

    .responsive-subtext {
        font-size: 1rem;
        text-align: center;
    }

    .fs-3rem {
        font-size: 1.875rem !important;
    }

    /* Button adjustments */
    .btn-lg {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }

    /* Section padding */
    .section-py {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .container-xxl {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Row and column adjustments */
    .row.align-items-center.g-4 {
        gap: 2rem;
    }

    .col-md-6 {
        width: 100%;
    }

    /* Storage cards */
    .storage-card {
        width: 100%;
        max-width: 100%;
    }

    /* Built-for cards */
    .card[style*="width: 19rem"] {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    /* Transparent dark cards */
    .card[style*="width: 20rem"] {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    /* Feature list items */
    .feature-list li {
        font-size: 0.95rem;
    }

    /* Image wrapper for demo/growth images */
    .image-wrapper img {
        width: 100% !important;
    }

    /* Video wrapper */
    .video-wrapper {
        width: 100% !important;
        padding: 0 0.5rem;
    }

    /* Insights cards */
    .card.mb-4 {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Industry badges */
    .d-flex.align-items-center.justify-content-center.border.border-label-secondary {
        flex-wrap: wrap;
        font-size: 0.9rem;
        padding: 0.75rem !important;
    }

    .d-flex.align-items-center.justify-content-center.border.border-label-secondary .fs-5 {
        font-size: 1rem !important;
    }
}

/* ===== SMALL MOBILE RESPONSIVE (Below 576px) ===== */
@media (max-width: 575px) {
    .responsive-heading {
        font-size: 1.5rem;
    }

    .fs-3rem {
        font-size: 1.5rem !important;
    }

    .responsive-text {
        font-size: 0.95rem;
    }

    .responsive-subtext {
        font-size: 0.95rem;
    }

    /* Hero section adjustments */
    #hero-section {
        height: 100vh !important;
        min-height: 60vh;
    }

    .hero-container {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    #hero-section .mt-5 {
        margin-top: 1rem !important;
    }

    #hero-section .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    /* Button adjustments */
    .btn-lg {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        white-space: normal;
        text-align: center;
    }

    /* Card body text */
    .storage-title {
        font-size: 1.75rem !important;
    }

    .storage-description {
        font-size: 0.9rem;
    }

    /* Built-for and feature cards */
    .card-body .fs-5 {
        font-size: 1.1rem !important;
    }

    .card-body p {
        font-size: 0.9rem;
    }

    /* Testimonial adjustments (additional) */
    .testimonial-text {
        font-size: 0.95rem !important;
    }

    /* Feature list */
    .feature-list li {
        font-size: 0.875rem;
    }

    .feature-list .bi {
        font-size: 1.25rem !important;
    }

    /* Industry roadmap badges */
    .badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }

    /* Insights cards */
    .card.mb-4 .card-body .fs-5 {
        font-size: 1.1rem !important;
    }

    .card.mb-4 .card-text {
        font-size: 0.875rem;
    }

    /* Form cards */
    .form-bg-transparent-dark {
        padding: 1rem;
    }
}

/* ===== HERO SECTION SPECIFIC RESPONSIVE STYLES ===== */

/* Override inline font-size for hero h1 on tablets and below */
@media (max-width: 991px) {
    #hero-section h1[style*="font-size: 3.5rem"] {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
}

/* Mobile view optimizations for hero section */
@media (max-width: 767px) {
    #hero-section h1[style*="font-size: 3.5rem"] {
        font-size: 1.75rem !important;
        line-height: 1.3;
        text-align: center !important;
        margin-bottom: 1rem !important;
    }

    #hero-section .text-start {
        text-align: center !important;
    }

    #hero-section .col-md-6 {
        text-align: center;
    }

    #hero-section .d-flex.flex-column.align-items-start {
        align-items: center !important;
    }

    #hero-section img.img-fluid {
        max-width: 90%;
        height: auto;
        margin: 1rem auto;
    }

    #hero-section .row > .col-md-6:last-of-type {
        order: -1;
        margin-bottom: 1.5rem;
    }
}

/* Small mobile optimizations */
@media (max-width: 575px) {
    #hero-section h1[style*="font-size: 3.5rem"] {
        font-size: 1.5rem !important;
        line-height: 1.4;
    }

    #hero-section .fs-6 {
        font-size: 0.9rem !important;
    }

    #hero-section img.img-fluid {
        max-width: 100%;
    }

    #hero-section .btn {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    #hero-section h1[style*="font-size: 3.5rem"] {
        font-size: 1.35rem !important;
    }

    #hero-section .fs-6 {
        font-size: 0.85rem !important;
    }
}

/* ===== LANDSCAPE PHONE ORIENTATION ===== */
@media (max-width: 767px) and (orientation: landscape) {
    #hero-section {
        height: 100vh !important;
        min-height: 100vh;
    }

    .hero-container {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    #hero-section .mt-5 {
        margin-top: 0.5rem !important;
    }

    #hero-section .mb-5 {
        margin-bottom: 1rem !important;
    }

    #hero-section h1[style*="font-size: 3.5rem"] {
        font-size: 1.5rem !important;
    }

    #hero-section img.img-fluid {
        max-width: 70%;
    }
}