/* Core Styles */


.progress-bar{
    display: none;
  }
  
:root {
    --primary-color: #EF4444;
    --secondary-color: #1F2937;
    --text-color: #374151;
    --light-bg: #F3F4F6;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: auto;
    overflow-x: hidden;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Section Styles */
.section {
    /*min-height: 100vh;*/
    /*scroll-snap-align: start;*/
    /*position: relative;*/
    /*overflow: hidden;*/
    
    min-height: 100vh; /* Ensures section takes at least full viewport height */
  display: flex; /* Flexbox for centering content */
  flex-direction: column; /* Stack content vertically */
  justify-content: center; /* Center content vertically */
  padding: 20px 15px 10px; /* Padding: top, sides, and bottom */
  box-sizing: border-box; /* Include padding in the height calculation */
  overflow: hidden; /* Prevent content from spilling out */
}

#service-hero-section {
  height: 56vh;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), var(--image-url) center center no-repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 3rem;
}

/* Animation Classes */
.fade-in {
    opacity: 1;
    animation: fadeIn 0.6s ease-in forwards;
}

.slide-in {
    opacity: 1;
    transform: translateY(50px);
    animation: slideIn 0.6s ease-out forwards;
}

.slide-in-left {
    opacity: 1;
    transform: translateX(-50px);
    animation: slideInLeft 0.6s ease-out forwards;
}

.slide-in-right {
    opacity: 1;
    transform: translateX(50px);
    animation: slideInRight 0.6s ease-out forwards;
}

.bounce {
    animation: bounce 2s infinite;
}

.pulse {
    animation: pulse 2s infinite;
}

.marquee {
    animation: marquee 20s linear infinite;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 1; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 1;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 1;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 1;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Banner Section */
.banner {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Scrolling Content Bar */
.scrolling-bar {
    background: var(--primary-color);
    height: 60px;
    overflow: hidden;
    position: relative;
}

.scrolling-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 1rem 0;
}

/* Case Study Section */
.case-study-section{
    padding-bottom: 5rem;
}
.case-study-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* About Product Section */


/* hover effect for key benifits */
.benefits-grid .bg-white {
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.benefits-grid .bg-white:hover {
    background-color: #f0354e; /* Change background color on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); /* Add a more pronounced shadow */
    transform: translateY(-25px); /* Slight lift effect */
}

.benefits-grid .bg-white:hover h4 {
    color: white; /* Change heading color on hover */
}

.benefits-grid .bg-white:hover p {
    color: white; /* Change text color on hover */
}

.benefits-grid .bg-white:hover img {
    filter: brightness(0) invert(1); /* Invert icon colors */
}

.benefits-grid .bg-white:hover .bg-red-100 {
    background-color: #f8d7da; /* Change the background color of the icon circle */
}

.swiper-pagination-bullet-active{
    background: red !important;
}
.swiper-container {
    width: 100%;
    height: auto;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100vh;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Custom styling for Swiper navigation buttons */

/* General styles for both buttons */
.swiper-button-next, 
.swiper-button-prev {
    color: #333 !important; /* Change to desired color (e.g., #333 for dark gray) */
    font-size: 20px !important; /* Reduce the icon size */
    width: 30px !important; /* Adjust the width of the button */
    height: 30px !important; /* Adjust the height of the button */
}

/* Position adjustments if needed */
.swiper-button-next {
    right: 10px !important; /* Adjust spacing from the right edge */
}

.swiper-button-prev {
    left: 10px !important; /* Adjust spacing from the left edge */
}

/* Optional: Add hover effect */
.swiper-button-next:hover, 
.swiper-button-prev:hover {
    color: #555; /* Slightly lighter gray on hover */
    transform: scale(1.1); /* Slight zoom effect on hover */
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}



/* Form Elements */

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #DC2626;
}

/* Blog Strip */
.blog-strip {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.blog-strip::-webkit-scrollbar {
    display: none;
}

.blog-card {
    scroll-snap-align: start;
    min-width: 300px;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */



.footer-header{
    padding-top:2rem;
}
.footer-title{
    font-size:30px;
    font-weight:400;
}

.footer {
    background: var(--secondary-color);
    color: white;
    padding: 0rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .grid {

        grid-template-columns: 1fr !important;
    }
}

/* Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Utility Classes */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* hero-section slide show start*/

.hero-section {
    background-image: url('https://499.ai/Banners/Banner-1.webp'); /* Desktop background */
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Avoids tiling */
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section .swiper-slide img{
    height: 100vh;
}

.hero-section .swiper{
    position: absolute !important;
}
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content-title{
    font-size:1.5rem;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: white;
}

.swiper-pagination-bullet {
    background: white;
}
/* hero-section slide show end*/


  /* Navigation Bar */
  .navbar {
     max-width: 1330px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     height: 100px;
     padding: 0 20px; /* optional horizontal padding */
}
    color: black;
  }

  .navbar .logo {
    font-size: 20px;
    font-weight: bold;
    padding-right:0;
  }

  .menu {
    display: flex;
    gap: 15px;
  }

  .menu a {
    color: black;
    text-decoration: none;
    padding: 10px 10px;
    display: block;
  }

  



  /* Mobile Menu */
  .mobile-menu-icon {
    display: none;
    font-size: 25px;
    cursor: pointer;
    margin-left: -36%;
  }

  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      background-color: #333;
      width: 30%;
    }

    .menu.show {
      display: flex;
      margin-top: 140px;
    }

    .mobile-menu-icon {
      display: block;
    }

    .dropdown-content {
      position: static;
    }
  }

.top-menu{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100px;
    font-size:12px;
    width:100%;
}
/* Navigation Styles */
.top-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 50;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #EF4444;
}

/* Side Navigation */


.side-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    
}

