@import "tailwindcss";

* { font-family: 'Poppins', sans-serif; }
    
    .animated-bg {
      background: linear-gradient(-45deg, #189292, #64A0A0, #A0CDC8, #052525);
      background-size: 400% 400%;
      animation: gradientFlow 15s ease infinite;
    }
    
    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    

    .particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(160, 205, 200, 0.3);
      animation: float 20s infinite ease-in-out;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.3; }
      25% { transform: translateY(-100px) translateX(50px) rotate(90deg); opacity: 0.6; }
      50% { transform: translateY(-50px) translateX(-30px) rotate(180deg); opacity: 0.4; }
      75% { transform: translateY(-150px) translateX(20px) rotate(270deg); opacity: 0.5; }
    }
    
  
    .blur-overlay {
      backdrop-filter: blur(2px);
      transition: backdrop-filter 0.8s ease;
    }
    
   
    .carousel-container {
      overflow: hidden;
      position: relative;
    }
    
    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-out;
    }
    
    .carousel-slide {
      min-width: 100%;
      box-sizing: border-box;
    }
    
    .service-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.4s ease;
      box-shadow: 0 10px 40px rgba(16, 56, 56, 0.15);
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(16, 56, 56, 0.25);
    }
    
    .btn-primary {
      background: linear-gradient(135deg, #64A0A0, #103838);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s ease;
    }
    
    .btn-primary:hover::before {
      left: 100%;
    }
    
    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 30px rgba(170, 170, 170, 0.4);
    }
    
    .nav-link {
      position: relative;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #A0CDC8;
      transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    
    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .logo{
        width: 300px;
        height: auto;
    }
    
    .indicator.active {
      background: #A0CDC8;
      transform: scale(1.3);
    }
    

    .fade-in-up {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 0.8s ease forwards;
    }
    
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .delay-1 { animation-delay: 0.1s; }
    .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; }
    .delay-4 { animation-delay: 0.4s; }
    
    .wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,181.3C960,203,1056,213,1152,197.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
      animation: wave 10s linear infinite;
    }
    
    @keyframes wave {
      0% { background-position-x: 0; }
      100% { background-position-x: 1440px; }
    }