:root {
            --primary-color: #0144fd;
            --secondary-color: #0144fd;
            --accent-color: #0144fd;
            --text-color: #070707;
            --light-bg: #f8fafc;
            --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
        }

        .container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 20px;
        }

        .services-title {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px 0;
        }

        .services-title h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .services-title p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .products-grid {
          display: flex;
          flex-wrap: wrap;
          justify-content: center; /* This centers the cards */
          gap: 30px;
          margin-bottom: 50px;
        }

        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: var(--transition);
            position: relative;
            width: 350px; /* Fixed width */
        }

        .product-card:hover {
            transform: translateY(+5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

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

        .card-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            transition: var(--transition);
        }

        .product-card:hover .card-icon {
            color: var(--accent-color);
            transform: scale(1.1);
        }

        .card-content {
            padding: 25px;
        }

        .card-content h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .card-content p {
            margin-bottom: 20px;
            color: #555;
        }

        .learn-more {
            display: inline-block;
            padding: 8px 20px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .learn-more:hover {
            background-color: transparent;
            color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .learn-more i {
            margin-left: 5px;
            transition: var(--transition);
        }

        .learn-more:hover i {
            transform: translateX(-3px);
        }

        @media (max-width: 768px) {
            .services-title h1 {
                font-size: 2rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Micro-interactions */
        .product-card {
            /* opacity:1; */
            transform: translateY(20px);
            animation: fadeInUp 0.5s forwards;
        }

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

        .product-card:nth-child(1) { animation-delay: 0.1s; }
        .product-card:nth-child(2) { animation-delay: 0.2s; }
        .product-card:nth-child(3) { animation-delay: 0.3s; }
        .product-card:nth-child(4) { animation-delay: 0.4s; }
        .product-card:nth-child(5) { animation-delay: 0.5s; }
        .product-card:nth-child(6) { animation-delay: 0.6s; }

        /* Pulse effect on hover for cards */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }

        .product-card:hover {
            animation: pulse 1.5s infinite;
        }

        
    /* Features Section */
    .features {
      margin-top: 300px;
      padding: 80px 20px;
      background-color: var(--white);
    }

    .features-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }

    .feature-item {
      background: var(--white);
      border: 1px solid var(#0144fd);
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      width: 280px;
      transition: transform 0.3s;
      box-shadow: var(--box-shadow);
    }

    .feature-item:hover {
      transform: translateY(-10px);
    }

    .feature-icon {
      background-color:#0000fa;
      
      border-radius: 50%;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .feature-icon svg {
      width: 32px;
      height: 32px;
      stroke: white;
    }

    .feature-title {
      font-size: 1.5rem;
      color: var(#0144fd);
      margin-bottom: 10px;
    }

    .feature-desc {
      color: var(--gray-text);
      font-size: 1rem;
    }

    /* Services Section */
    .services {
      padding: 80px 20px;
      background-color: #fdf8f0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 2.5rem;
      color: #0144fd;
      margin-bottom: 10px;
      position: relative;
    }

    .section-title h2::after {
      content: '';
      position: absolute;
      width: 60px;
      height: 3px;
      background:#0144fd;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(#0144fd);
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: var(--box-shadow);
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .service-title {
      font-size: 1.2rem;
      color: var(#0144fd);
      margin-bottom: 10px;
    }

    .service-desc {
      font-size: 0.95rem;
      color: var(--gray-text);
    }

    @media (max-width: 768px) {
      .features-container {
        flex-direction: column;
        align-items: center;
      }
    }
body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
        
        .contact-section {
            background-image: url('../images/wcu.webp'); /* Replace with your image path */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 100px 20px;
            text-align: center;
            position: relative;
        }
        
        /* Overlay to make text more readable */
        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
            z-index: 1;
        }
        
        .contact-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        p {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .contact-button {
            display: inline-block;
            background-color: #ffffff;
            color: #000;
            padding: 15px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .contact-button:hover {
            background-color: #2a52be;
            transform: translateY(-2px);
        }
       
        /* Info Section */
        .info-section {
            padding: 80px 0;
            background: white;
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 0;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .info-box {
            position: relative;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .image-overlay {
            padding: 0;
            overflow: hidden;
        }

        .image-overlay img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .image-overlay:hover img {
            transform: scale(1.05);
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            font-size: 28px;
            color: #DAA520; /* #0144fdenrod */
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .play-button:hover {
            background-color: #FFD700; /* #0144fd */
            color: white;
        }

        .text-box.light {
            background: white;
            color: #333;
        }

        .text-box.dark {
            background: black;
            color: white;
        }

        .text-box h2 {
            margin-top: 10px;
            font-size: 24px;
            font-weight: bold;
            color: #2a52be; /* #0144fdenrod */
        }

        .text-box.dark h2 {
            color: white; /* #0144fd */
        }

        .text-box p {
            font-size: 15px;
            line-height: 1.6;
            margin: 20px 0;
        }

        .features {
            list-style: none;
            padding: 0;
            margin: 30px 0 30px;
            background: transparent;
        }

        .features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }

        /* .features li:before {
            content: "✓";
            color: #FFD700; 
            position: absolute;
            left: 0;
        } */

        .btn-outline {
            border: 2px solid #2a52be; /* #0144fdenrod */
            background: transparent;
            color: #2a52be; /* #0144fdenrod */
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }

        .text-box.dark .btn-outline {
            border-color: #f6f7fa; /* #0144fd */
            color: #f9fafd; /* #0144fd */
        }

        .btn-outline:hover {
            background: #2a52be; /* #0144fdenrod */
            color: white;
        }

        .text-box.dark .btn-outline:hover {
            background: white; /* #0144fd */
            color: #0c0c0c;
        }

        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            .info-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
        }

        @media screen and (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .cta-links {
                flex-direction: column;
                align-items: center;
            }
f
            .cta-button {
                width: 100%;
                justify-content: center;
            }

            .story-container {
                flex-direction: column;
            }

            .story-left, .story-right {
                width: 100%;
            }

            .story-left h2 {
                font-size: 2rem;
            }
        }
/* Trusted Partners Section - Specific CSS */
.trusted-partners {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.trusted-partners h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    display: inline-block;
}

.trusted-partners h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0144fd, #0066ff);
}

/* Client logo grid container */
.trusted-partners .client-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual logo container */
.trusted-partners .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 120px;
}

.trusted-partners .logo img {
    width: 250px;
    height: fit-content;
}

.trusted-partners .logo:hover {
    transform: translateY(-5px);
}

/* Logo image */
.trusted-partners .logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trusted-partners .logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .trusted-partners .client-logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .trusted-partners .client-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .trusted-partners .client-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trusted-partners h2 {
        font-size: 1.8rem;
    }
    
    .trusted-partners .logo {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .trusted-partners .client-logos {
        grid-template-columns: 1fr;
    }
}


/* Testimonial box */
.testimonial-box {
  max-width: 900px;
  /* max-height: 300px; */
  margin: 0 auto;
  display: flex;
  background: rgb(10, 10, 10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-radius: 6px;
  overflow: hidden;
  flex-direction: row;
  color: white;
}

.testimonial-image {
  flex: 1;
  min-width: 200px;
}

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

.testimonial-content {
  flex: 2;
  padding: 40px;
  position: relative;
}

.quote-icon {
  font-size: 60px;
  color: #fdf9f9;
  line-height: 1;
  margin-bottom: 20px;
}

.quote-text {
  font-size: 18px;
  font-weight: 600;
  color: #faf9f9;
  margin-bottom: 30px;
}

.author-name {
  font-weight: bold;
  color: #dad8d8;
  margin-bottom: 5px;
}

.author-title {
  font-size: 14px;
  color: #dad6d6;
}

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

  .testimonial-image {
    height: 300px;
  }

  .testimonial-content {
    padding: 20px;
  }
}
.testimonial-slide-section {
  /* background: url('/asstes/1.jpg') no-repeat center center/cover; */
  padding: 100px 20px;
  text-align: center;
  color: rgb(245, 245, 245);
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

.testimonial-slide-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0144fd;
  z-index: 1;
  color: rgb(243, 239, 239);
}

.container {
  position: relative;
  z-index: 2;
  max-width: 90%;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  display: inline-block;
  /* background: #1d4ed8; */
  padding: 8px 20px;
  border-radius: 4px;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: #f8f5f5;
  transition: all 0.3s ease;
}

.testimonial-author {
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.author-name {
  font-weight: bold;
  /* background-color: #1d4ed8; */
  display: inline-block;
  padding: 6px 12px;
  border-radius: 3px;
}

.author-title {
  font-size: 13px;
  color: #dad8d8;
  margin-top: 5px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.form-success {
  color: green;
  background: #e6ffe6;
  padding: 10px;
  border: 1px solid #b3ffb3;
  margin-top: 10px;
}
.dot {
  width: 14px;
  height: 4px;
  background-color: #dad5d5;
  opacity: 0.5;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  opacity: 1;
  width: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    padding: 6px 16px;
  }

  .testimonial-text {
    font-size: 15px;
  }
}
/* Callback Section */
.callback-section {
  min-height: 60vh;
  padding: 80px 20px;
  background: #fff;
  text-align: justify;
}

.callback-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.callback-text {
  flex: 1 1 40%;
}

.callback-text h2 {
  color: #2a52be;
  font-size: 32px;
  margin-bottom: 10px;
}

.callback-text hr {
  width: 60px;
  margin: 0 auto 20px;
  border: 1px solid #ccc;
}

.callback-form {
  flex: 1 1 55%;
}

.callback-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.callback-form input,
.callback-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  background: #f4f4f4;
  font-size: 14px;
}

.callback-form button {
  padding: 12px 30px;
  background: #4269e1;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 15px;
}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            overflow-x: hidden;
            color: #333;
        }
        
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            background-color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Hide radio buttons */
        .hero input[type="radio"] {
            position: absolute;
            left: -9999px;
        }

        .hero-slider {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        /* Base slide styles */
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            visibility: hidden;
            filter: brightness(0.65);
            z-index: 1;
        }

        /* Default transition for all slides (inactive state) */
        .slide {
            transition: opacity 1.5s ease-out, 
                       transform 1.5s ease-out, 
                       filter 1.5s ease-out,
                       visibility 0s 1.5s;
        }

        /* Enhanced zoom effect for slides */
        @keyframes infiniteZoom {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.3); /* Increased from 1.15 to 1.3 for more zoom */
            }
        }

        /* Apply infinite zoom to all slides */
        .slide {
            animation: infiniteZoom 15s infinite alternate ease-in-out; /* Reduced duration from 20s to 15s for faster zoom */
        }

        /* Specific inactive states for each slide */
        .slide:nth-child(1) {
            transform: scale(1.2) translateX(-30px);
        }

        .slide:nth-child(2) {
            transform: scale(1.3);
        }

        .slide:nth-child(3) {
            transform: scale(1.2) translateY(30px);
        }

        /* Overlay gradient for better text legibility */
        .slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%);
            z-index: 1;
        }

        /* CSS-only slider functionality with different transitions */
        #slide1:checked ~ .hero-slider .slide:nth-child(1) {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateX(0);
            transition: opacity 1.5s cubic-bezier(0.7, 0, 0.3, 1), 
                        transform 1.5s cubic-bezier(0.7, 0, 0.3, 1), 
                        filter 1.5s cubic-bezier(0.7, 0, 0.3, 1),
                        visibility 0s;
            z-index: 2;
        }

        #slide2:checked ~ .hero-slider .slide:nth-child(2) {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
            transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 1.5s cubic-bezier(0.4, 0, 0.2, 1), 
                        filter 1.5s cubic-bezier(0.4, 0, 0.2, 1),
                        visibility 0s;
            z-index: 2;
        }

        #slide3:checked ~ .hero-slider .slide:nth-child(3) {
            opacity: 1;
            visibility: visible;
            transform: scale(1) translateY(0);
            transition: opacity 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), 
                        transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), 
                        filter 1.5s cubic-bezier(0.2, 0.8, 0.2, 1),
                        visibility 0s;
            z-index: 2;
        }

        /* Hero Content Container */
        .hero-content-container {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            width: 100%;
            padding: 0 20px;
            color: white;
            margin-top: -10%;
            text-align: center;
        }

        /* Individual hero content blocks */
        .hero-content {
            position: absolute;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, 
                        transform 0.8s ease-out,
                        visibility 0s 0.8s;
            padding: 0 40px;
            box-sizing: border-box;
           
        }

        #slide1:checked ~ .hero-content-container .hero-content:nth-child(1),
        #slide2:checked ~ .hero-content-container .hero-content:nth-child(2),
        #slide3:checked ~ .hero-content-container .hero-content:nth-child(3) {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            transition: opacity 0.8s ease-out 0.3s, 
                        transform 0.8s ease-out 0.3s,
                        visibility 0s;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #ffffff, #e0e0e0, #ffffff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradientShift 8s infinite alternate;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 100% 50%;
            }
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.4;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-btn {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .primary-btn {
            background: linear-gradient(45deg, #0144fd, #0066ff);
            color: white;
            box-shadow: 0 4px 15px rgba(20, 8, 106, 0.4);
        }

        .secondary-btn {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(20, 8, 106, 0.6);
        }

        .secondary-btn:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-3px);
        }

        .hero-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .hero-btn:hover::after {
            transform: translateX(100%);
        }

        /* Navigation Arrows */
        .slider-arrows {
            position: absolute;
            width: 100%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
        }

        .arrow-btn {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .arrow-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .arrow-icon {
            width: 20px;
            height: 20px;
            position: relative;
        }

        .left-arrow .arrow-icon::before,
        .left-arrow .arrow-icon::after {
            content: '';
            position: absolute;
            width: 15px;
            height: 2px;
            background-color: white;
            left: 0;
        }

        .left-arrow .arrow-icon::before {
            transform: rotate(-45deg);
            top: 6px;
        }

        .left-arrow .arrow-icon::after {
            transform: rotate(45deg);
            bottom: 6px;
        }

        .right-arrow .arrow-icon::before,
        .right-arrow .arrow-icon::after {
            content: '';
            position: absolute;
            width: 15px;
            height: 2px;
            background-color: white;
            right: 0;
        }

        .right-arrow .arrow-icon::before {
            transform: rotate(45deg);
            top: 6px;
        }

        .right-arrow .arrow-icon::after {
            transform: rotate(-45deg);
            bottom: 6px;
        }

        /* Auto-sliding animation - Updated for 5-second intervals */
        @keyframes slide1 {
            0%, 20% { 
                opacity: 1;
                visibility: visible;
                transform: scale(1) translateX(0);
                z-index: 2;
            }
            20.01%, 100% { 
                opacity: 0;
                visibility: hidden;
                transform: scale(1.2) translateX(-30px);
                z-index: 1;
            }
        }

        @keyframes slide2 {
            0%, 20% { 
                opacity: 0;
                visibility: hidden;
                transform: scale(1.3);
                z-index: 1;
            }
            20.01%, 40% { 
                opacity: 1;
                visibility: visible;
                transform: scale(1);
                z-index: 2;
            }
            40.01%, 100% { 
                opacity: 0;
                visibility: hidden;
                transform: scale(1.3);
                z-index: 1;
            }
        }

        @keyframes slide3 {
            0%, 40% { 
                opacity: 0;
                visibility: hidden;
                transform: scale(1.2) translateY(30px);
                z-index: 1;
            }
            40.01%, 60% { 
                opacity: 1;
                visibility: visible;
                transform: scale(1) translateY(0);
                z-index: 2;
            }
            60.01%, 100% { 
                opacity: 0;
                visibility: hidden;
                transform: scale(1.2) translateY(30px);
                z-index: 1;
            }
        }

        @keyframes content1 {
            0%, 20% { 
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            20.01%, 100% { 
                opacity: 0;
                visibility: hidden;
                transform: translateY(30px);
            }
        }

        @keyframes content2 {
            0%, 20% { 
                opacity: 0;
                visibility: hidden;
                transform: translateY(30px);
            }
            20.01%, 40% { 
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            40.01%, 100% { 
                opacity: 0;
                visibility: hidden;
                transform: translateY(30px);
            }
        }

        @keyframes content3 {
            0%, 40% { 
                opacity: 0;
                visibility: hidden;
                transform: translateY(30px);
            }
            40.01%, 60% { 
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            60.01%, 100% { 
                opacity: 0;
                visibility: hidden;
                transform: translateY(30px);
            }
        }

        /* Auto slide if no checkbox is checked - Updated for 15s total duration (5s per slide) */
        .hero:not(:has(#slide1:checked, #slide2:checked, #slide3:checked)) .slide:nth-child(1) {
            animation: slide1 15s infinite, infiniteZoom 15s infinite alternate ease-in-out;
        }

        .hero:not(:has(#slide1:checked, #slide2:checked, #slide3:checked)) .slide:nth-child(2) {
            animation: slide2 15s infinite, infiniteZoom 15s infinite alternate ease-in-out;
        }

        .hero:not(:has(#slide1:checked, #slide2:checked, #slide3:checked)) .slide:nth-child(3) {
            animation: slide3 15s infinite, infiniteZoom 15s infinite alternate ease-in-out;
        }

        .hero:not(:has(#slide1:checked, #slide2:checked, #slide3:checked)) .hero-content:nth-child(1) {
            animation: content1 15s infinite;
        }

        .hero:not(:has(#slide1:checked, #slide2:checked, #slide3:checked)) .hero-content:nth-child(2) {
            animation: content2 15s infinite;
        }

        .hero:not(:has(#slide1:checked, #slide2:checked, #slide3:checked)) .hero-content:nth-child(3) {
            animation: content3 15s infinite;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            .hero-subtitle {
                font-size: 1.2rem;
            }
            .hero-content-container {
            position: relative;
            z-index: 3;
            max-width: 1200px;
            width: 100%;
            padding: 0 20px;
            color: white;
            top: -40px;
            left: - 15%;
            text-align: center;
            }
        }

        @media (max-width: 768px) {
            .hero {
                height: 90vh;
            }
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 30px;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .hero-btn {
                padding: 12px 25px;
                font-size: 0.9rem;
            }

            .arrow-btn {
                width: 40px;
                height: 40px;
            }
        }

        /* For browsers that don't support :has - fallback to standard animation */
        @supports not selector(:has(*)) {
            .slide:nth-child(1) {
                animation: slide1 15s infinite, infiniteZoom 15s infinite alternate ease-in-out;
            }
            .slide:nth-child(2) {
                animation: slide2 15s infinite, infiniteZoom 15s infinite alternate ease-in-out;
            }
            .slide:nth-child(3) {
                animation: slide3 15s infinite, infiniteZoom 15s infinite alternate ease-in-out;
            }
            .hero-content:nth-child(1) {
                animation: content1 15s infinite;
            }
            .hero-content:nth-child(2) {
                animation: content2 15s infinite;
            }
            .hero-content:nth-child(3) {
                animation: content3 15s infinite;
            }
        }