.side-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgb(145, 145, 145);
    border-radius: 50%;
    margin: 1rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.side-dot.active {
    background: #EF4444;
    border-color: #EF4444;
    transform: scale(1.2);
}

/* Animations */
.fade-in {
    opacity: 1;
    animation: fadeIn 1s ease forwards;
}

.slide-up {
    opacity: 1;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.bounce {
    animation: bounce 2s infinite;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Bottom Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 20;
    
}

/* Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* Background Video/Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    padding-top: 8rem;
    position: relative;
    z-index: 3;
    justify-content: start;
    color:black;
}
.hero-p{
    color:black;
    font-weight: 600;
    padding-top:20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .side-nav {
        right: 1rem;
    }
    .hero-heading {

        font-size: 1.5rem;
    }
}
 

.scrolling-bar-container {
    display: none;
    background: #EF4444;
    position: relative;
    overflow: hidden;
    height: 60px;
    width: 100%;
}

.scrolling-wrapper {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: fit-content;
    animation: scroll 40s linear infinite;
}

.scrolling-content {
    display: flex;
    align-items: center;
    padding: 0 20px;
    white-space: nowrap;
}

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

.content-item {
    display: inline-flex;
    align-items: center;
    padding: 0 2rem;
    color: white;
    transition: all 0.3s ease;
    height: 60px;
}

.icon-container {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.content-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 1rem;
    flex-shrink: 0;
}

.highlight-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    margin-left: 0.75rem;
    flex-shrink: 0;
}

/* Pause on Hover */
.scrolling-bar-container:hover .scrolling-wrapper {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .scrolling-bar-container {
        height: 50px;
    }
    .content-item {
        height: 50px;
        padding: 0 1rem;
    }

    .icon-container {
        width: 24px;
        height: 24px;
    }
}




/*csae studey */
/* Enhanced Animation Classes */

.fade-in-up {

    opacity: 1;

    transform: translateY(30px);

    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);

}

.fade-in-up.visible {

    opacity: 1;

    transform: translateY(0);

}

.fade-in-left {

    opacity: 1;

    transform: translateX(-30px);

    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);

}

.fade-in-left.visible {

    opacity: 1;

    transform: translateX(0);

}

.fade-in-right {

    opacity: 1;

    transform: translateX(30px);

    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);

}

.fade-in-right.visible {

    opacity: 1;

    transform: translateX(0);

}

/* Enhanced Image Comparison */

.comparison-slider {

    position: relative;

    width: 100%;

    height: 400px;

    border-radius: 12px;

    overflow: hidden;

}

.comparison-item {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

}

.comparison-item.after {

    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);

}

.slider-handle {

    position: absolute;

    top: 50%;

    left: 50%;

    width: 40px;

    height: 40px;

    background: #EF4444;

    border: 3px solid white;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    cursor: ew-resize;

    z-index: 10;

}

.slider-handle::before {

    content: '';

    position: absolute;

    top: 50%;

    left: 50%;

    width: 2px;

    height: 100vh;

    background: white;

    transform: translate(-50%, -50%);

}

/* Enhanced Stats Cards */

.stat-card {

    background: white;

    border-radius: 16px;

    padding: 2rem;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    position: relative;

    overflow: hidden;

}

