body {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 400;
}

.hero-image {
    /* Replace with your image: background-image: url('../images/hero-banner.jpg'); */
    background-image: url('../images/Hero-Banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.logo-text {
    position: relative;
}

.logo-dot {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #f97316;
    border-radius: 50%;
}

.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
    transform: translateX(0);
}

.menu-backdrop {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.header-menu-link {
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #092C70;
}

.header-menu-link:hover {
    color: #f97316;
}

.cta-button {
    padding: 0.35rem 0.35rem;
}

@media (min-width: 1024px) {
    .cta-button {
        padding: 0.4375rem 0.4375rem;
    }
}

/* Brand Scrolling Animations */
.brand-scroll-left,
.brand-scroll-right {
    will-change: transform;
}
.brand-scroll-left {
    animation: scroll-left var(--brand-scroll-duration, 25s) linear infinite;
}

.brand-scroll-right {
    animation: scroll-right var(--brand-scroll-duration, 25s) linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.brand-logo-item {
    flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
    .brand-scroll-left,
    .brand-scroll-right {
        animation: none;
        will-change: auto;
    }
}

/* Testimonial Scrolling Animations */
.testimonial-scroll-left {
    animation: testimonial-scroll-left 40s linear infinite;
}

.testimonial-scroll-right {
    animation: testimonial-scroll-right 40s linear infinite;
}

@keyframes testimonial-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes testimonial-scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.testimonial-item {
    flex-shrink: 0;
}

/* Responsive improvements */
@media (max-width: 640px) {
    /* Ensure text doesn't overflow on small screens */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Better button spacing on mobile */
    button {
        font-size: 0.875rem;
        padding: 0.75rem 1rem;
    }
    
    /* Adjust testimonial card gap on mobile */
    .testimonial-scroll-left,
    .testimonial-scroll-right {
        gap: 1rem;
    }
    
    /* Hero section mobile improvements */
    .hero-image {
        min-height: 500px !important;
    }
    
    /* Brand section mobile - remove extra padding */
    section.bg-white .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Brand section header text - remove extra padding on mobile */
    section.bg-white .fade-in > div {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Stores section right column - remove extra padding/width on mobile */
    section.bg-white .slide-in-right {
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100%;
        max-width: 100%;
    }
    
    /* Hero section - remove bottom padding on mobile */
    .hero-image {
        padding-bottom: 0 !important;
    }
}

/* Orange divider lines - ensure consistent 1px size */
.bg-orange-500[class*="h-"] {
    height: 1px !important;
    border: none;
    background-color: #f97316;
}

/* Hero stats box mobile improvements */
@media (max-width: 767px) {
    /* Ensure stats box doesn't overlap on mobile */
    .hero-image {
        position: relative;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide In From Left (now simple fade-in on load) */
.slide-in-left {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide In From Right (now simple fade-in on load) */
.slide-in-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scale In Animation */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Delay classes for staggered animations */
.animate-delay-100 {
    transition-delay: 0.1s;
}

.animate-delay-200 {
    transition-delay: 0.2s;
}

.animate-delay-300 {
    transition-delay: 0.3s;
}

.animate-delay-400 {
    transition-delay: 0.4s;
}

/* Milestones slider fade animation */
.milestone-fade {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.milestone-fade-active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PAGE LOAD ANIMATIONS
   ============================================ */

/* Header - No animation */
header {
    opacity: 1;
    transform: none;
}

/* Hero section fade in */
.hero-image {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Hero content fade in */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

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

/* ============================================
   HOVER EFFECTS
   ============================================ */

/* Button hover effects */
button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
} */

button:active {
    transform: translateY(0);
}

/* CTA Button specific hover */
.cta-button:hover {
    transform: translateY(-2px) scale(1.05);
}

/* Card hover effects - What Makes Us Different Section */
.bg-gray-700 {
    transition: background-color 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background-color: #374151; /* gray-700 */
}

.bg-gray-700:hover {
    background-color: #4B5563; /* gray-600 - lighter color */
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Image hover effects - exclude logo */
/* img:not(header img) {
    transition: transform 0.3s ease;
}

img:not(header img):hover {
    transform: scale(1.05);
} */

/* Testimonial card - remove zoom effect and shadow on hover */
.testimonial-item > div {
    border-color: #fed7aa; /* approx. tailwind orange-200 */
    box-shadow: none;
    transform: none;
}

.testimonial-item > div:hover {
    box-shadow: none;
    transform: none;
}

/* Brand logo - remove hover movement, shadow and border */
.brand-logo-item > div {
    /* Keep layout only, no border/shadow/animation */
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.brand-logo-item > div:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Disable global image hover effect for brand logos */
.brand-logo-item img {
    transform: none !important;
}

.brand-logo-item img:hover {
    transform: none !important;
}

/* Link hover effects */
a {
    transition: all 0.3s ease;
}

/* Remove logo hover animation */
header img {
    transition: none;
}

header img:hover {
    transform: none;
}

/* Remove menu link hover animation */
.header-menu-link {
    transition: color 0.3s ease;
}

.header-menu-link:hover {
    transform: none;
}

/* Stats box hover */
.hero-image .bg-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Section hover effects */
section {
    transition: background-color 0.3s ease;
}

/* Smooth transitions for interactive elements (selective) */
button, a, .bg-gray-700, img, .testimonial-item > div, .brand-logo-item > div {
    transition-property: transform, opacity, box-shadow, background-color, color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

/* Image Modal Styles */
#imageModal {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#imageModal.flex {
    opacity: 1;
}

#modalImage {
    animation: modalImageFadeIn 0.3s ease-in-out;
}

@keyframes modalImageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.swiper-pagination-bullet-active{
    background: #bfd944;
}
.swiper-pagination-bullet{
    width: 12px;
    height: 12px;
}

.exp-tab.is-active {
/*     border-radius: 0; */
    background-color: #092C70;
    color: #ffffff;
}

/**/

.historySwiper2 .swiper-slide{
    border-right: 1px solid #D9D9D9;
    padding: 10px;
}
.historySwiper2 .swiper-slide .box{
    padding: 20px;
}
.historySwiper2 .swiper-slide-active{
    background-color: #092C70;
    border-radius: 20px;
}

.historySwiper2 .swiper-slide-active p{
    color: #fff;
}

.historySwiper .swiper-slide p{
    display: inline-block;
    text-align: center;
    border-top: 1px solid transparent;
}
.historySwiper .swiper-slide-thumb-active p{
    color: #F58532;
}
.historySwiper .swiper-slide-thumb-active p{
    
    border-color: #F58532;
}

/* Default slide style */
.historySwiper2 .swiper-slide {
    /* transform: scale(0.85); */
    opacity: 0.9;
    transition: all 0.5s ease;
}

/* Active slide highlight */
.historySwiper2 .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

/* Box animation default */
/* .historySwiper2 .box {
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s ease;
} */

/* When active */
.historySwiper2 .box.animate-active {
    transform: translateY(0);
    opacity: 1;
}


/* ===============
   Page Loader Css
   =============== */
.load-wrapper {
    z-index: 99999;
    width: 100%;
    height: 100%;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    transform-origin: 50% 100%;
    color: #fff;
    text-align: center;
    background-color: #1d1d1d;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    display: flex;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%
}

.heading--w {
    align-self: center;
    /*overflow: hidden*/
}

.load-wrapper .heading--large:before {
    position: absolute;
    content: '';
    width: 170px;
    height: 2px;
    background: #fff;
    bottom: -20px;
    right: -60px;
    animation: border_anim 3s linear forwards;
}

.heading--large.is--loader {
    line-height: 1.2;
}

.heading--large {
    flex: none;
    margin-top: 0;
    font-family: Wulkandisplay, sans-serif;
    font-size: 2.5em;
    font-weight: 500;
    line-height: 1;
}

.load-wrapper .heading--large:after {
    position: absolute;
    content: '';
    width: 170px;
    height: 2px;
    background: #fff;
    top: -20px;
    left: -60px;
    animation: border_anim 3s linear forwards;
}

@keyframes border_anim {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}
