* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body, html {
    font-family: 'Segoe UI', sans-serif;
    background-color: #000;
    color: white;
    height: 100%;
    overflow-x: hidden;
  }

  /* NAVBAR */
  nav {
    width: 100%;
    padding: 15px 40px;
    background: rgba(0, 174, 239, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    z-index: 99;
    backdrop-filter: blur(8px);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-logo img {
    height: 63px;
    width: auto;
  }

  .nav-logo span {
    font-size: 1.5rem;
    color: #00AEEF;
    font-weight: bold;
  }

  .nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: 0.3s ease;
  }

  .nav-links a:hover {
    color: #00AEEF;
  }

  .nav-links .cta {
    background-color: #00AEEF;
    color: black;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s ease;
  }

  .nav-links .cta:hover {
    background-color: #00ccdd;
    transform: scale(1.05);
  }

  /* HERO SECTION */
  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    position: relative;
  
  }

  .background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
      background-position: cover;
  }

  .background span {
    position: absolute;
    color: white(255, 255, 255, 0.08);
    font-family: monospace;
    animation: float 10s linear infinite;
  }

  @keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); }
    100% { transform: translateY(-100vh) rotate(360deg); }
  }

  .content {
    z-index: 2;
    position: relative;
  }

  .title {
    font-size: 2.6rem;
    margin-bottom: 15px;
    color: white;
    opacity: 0;
    animation: typewriter 3s steps(50, end) 1 forwards;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #00AEEF;
  }

  @keyframes typewriter {
    from { width: 0; opacity: 1; }
    to { width: 100%; opacity: 1; }
  }

  .subtext {
    font-size: 1.2rem;
    color: #ccc;
    opacity: 0;
    animation: fadeIn 2s ease-in 3s forwards;
  }

  @keyframes fadeIn {
    to { opacity: 1; }
  }

  .buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
  }

  .buttons button {
    background-color: #00AEEF;
    color: #000;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .buttons button:hover {
    animation: pulse 1s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.7);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 10px 10px rgba(0, 174, 239, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(0, 174, 239, 0);
    }
  }

  @media screen and (max-width: 768px) {
    nav {
      flex-direction: column;
      gap: 15px;
      padding: 10px 20px;
    }
    .nav-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }
    .title {
      font-size: 1.8rem;
    }
    .subtext {
      font-size: 1rem;
    }
  }
/* Dropdown Style */
.dropdown {
position: relative;
}

.dropdown > a {
cursor: pointer;
}

.dropdown-content {
position: absolute;
top: 120%;
left: 0;
background-color: rgba(0, 0, 0, 0.9);
border: 1px solid #00AEEF;
border-radius: 8px;
padding: 10px 0;
display: none;
min-width: 180px;
z-index: 100;
}

.dropdown-content a {
display: block;
padding: 10px 20px;
text-decoration: none;
color: white;
font-size: 0.95rem;
transition: background 0.5s ease-in;
  transition: delay;
}

.dropdown-content a:hover {
background-color: #00AEEF;
color: black;
}

.dropdown:hover .dropdown-content {
display: block;
}

/* Overview Section */

.section-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00AEEF;
    margin-bottom: 10px;
  }
  
  .overview-unique {
    background-color: #0a0a0a;
    padding: 80px 40px;
    color: #eee;
  }
  
  .overview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .overview-text {
    flex: 1 1 500px;
    animation: fadeInLeft 3s ease forwards;
    opacity: 0;
  }
  
  .overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
  }
  
  .overview-text h2 span {
    color: #00AEEF;
    font-weight: bold;
  }
  
  .overview-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ccc;
  }
  
  .overview-image {
    flex: 1 1 400px;
    animation: fadeInRight 3s ease forwards;
    opacity: 0;
  }
  
  .overview-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 174, 239, 0.3);
  }
  
  /* Animations */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .overview-container {
      flex-direction: column;
    }
  
    .overview-text h2 {
      font-size: 2rem;
      text-align: center;
    }
  
    .overview-text p {
      text-align: center;
    }
  
    .overview-image {
      text-align: center;
    }
  
    .section-label {
      text-align: center;
    }
  }

 


      /* Footer */
       /* Footer */
       .clean-footer {
        background: #000;
        color: #fff;
        font-family: 'Segoe UI', sans-serif;
        padding: 40px 20px;
      }
    
      .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
      }
    
      .footer-section {
        flex: 1 1 250px;
      }
    
      .footer-logo img {
        width: 250px;
        margin-bottom: 5px;
        margin-left: -30px;
      }
    
      .footer-section h4 {
        color: #00d1ff;
        font-size: 16px;
        margin-bottom: 10px;
        padding-bottom: 5px;
      }
    
      .footer-section a {
        display: block;
        color: #fff;
        font-size: 14px;
        text-decoration: none;
        margin-bottom: 6px;
      }
    
      .footer-section a:hover {
        color: #00d1ff;
      }
    
      .social-icons-horizontal {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }
    
      .social-icons-horizontal img {
        width: 25px;
        height: 25px;
      }
    
      .mini-form input,
      .mini-form textarea {
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 8px;
        margin-bottom: 10px;
        background: #fff;
        color: #000;
        font-size: 14px;
      }
    
      .mini-form button {
        width: 100%;
        padding: 10px;
        background: #00d1ff;
        color: #fff;
        font-weight: bold;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.3s;
      }
    
      .mini-form button:hover {
        background-color: #00aacc;
        transform: translateY(-2px);
      }
    
      .footer-bottom-line {
        text-align: center;
        margin-top: 30px;
        font-size: 14px;
        color: #aaa;
      }
    
      .footer-section iframe {
        width: 100%;
        height: 180px;
        border-radius: 6px;
      }
      .social-icons-horizontal a {
      display: inline-block;
      padding: 6px;
      border-radius: 50%;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }
    
    .social-icons-horizontal a:hover {
      transform: scale(1.2);
      
    }
    
    .social-icons-horizontal a img {
      width: 25px;
      height: 25px;
      display: block;
    }
    
    
      /* ✅ Responsive */
      @media (max-width: 768px) {
        .footer-content {
          flex-direction: column;
          align-items: center;
        }
    
        .footer-section {
          width: 100%;
          text-align: center;
        }
    
        .social-icons-horizontal {
          justify-content: center;
        }
    
        .footer-logo img {
          margin: 0 auto 15px;
        }
      }