.stat-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: #EF4444;

    transform: scaleX(0);

    transition: transform 0.4s ease;

    transform-origin: left;

}

.stat-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),

               0 10px 10px -5px rgba(0, 0, 0, 0.04);

}

.stat-card:hover::before {

    transform: scaleX(1);

}

.stat-number {

    font-size: 3rem;

    font-weight: bold;

    color: #EF4444;

    opacity: 1;

    transform: translateY(20px);

    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

}

.stat-number.visible {

    opacity: 1;

    transform: translateY(0);

}

/* Timeline Enhancement */

.timeline {

    position: relative;

    padding-left: 3rem;

}

.timeline::before {

    content: '';

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 100%;

    background: linear-gradient(to bottom, #EF4444 50%, transparent 50%);

    background-size: 100% 4rem;

    animation: timelineProgress 2s linear infinite;

}

@keyframes timelineProgress {

    0% { background-position: 0 -2rem; }

    100% { background-position: 0 2rem; }

}

.timeline-item {

    position: relative;

    padding: 1.5rem 0;

}

.timeline-dot {

    position: absolute;

    left: -3.5rem;

    width: 1rem;

    height: 1rem;

    background: #EF4444;

    border: 2px solid white;

    border-radius: 50%;

    transform: scale(0);

    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);

}

.timeline-item.visible .timeline-dot {

    transform: scale(1);

}


/* Progress Ring */

.progress-ring {

    position: relative;

    width: 120px;

    height: 120px;

}

.progress-ring circle {

    transition: all 1s ease;

    transform: rotate(-90deg);

    transform-origin: 50% 50%;

}

/*about-us*/
/* Core Animations */

.fade-in {

    opacity: 1;

    transform: translateY(20px);

    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

}

.fade-in.visible {

    opacity: 1;

    transform: translateY(0);

}

/* Product Card Styles */

.product-card {

    background: white;

    border-radius: 16px;

    padding: 2rem;

    transition: all 0.4s ease;

    position: relative;

    overflow: hidden;

    border: 1px solid #e5e7eb;

}

.product-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(45deg, #EF4444, #f87171);

    opacity: 0;

    transition: opacity 0.4s ease;

    z-index: 0;

}

.product-card:hover::before {

    opacity: 1;

}

.product-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

}

.product-card:hover .card-content {

    color: white;

}

.product-card:hover .icon-container {

    background: white;

    color: #EF4444;

}

.card-content {

    position: relative;

    z-index: 1;

    transition: color 0.4s ease;

}

/* Icon Animations */

.icon-container {

    width: 60px;

    height: 60px;

    background: rgba(239, 68, 68, 0.1);

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 1.5rem;

    transition: all 0.4s ease;

}

.icon-pulse {

    animation: iconPulse 2s infinite;

}

@keyframes iconPulse {

    0% { transform: scale(1); }

    50% { transform: scale(1.1); }

    100% { transform: scale(1); }

}

/* Feature List Styles */

.feature-list {

    counter-reset: feature-counter;

}

.feature-item {

    position: relative;

    padding-left: 3rem;

    margin-bottom: 1.5rem;

    counter-increment: feature-counter;

}

.feature-item::before {

    content: counter(feature-counter);

    position: absolute;

    left: 0;

    top: 0;

    width: 2rem;

    height: 2rem;

    background: #EF4444;

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: bold;

}

/* Illustration Container */

.illustration-container {

    position: relative;

    overflow: hidden;

    border-radius: 16px;

    transition: transform 0.4s ease;

}

.illustration-container:hover {

    transform: scale(1.02);

}

.illustration-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(45deg, rgba(239, 68, 68, 0.9), rgba(248, 113, 113, 0.9));

    opacity: 0;

    transition: opacity 0.4s ease;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-weight: bold;

}

.illustration-container:hover .illustration-overlay {

    opacity: 1;

}

/* Benefits Grid */


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: auto; /* Automatically adjust row height */
    gap: 2rem; /* Space between grid items */
}






/* How It Works Section */

/* Align steps alternately */
.step:nth-child(odd) {
    align-self: flex-start; /* Align left */
    transform: translateX(80%); /* Shift left */
}

.step:nth-child(even) {
    align-self: flex-end; /* Align right */
    transform: translateX(-80%); /* Shift right */
}

/* Section top margin */
.how-it-works .text-red-500 {
    margin-top: 5rem;
}

