* {
    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);
  }
  .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;
    }
    

 /* 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;
  }
}

 




.company-hero {
  position: relative;
  height: 100vh;
  background-color: #000814;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.company-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.company-background i {
  position: absolute;
  animation: float 10s linear infinite;
}

@keyframes float {
  0% { transform: translateY(100vh) rotate(0deg); }
  100% { transform: translateY(-100vh) rotate(360deg); }
}

.company-content {
  position: relative;
  z-index: 2;
  color: #fff;
  opacity: 0;
  animation: slideIn 1.2s ease-out forwards;
}

.company-title {
  font-size: 3.5rem;
  color: #00d1ff;
  font-weight: bold;
  text-shadow: 0 0 20px #00d1ff88;
  animation: pulse 2s infinite;
}

.company-tagline {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #ccc;
}

@keyframes pulse {
  0%, 100% { text-shadow: 0 0 20px #00d1ff88; }
  50% { text-shadow: 0 0 40px #00d1ff; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .company-title {
    font-size: 2.2rem;
  }
  .company-tagline {
    font-size: 1rem;
  }
}


  /* About V3 Section */
.about-v3 {
    padding: 80px 20px;
    background: #121f2a;
    color: #fff;
    text-align: center;
}

.about-v3 .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00d1ff;
}

.about-description {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Core Features Section */
.core-features {
    background: #0a1c2b;
    padding: 80px 20px;
    color: white;
}

.core-features .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    color: #00d1ff;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #1a2b3c;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.feature-card:hover {
    background: #00d1ff;
    color: black;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1rem;
}

@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;
  }
}