        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            overflow: -moz-scrollbars-none;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        html::-webkit-scrollbar, 
        body::-webkit-scrollbar {
            display: none;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: #EFEAE6;
            color: #0C2C47;
        }

       .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ✅ FULL-COVER VIDEO BACKGROUND */
  .video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 277.78vh; /* width = height * 16/9 */
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: 0;
  }

  .video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  /* SEMI-TRANSPARENT OVERLAY */
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(12, 44, 71, 0.63) 0%,
      rgba(45, 86, 82, 0.67) 100%
    );
    z-index: 1;
  }

  /* HERO CONTENT */
  .hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.3s;
  }

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

  .hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f5ae1f;
    text-shadow: 2px 2px 4px rgba(12, 44, 71, 0.3);
  }

  .hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #e4f2ea;
  }

  /* BUTTONS */
  .cta-button,
  .cta-contact {
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .cta-button {
    background: #f5ae1f;
    color: #47440c;
    box-shadow: 0 10px 30px rgba(226, 165, 77, 0.3);
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(226, 165, 77, 0.5);
    background: #d89a3d;
  }

  .cta-contact {
    background: #ffc122;
    color: #0c2c47;
    box-shadow: 0 10px 30px rgba(226, 165, 77, 0.3);
  }

  .cta-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(226, 165, 77, 0.5);
    background: #a7680b;
  }
        .section {
            padding: 5rem 2rem;
            position: relative;
        }

        .section:nth-child(even) {
            background: #E4F2EA;
        }

        .section:nth-child(odd) {
            background: #FFFFFF;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            top:0;
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 1rem;
            color: #0C2C47;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #2D5652;
            margin-bottom: 3rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.2s;
        }

        .section-title.animate,
        .section-subtitle.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: #FFFFFF;
            padding: 2rem;
            border-radius: 20px;
            border: 2px solid #E4F2EA;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(50px) scale(0.9);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(12,44,71,0.08);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(151,211,205,0.2), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card.animate {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: #97D3CD;
            box-shadow: 0 20px 40px rgba(12,44,71,0.15);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #2D5652, #97D3CD);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(45,86,82,0.2);
        }

        .service-card:hover .service-icon {
            transform: (360deg) scale(1.1);
            background: linear-gradient(135deg, #f5ae1f, #d89a3d);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #0C2C47;
            font-weight: 600;
        }

        .service-card p {
            color: #2D5652;
            line-height: 1.6;
        }

        .features-section {
            background: linear-gradient(135deg, #E4F2EA 0%, #FFFFFF 100%);
            position: relative;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
            background: #FFFFFF;
            border-radius: 20px;
            border: 2px solid #97D3CD;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s ease;
            box-shadow: 0 5px 20px rgba(12,44,71,0.08);
        }

        .feature-item.animate {
            opacity: 1;
            transform: scale(1);
        }

        .feature-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(12,44,71,0.15);
            border-color: #f5ae1f;
        }

        .feature-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: #f5ae1f;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(12,44,71,0.1);
        }

        .feature-item h4 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #0C2C47;
            font-weight: 600;
        }

        .feature-item p {
            color: #2D5652;
            line-height: 1.6;
        }

        .equipment-showcase {
            background: #FFFFFF;
        }

        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .equipment-card {
            background: #FFFFFF;
            border-radius: 20px;
            overflow: hidden;
            border: 2px solid #E4F2EA;
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateX(-50px);
            box-shadow: 0 5px 20px rgba(12,44,71,0.08);
        }

        .equipment-card.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .equipment-card:hover {
            transform: translateY(-10px);
            border-color: #f5ae1f;
            box-shadow: 0 20px 50px rgba(12,44,71,0.2);
        }

        .equipment-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #2D5652, #97D3CD);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4.5rem;
            position: relative;
            overflow: hidden;
        }

        .equipment-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(12,44,71,0.1);
            transition: all 0.3s ease;
        }

        .equipment-card:hover .equipment-image {
            background: linear-gradient(135deg, #f5ae1f, #d89a3d);
        }

        .equipment-card:hover .equipment-image::before {
            background: rgba(12,44,71,0.05);
        }

        .equipment-content {
            padding: 2rem;
        }

        .equipment-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #0C2C47;
            font-weight: 600;
        }

        .equipment-content p {
            color: #2D5652;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .equipment-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .feature-tag {
            background: #E4F2EA;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #2D5652;
            border: 1px solid #97D3CD;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .feature-tag:hover {
            background: #f5ae1f;
            color: #0C2C47;
            border-color: #f5ae1f;
        }

       

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

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

            .section-title {
                font-size: 2rem;
            }

            .services-grid, .equipment-grid {
                grid-template-columns: 1fr;
            }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
            z-index: 2;
        }

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

        .scroll-indicator::after {
            content: '↓';
            font-size: 2rem;
            color: #f5ae1f;
        }

        .divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #2D5652, #f5ae1f, #97D3CD);
            margin: 0 auto 2rem;
            border-radius: 2px;
            opacity: 0;
            transform: scaleX(0);
            transition: all 0.8s ease 0.4s;
        }

        .divider.animate {
            opacity: 1;
            transform: scaleX(1);
        }