/* Step Container */
.steps-container {
    display: flex;
    flex-direction: column; /* Stacked layout for all screen sizes */
    align-items: center;
    margin-top: 50px;
    width: 100%; /* Ensure the steps are not too wide */
}

/* Individual Step */
.step {
   
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    max-width: 400px;
}

/* Step Number */
.step-number {
    margin-bottom: 20px;
    font-size: 2rem; /* Font size of step number */
    font-weight: bold;
    color: #EF4444; /* Step number color */
    background: #fff;
    border: 2px solid #EF4444;
    padding: 0.5rem 1.4rem; /* Padding for the number container */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* Step Heading and Description */
.step-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    width:max-content;
}

.step-description {
    font-size: 2rem;
    color: #666;
    margin: 1rem 0;
    width:600px;
}

/* Step Icon */
.step-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.step-icon img {
    background: rgba(239, 68, 68, 0.1);
    width: 80px;
    height: 80px;
    align-items:center;
    object-fit: contain;
    border-radius: 10px;
}

/* Image Box */
.step-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px; /* Reduce width for mobile */
    max-width: 600px; /* Restrict max width for larger devices */
    height: auto; /* Let height adjust based on width */
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.step-image-box img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    object-fit: cover;
    transition: transform 0.5s ease-out;
    will-change: transform;
    transform: translateX(100%); /* Start off-screen to the right */
}

.step-image-box img.active {
    transform: translateX(0); /* Move into view */
}

/* Media Query for Mobile (max-width: 767px) */
@media (max-width: 767px) {
    /* General Section Adjustments */
    .how-it-works {
        padding: 1rem; /* Add some padding for mobile */
    }

    /* Step Container */
    .steps-container {
        gap: 30px; /* Add spacing between steps */
    }

    /* Step Number */
    .step-number {
        font-size: 1.5rem; /* Reduce size for mobile */
        padding: 0.4rem 1rem; /* Adjust padding */
    }

    /* Step Heading */
   

    /* Step Description */
    .step-description {
        font-size: 0.9rem; /* Smaller font for mobile */
        margin: 0.5rem 0;
    }

    /* Step Icon */
   

    /* Image Box */
    .step-image-box {
        max-width: 300px; /* Further restrict max width */
        width: 100%; /* Full width for small screens */
        border-radius: 6px; /* Slightly smaller border radius */
    }

    .step:nth-child(odd) {
        align-self: flex-start; /* Align left */
        transform: translateX(0%); /* Shift left */
    }
    
    .step:nth-child(even) {
        align-self: flex-end; /* Align right */
        transform: translateX(0%); /* Shift right */
    }
    
}



