 /* ===== SERVICES ===== */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }
 .prev,
.next {
 
  display: none !important;
}

 body {
   font-family: Arial, sans-serif;
   line-height: 1.6;
   background: #fff;
   color: #000;
   overflow-x: hidden;
 }

 /* ===== UTILITIES ===== */
 .section-padding {
   padding: 5rem 1.5rem;
 }

 .container-max {
   max-width: 100%;
   margin: 0 auto;
 }

 .text-center {
   text-align: center;
 }

 .text-white {
   color: #fff;
 }

 .text-black {
   color: #000;
 }

 .text-gray-700 {
   color: #555;
 }

 .text-sm {
   font-size: 0.9rem;
 }

 .font-semibold {
   font-weight: 600;
 }

 .font-bold {
   font-weight: bold;
 }

 .mb-4 {
   margin-bottom: 1rem;
 }

 .mb-6 {
   margin-bottom: 1.5rem;
 }

 .mb-8 {
   margin-bottom: 2rem;
 }

 /* ===== HERO ===== */
 .hero {
   width: auto;
   margin: 0 2rem;
   height: 60vh;
   position: relative;
   background-image: linear-gradient(rgba(12, 3, 51, 0.3), rgba(12, 3, 51, 0.3));
   color: #fff;
   text-align: center;
   overflow: hidden;
 }

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

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

 .hero-overlay {
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.2);
 }

 .hero-content {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   z-index: 2;
 }

 .hero-text {
   font-size: 3rem;
   font-weight: bold;
   margin-bottom: 20px;
 }

 /* Scroll Indicator */
 .scroll-indicator {
   width: 2rem;
   height: 2rem;
   margin: 2rem auto 0;
   animation: bounce 2s infinite;
   color: #FFD60A;
 }

 /* ===== OVERVIEW ===== */
 .overview {
   background: #fff;
 }

 .overview-grid {
   display: grid;
   grid-template-columns: 1fr;
   gap: 2rem;
   align-items: center;
 }

 @media (min-width: 1024px) {
   .overview-grid {
     grid-template-columns: 1fr 1fr;
   }
 }

 .yellow-box {
   background: #FFD60A;
   position: absolute;
   top: -2rem;
   left: -2rem;
   width: 6rem;
   height: 6rem;
   border-radius: 0.5rem;
   z-index: -1;
 }

 .overview-img {
   position: relative;
 }

 .overview-img img {
   width: 100%;
   border-radius: 0.5rem;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
 }

 /* ===== SERVICES SECTIONS ===== */
 .grid {
   display: grid;
   grid-template-columns: 1fr;
 }

 @media (min-width: 1024px) {
   .grid-2 {
     grid-template-columns: 1fr 1fr;
   }
 }

 .content {
   padding: 3rem;
   display: flex;
   flex-direction: column;
   justify-content: center;
 }

 .bg-yellow {
   background-color: #000;
   color: white;
 }

 .bg-black {
   background-color: #000;
   color: white;
 }

 .content h3 {
   font-size: 1.8rem;
   font-weight: bold;
   margin-bottom: 1rem;
 }

 .content p {
   font-size: 1.1rem;
   line-height: 1.7;
 }

 .content img.icon {
   width: 60px;
   height: 60px;
   margin-bottom: 1.5rem;
 }

 .image {
   position: relative;
   min-height: 400px;
 }

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

 /* Layout variations */
 .layout-left .content {
   order: 1;
 }

 .layout-left .image {
   order: 2;
 }

 .layout-right .image {
   order: 1;
 }

 .layout-right .content {
   order: 2;
 }

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

 .fade-in:nth-child(1) {
   animation-delay: 0.2s;
 }

 .fade-in:nth-child(2) {
   animation-delay: 0.4s;
 }

 .fade-in:nth-child(3) {
   animation-delay: 0.6s;
 }

 /* Scroll-triggered animation for grid sections */
 .grid.grid-2 {
   opacity: 0;
   transform: translateY(50px);
   transition: opacity 2s ease, transform 2s ease;
 }

 .grid.grid-2.animate {
   opacity: 1;
   transform: translateY(0);
 }

 .grid.grid-2 img {}

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

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

 @keyframes bounce {

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

   50% {
     transform: translateY(10px);
   }
 }

 /* ===== MOBILE RESPONSIVE ===== */
 @media (max-width: 768px) {
   .hero {
     height: 70vh;
   }
   .overview-grid{
     padding: 1rem !important;
   }
   .hero-content p {
    display: none !important;
  }
  .hero img {
    width: 100%;
    height: 100%;
    object-fit: fill;
 }

   .hero-content {
     padding: 1rem;
   }

   .hero-text {
     font-size: 2rem;
   }

   .overview {
     height: auto;
     padding: 2rem 0;
     margin-bottom: 0;
   }

   .overview-grid {
     gap: 1rem;
   }

   .content {
     display: grid;
     grid-template-columns: 1fr;
     place-items: center;
     padding: 2rem 1rem;
   }

   .content h3 {
     font-size: 1.5rem;
   }

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

   .image {
     min-height: 300px;
   }

   .grid.grid-2 {
     margin-bottom: 1rem !important;
     margin: 0 !important;
     padding:  0;
     width: 100% !important;
     display: flex;
    flex-wrap: wrap-reverse;
   }
 }

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

   .content h3 {
     font-size: 1.3rem;
   }

   .content {
     padding: 1.5rem 1rem;
   }

   .image {
     min-height: 250px;
   }
 }


 .layout-left {
   background-color: #ffffff;
   width: 94%;
   margin-left: 3rem;
   height: auto;
 }

 .layout-right {
   background-color: #ffffff;
   width: 94%;
   margin-left: 3rem;
   height: auto;
 }