/* Our Story */


     /* Parallax and Background Effects */
     .parallax-container {
        position: relative;
        overflow: hidden;
        background-color: white;
        padding-top: 10rem;
    }

   
    .parallax-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.7)
        );
        z-index: -1;
    }

    /* Fade In Animations */
    .fade-in-up {
        opacity: 1;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    /* Timeline Styles */
    .timeline {
        position: relative;
        padding: 2rem 0;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        width: 2px;
        height: 100%;
        background: #EF4444;
        transform: translateX(-50%);
    }

    .milestone {
        position: relative;
        margin: 4rem 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .milestone-content {
        width: calc(50% - 3rem);
        padding: 2rem;
        background: white;
        border-radius: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: relative;
        transition: transform 0.4s ease;
    }

    .milestone:nth-child(odd) .milestone-content {
        margin-right: auto;
        transform: translateX(-30px);
    }

    .milestone:nth-child(even) .milestone-content {
        margin-left: auto;
        transform: translateX(30px);
    }

    .milestone.visible .milestone-content {
        transform: translateX(0);
    }

    .milestone-dot {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 20px;
        height: 20px;
        background: #EF4444;
        border: 4px solid white;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    /* Founder Card Styles */
    .founder-card {
        background: white;
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        opacity: 1;
        transform: translateY(20px);
    }

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

    .founder-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .founder-image {
        position: relative;
        overflow: hidden;
        padding-top: 75%;
    }

    .founder-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .founder-card:hover .founder-image img {
        transform: scale(1.1);
    }

    /* Mission Statement Style */
    .mission-box {
        background: linear-gradient(135deg, #EF4444, #f87171);
        border-radius: 1rem;
        padding: 3rem;
        color: white;
        transform: translateY(30px);
        opacity: 1;
        transition: all 0.6s ease;
    }

    .mission-box.visible {
        transform: translateY(0);
        opacity: 1;
    }

    /* Quote Style */
    .quote {
        position: relative;
       /* font-style: italic; */
        padding: 3rem;
    }

    .quote::before {
        content: '"';
        position: absolute;
        left: 0;
        top: -1rem;
        font-size: 5rem;
        color: rgba(255, 255, 255, 0.2);
        font-family: serif;
    }



    /* Lead Form */
    /* Form Section Styles */

    .form-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    color: white;
    height: 112vh;
}

    .form-section .text-center{
        padding-bottom:1rem;
    }
   
    .form-section p{
        line-height: 1.7rem;
    }

    /* Floating Shapes Background */
    .shapes {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        pointer-events: none;
    }

    .shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(239, 68, 68, 0.1);
    }

    .shape-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -150px;
    }

    .shape-2 {
        width: 200px;
        height: 200px;
        bottom: -100px;
        right: -100px;
        background: rgba(239, 68, 68, 0.05);
    }

    /* Form Container */
    .form-container {
        margin-top: 1rem;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        opacity: 1;
        /* transform: translateY(30px); */
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        color: white;
        margin: 50px auto;
    }
     .form-section .text-gray-600{
        color:white;
        
    }

    /* .form-container.visible {
        opacity: 1;
        transform: translateY(0);
    } */

    /* Form Group */
    .form-group {
        position: relative;
        margin-bottom: 20px;
    }

    /* Input Styles */
   

    .form-input:focus {
        outline: none;
        border-color: #EF4444;
        background: white;
        box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }

    /* Input Icons */
    .input-icon {
        position: absolute;
        left: 1rem;
        top: 72%;
        transform: translateY(-50%);
        color: #9ca3af;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .form-input:focus + .input-icon {
        color: #EF4444;
    }

    /* Label Animation */
   /* Label Position for Top Alignment */
.form-label {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    color: #6b7280;
    font-size: 0.875rem; /* Smaller size for labels */
   
    display: block; /* Ensures the label stays above the input */
    padding: 0;
}

/* Remove unnecessary label animation styles */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: 0;
    left: 0;
    transform: none;
    color: #6b7280;
}
.form-group{
    margin-top:0px !important;
}

/* Adjust Input Styles for Consistency */
.form-input {
    width: 100%;
    padding: 5px 0.5rem; /* Adjust padding for clarity */
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    margin-top: 0; /* Ensure spacing between input and label */
    color:black;
}

.form-label-checkbox {
    font-size: 1rem; /* Match label text size to the form design */
    color: #6b7280; /* Text color */
    cursor: pointer;
}

/* Adjust for alignment if needed */
.form-group:last-of-type {
    display: flex;
    flex-direction:column;
    margin-top:0.5rem !important;
}
.form-checkbox {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem; /* Space between checkbox and label */
    cursor: pointer;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 0px;
}

/* Checkbox Styling */
.form-checkbox {
    margin-right: 0.5rem;
}

/* Dropdown Styling */
.form-dropdown {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #5f5f5f;
}
/* Label Styling */
.form-label, .form-label-checkbox {
    display: block;
    color: #333;
}
.input-icon {
    transition: opacity 0.3s ease;
}

.input-icon.hidden {
    opacity: 0;
    pointer-events: none;
}


    /* Submit Button */
    .submit-btn {
        background: #EF4444;
        color: white;
        padding: 5px 2rem;
        border-radius: 10px;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }

    .submit-btn:hover::before {
        width: 300px;
        height: 300px;
    }

    /* Success Message */
    .success-message {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s ease;
    }

    .success-message.show {
        opacity: 1;
        pointer-events: auto;
    }

    /* Loading Animation */
    .loading {
        display: none;
        width: 24px;
        height: 24px;
        border: 3px solid white;
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    /* Form Validation Styles */
    .error-message {
        color: #EF4444;
        font-size: 0.875rem;
        margin-top: 0.5rem;
        display: none;
    }

    .form-input.error {
        border-color: #EF4444;
    }

    .form-input.error + .input-icon {
        color: #EF4444;
    }
    
    .input-container input:focus + .icon {
  opacity: 0; /* Hide the icon */
}



    /* Blogs */

     /* Blog Strip Container */
     .blog-strip {
        position: relative;
        padding: 80px 0;
        background: #f8fafc;
        overflow: hidden;
    }

    /* Scroll Container */
    .scroll-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        padding: 20px 0;
    }

    .scroll-container::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    /* Blog Cards Container */
    .blog-cards {
        display: flex;
        gap: 24px;
        padding: 0 20px;
        min-width: min-content;
    }

    /* Blog Card */
    .blog-card {
        width: 320px;
        flex-shrink: 0;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        transform: translateY(0);
    }

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                   0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    /* Thumbnail Container */
    .thumbnail-container {
        position: relative;
        padding-top: 60%;
        overflow: hidden;
    }

    .thumbnail {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .blog-card:hover .thumbnail {
        transform: scale(1.1);
    }

    /* Blog Category Badge */
    .category-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: rgba(239, 68, 68, 0.9);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        backdrop-filter: blur(4px);
    }

    /* Navigation Buttons */
    .nav-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .nav-button:hover {
        background: #EF4444;
        color: white;
    }

    .nav-button.prev {
        left: 20px;
    }

    .nav-button.next {
        right: 20px;
    }

    /* Read More Button */
    .read-more {
        color: #EF4444;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .read-more svg {
        transition: transform 0.3s ease;
    }

    .read-more:hover svg {
        transform: translateX(5px);
    }

    /* Excerpt Text */
    .excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Loading Animation */
    .loading-shimmer {
        background: linear-gradient(
            90deg,
            #f3f4f6 0%,
            #e5e7eb 50%,
            #f3f4f6 100%
        );
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
    }

    @keyframes shimmer {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }



    /* footer */
    
    .Space{
        padding-top:3rem;
    }

    /* Footer Styles */
    .footer {
        background: linear-gradient(to bottom, #1F2937, #111827);
        color: white;
        position: relative;
        overflow: hidden;
       
    }

    /* Animated Background */
    .footer-bg {
       
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
        opacity: 0.5;
        z-index: 0;
    }

    /* Container Animation */
    .footer-content {
        position: relative;
        z-index: 1;
        opacity: 1;
        transform: translateY(30px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .footer-content.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Contact Item */
    .contact-item {
        display: flex;
        align-items: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
    }

    /* Social Media Links */
    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #EF4444;
        transform: translateY(100%);
        transition: transform 0.3s ease;
        z-index: 0;
    }

    .social-link:hover::before {
        transform: translateY(0);
    }
.social-link img{
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}
    

    .social-link:hover svg {
        transform: scale(1.2);
    }

    /* Logo Container */
    .logo-container {
        position: relative;       
        background: rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        transition: all 0.3s ease;
        width: fit-content;
    }

    .logo-container:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Newsletter Form */
    .newsletter-input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 0.75rem 1rem;
        color: white;
        width: 100%;
        transition: all 0.3s ease;
    }

    .newsletter-input:focus {
        outline: none;
        border-color: #EF4444;
        background: rgba(255, 255, 255, 0.1);
    }

    .newsletter-button {
        background: #EF4444;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

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

    /* Copyright Bar */
    .copyright-bar {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        
        background: rgba(0, 0, 0, 0.2);
        display: flex;
        justify-content: space-between; /* Ensures even spacing between items */
        align-items: center; /* Aligns items vertically */
        gap: 20px; /* Adds space between the two containers */
        padding: 10px; /* Optional: Adds some padding for a cleaner look */
    }
    .copyright-bar .container {
        flex: 1; /* Ensures both containers take equal space, adjust as needed */
    }
    
    .copyright-bar .container:first-child {
        text-align: right;
    }
    
    .copyright-bar .container:last-child {
        text-align: left;
    }
    

    /* Divider Line */
    .divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(
            to right,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent
        );
        margin: 2rem 0;
    }


    /* Mobile version */
    @media screen and (max-width: 768px) {
        /* Add your styles here */
        .hero-content{
            padding-top: 5rem;
        }

        .case-study-section{
            background-image:url('') !important;

        }
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr); /* 3 columns */
            grid-template-rows: auto; /* Automatically adjust row height */
            gap: 2rem; /* Space between grid items */
        }
    }


       /* General menu styling */
       .menu-footer{
           font-size:12px;
           display:flex;
           justify-content:center;
       }
       
       @media screen and (max-width: 768px){
          .menu-footer{
               display:initial;
           }
       }

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap; /* Allow wrapping for overflow items */
}

.menu-item {
    color: white;
   /* padding: 10px 20px;*/
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.menu-footer a {
    color: white;
    text-decoration: none;
    padding: 10px 10px;
    display: block;
  }

.menu-item:hover {
    background-color:#ef4444 ;
    color: white;
}

.menu-item.active {
    background-color: #f0354e;
    color: white;
}

/* Desktop version */
@media (min-width: 768px) {
    .menu-list {
        flex-wrap: nowrap; /* Keep everything on a single line for desktop */
        font-size:12px;
        gap: 40px;
    }
  
}

/* Mobile version */
@media (max-width: 767px) {
   

    .menu-list {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        gap: 0px; /* Reduce gap for better spacing on mobile */
        font-size:10px;
    }
    
    .menu a{
        color:white;
    }
}
    

/* Updated About product section */

.carousel-container {
    max-width: 90%;
    width: 600px;
    margin: auto;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
  }
  .swiper-slide img {
    width: 100%;
    height: 512px;
  }

  .swiper-pagination-bullet {
    background-color: #555;
  }
  .swiper-button-next,
  .swiper-button-prev {
    color: #555;
  }


  .outcomes-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    background-color: #f9fafb;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitle {
    color: #ef4444;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.title {
    color: #111827;
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.description {
    color: #6b7280;
    max-width: 36rem;
    margin: 0 auto;
    font-size: 0.9rem;
}

.outcomes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

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

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: bold;
    color: #ef4444;
}

.stat-icon {
    width: 30%;
}

.icon-path {
    fill: #ef4444;
}

.stat-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
}

.stat-description {
    color: #6b7280;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .outcomes-container {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }

    .title {
        font-size: 1.875rem;
    }

    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

.case-study-section {
    padding: 7rem;
    background-color: #f5f5f5;
    height: 100vh;
}

.row-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.column {
    min-height: 400px;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
}

h3, h4 {
    color: #e53e3e;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.challenge-list, .solution-list {
    list-style: none;
    padding: 0;
}

.challenge-list li, .solution-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

@media screen and (max-width: 768px) { /* Adjust max-width as needed for your mobile breakpoint */
  .challenge-list li, 
  .solution-list li {
    font-size: 0.8rem; /* Change to your desired mobile font size */
  }
}


.challenge-list li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 2px;
}

.solution-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

.key-notes {
    height: 100vh;
    position: relative;
}

.notes-content {
    height: calc(100vh - 100px);
    overflow-y: auto;
}

@media (max-width: 768px) {
    .row-container {
        grid-template-columns: 1fr;
    }
    
    .column {
        min-height: auto;
    }
    
    .key-notes {
        height: auto;
    }
}



/* About-product section*/
.about-column .section-header{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-column .description{
    max-width: 1000px;
}

.about-column .carousel-container{
    width: 600px;
   margin-top:2rem;
}
.about-column .swiper-slide img{
    height: auto;
}


.about-section-benefits{
height: 100vh;
display: flex;
    align-items: center;
    justify-content: center;
}
.about-section-benefits .benefits-grid{
    width: 70%;
}
.about-section-benefits .benefits-column{
    display: flex;
    flex-direction: column;
    align-items: center;
    width:70%;
}
.benefit-card:hover h4{
   color: white;
}
.benefit-card:hover p{
    color: white;
 }
.benefit-card {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-10px); 
    background-color: #E53E3E;
}


.about-section {
    min-height: 100vh;
    padding: 1rem 2rem;
    background-color: #f9fafb;
}

.two-column-container {
   
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* About Column Styles */
.subtitle {
    color: #ef4444;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #111827;
}

.description {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Carousel Styles */
.carousel-container {
    width: 90vw;
   
}

.swiper-slide img {
    width: 100%;
    height: 512px;
    border-radius: 8px;
}
  
  @media (max-width: 768px) {
    .swiper-slide img {
    width: 100%;
    height: 312px;
    border-radius: 8px;}

}

/* Benefits Styles */
.benefits-header {
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-title h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #111827;
}

.benefits-subtitle {
    color: #6b7280;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    background: white;
    padding: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icon-circle {
    width: 3rem;
    height: 3rem;
    background-color: #fee2e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle img {
    width: 24px;
    height: 24px;
}

.benefit-card h4 {
    font-weight: 600;
    color: #111827 !important;
    margin-bottom: 0;
    font-size: 1rem;
}

.benefit-card p {
    color: #6b7280;
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .two-column-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}


.process-section {
    height: 100vh;
    padding: 4rem 0;
    background: #f8f8f8;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden;    
}

.header {
    text-align: center;
    margin-bottom: 4rem;
}

.subtitle {
    color: #ef4444;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin: 0.5rem 0;
}

.description {
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.steps-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    padding: 1rem;
    margin: 0 -1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.steps-container::-webkit-scrollbar {
    display: none;
}

.step-card {
    flex: 0 0 auto;
    width: 300px;
    min-width: 300px;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05),
                0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ef4444;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1),
                0 15px 25px rgba(0, 0, 0, 0.15);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ef4444;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    width: 30%;
}
.step-icon{
    width: 100%;
    display: flow;
}
.step-card-title{
    display: flex;
    align-items:baseline;
}
.step-card-title h2{
    font-size: 2rem;
    font-weight: bold;
    color: red;
    margin-bottom: 1rem;
}

.step-card:hover .step-number {
    transform: scale(1.1);
}

.step-card h4 {
    font-size: 1rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.step-card p {
    color: #6b7280;
    line-height: 1.5;
}

.dots-nav {
    display:none;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot:hover {
    transform: scale(1.2);
}

.dot.active {
    background: #4b5563;
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .steps-container {
        padding-bottom: 1rem;
    }
    
    .step-card {
        min-width: 280px;
    }
}

 
    .slider-container {
        position: relative;
    }
    .swiper {
        overflow: hidden;
    }
    .swiper-slide {
        opacity: 0.9;
        transition: transform 0.5s ease-in-out;
    }
    .swiper-pagination-bullet {
        background: #ff0000 !important; /* Customize pagination color */
    }
    
    @media screen and (max-width: 768px){
        
        
    .section{
        padding:0px;
    }
     /* hero-section mobile version */
     
     .hero-section{
         height:initial;
         padding:5rem 0px;
        background-image: url('./Banners/mobile-banner.webp'); 
    
     }
    .case-study-section, .about-section-benefits{
        padding:9rem 0px;
        height:initial;
       
    }
    /* how-it-works mobile version */
    .dots-nav{
        display:none;
    }
    /* about-section mobile version */
    .about-section{
        padding:2rem 2rem;
        min-height:initial;
    }
    .carousel-container{
        margin-top:3rem;
    }
    /* process mobile version */
    
     .process-section {
        padding: 2rem 0;
        height:initial;
    }

    .header {
        margin-bottom: 2rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .description {
        font-size: 0.875rem;
        margin: 0 1rem;
    }

    .steps-container {
        flex-direction: column; /* Stack steps vertically */
        gap: 1.5rem; /* Reduce spacing between cards */
        overflow-x: unset; /* Remove horizontal scroll */
    }

    .step-card {
        width: 100%; /* Ensure cards take full width */
        padding: 1.5rem;
        font-size: 0.875rem;
    }

    .step-card h3 {
        font-size: 1.125rem;
    }

    .step-card p {
        font-size: 0.875rem;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .dots-nav {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }

    .dot {
        width: 6px;
        height: 6px;
    }
    
    /* key benefits mobile section */
    .about-section-benefits .benefits-column{
        width:100%;
    }
    /* key notes mobile section */
    .stat-card{
        padding:10px;
    }
    .outcomes-container{
        margin:0px;
    }
    
 
    /* footer mobile version */
    .blogs p a{
    font-size:1.5rem;
}

.blogs{
    padding-bottom:2rem;
}
    
}

/* Responsive Media Queries */
/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
        margin: 2rem;
    }

    .shape-1, .shape-2 {
        display: none; /* Hide shapes on smaller screens to prevent overlap */
    }

    .text-center h2 {
        font-size: 1.5rem;
    }

    .text-center p {
        font-size: 0.9rem;
    }
    .form-section{
        display: flex;
        flex-direction: column;
        justify-content: center;
        height:142vh !important;
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 480px) {
    .text-center h2 {
        font-size: 1.2rem;
    }

    .text-center p {
        font-size: 0.8rem;
    }

    .form-container {
        padding: 1rem;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    z-index: 1000;
    display: none; /* Initially hidden */
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-button.accept {
    background: #EF4444;
    color: white;
}

.cookie-button.accept:hover {
    background: #DC2626;
}

.cookie-button.decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.cookie-button.decline:hover {
    border-color: white;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-button {
        flex: 1;
        max-width: 150px;
    }
}

#FAQ h4 {
    font-weight: 600;
    color: #111827 !important;
    margin-bottom: 0;
    font-size: 1rem;}

.menu-item:hover .dropdown {
     display: block;
}

.bg-section {
        background-image: url(https://499.ai/images/sectionbg/abstract-bg2.webp);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
}
   
.hero-H {
      font-size: 6vw;
      font-weight: bold;
      color: white;
      text-transform: uppercase;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }