* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

nav.scrolled {
  background: transparent rgba(0, 28, 90, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0066cc, #004499);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  display: block;
  transition: all 0.3s;
  border-radius: 5px;
}

.nav-menu > li > a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(20, 33, 61, 0.98);
  min-width: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.nav-menu li:hover .dropdown {
  display: block;
  animation: fadeIn 0.3s;
}

.dropdown a {
  padding: 0.8rem 1.5rem;
  border-radius: 0;
}

.dropdown a:hover {
  background: rgba(0, 102, 204, 0.8);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Slideshow */
.hero-slideshow {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6),
    rgba(0, 51, 102, 0.5)
  );
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 900px;
}

.slide-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: slideUp 1s ease-out;
}

.slide-content p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  animation: slideUp 1s ease-out 0.2s backwards;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #0066cc, #004499);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s;
  animation: slideUp 1s ease-out 0.4s backwards;
  box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 102, 204, 0.6);
}

.about-content .cta-button {
  text-align: center;
  display: block;
  width: fit-content;
  margin-inline: auto;
}

.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator.active {
  background: #fff;
  width: 30px;
  border-radius: 6px;
}

/* Section Styles */
section {
  padding: 5rem 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #14213d;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0066cc, #004499);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #14213d;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s;
}

.feature-item:hover {
  background: #e9ecef;
  transform: translateX(10px);
}

.feature-icon {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0066cc, #004499);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

/* Stats */
.stats-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #14213d, #1f2937);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat h3 {
  font-size: 3rem;
  font-weight: 700;
  color: #fca311;
  margin-bottom: 10px;
}

.stat p {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0066cc, #004499);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

input,
textarea {
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #0066cc;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

button[type="submit"] {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #0066cc, #004499);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.news-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  color: #0066cc;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.news-card h3 {
  margin-bottom: 1rem;
  color: #14213d;
}

/* Footer */
footer {
  background: #14213d;
  color: #fff;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #0066cc;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #0066cc;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(20, 33, 61, 0.98);
    flex-direction: column;
    padding: 1rem;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    margin-left: 1rem;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

.bg-light {
  background: #f8f9fa;
}

/* Premium About Section */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-image-wrapper {
  position: relative;
}

.about-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle at center,
    rgba(0, 102, 204, 0.4),
    transparent 70%
  );
  transform: translate(-50%, -50%);
  filter: blur(60px);
  z-index: 0;
}

.about-image {
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-content {
  z-index: 2;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.about-card {
  background: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.about-card h3 {
  margin-top: 1rem;
  color: #14213d;
}

.about-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Parallax effect */
[data-parallax] {
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s ease-out;
}

/* Responsive */
@media (max-width: 992px) {
  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image-wrapper {
    order: -1;
  }

  .about-cards {
    justify-content: center;
  }

  .about-glow {
    width: 300px;
    height: 300px;
  }
}

/* Team Section */
.team-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.25);
}

.team-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-card h3 {
  color: #14213d;
  margin-bottom: 0.3rem;
  font-size: 1.25rem;
}

.team-card .role {
  color: #007bff;
  font-weight: 600;
  font-size: 0.95rem;
}

.team-card .tagline {
  color: #555;
  font-size: 0.9rem;
  margin: 0.8rem 0 1.2rem;
}

.social-links a {
  color: #004aad;
  font-size: 1.1rem;
  margin: 0 8px;
  transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
  color: #007bff;
  transform: scale(1.2);
}

/* Team Modal */
.team-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 33, 61, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(6px);
}
.team-modal.show {
  display: flex;
  animation: fadeIn 0.35s ease;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  max-width: 800px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: slideUp 0.4s ease;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 1.8rem;
  color: #004aad;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #007bff;
}

.modal-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25);
}

.modal-info h3 {
  color: #14213d;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-info .role {
  color: #007bff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-info p {
  color: #444;
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .modal-content {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .modal-photo img {
    width: 140px;
    height: 140px;
  }
}

/* === About Us Page Styling === */

/* Hero Section */
.about-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 60, 0.6);
}
.about-hero .hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}
.about-hero h1 span {
  color: #00aaff;
}
.about-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* About Overview */
.about-overview .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-overview img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.about-overview h2 {
  color: #14213d;
  margin-bottom: 1rem;
}
.about-overview p {
  color: #555;
  line-height: 1.6;
}

/* Vision & Mission */
.vision-mission .vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.vm-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0, 102, 204, 0.3);
}
.vm-icon {
  font-size: 2rem;
  color: #0066cc;
  margin-bottom: 1rem;
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.value-card {
  background: #fff;
  border-radius: 15px;
  padding: 1.8rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 102, 204, 0.25);
}
.value-icon {
  font-size: 2rem;
  color: #0066cc;
  margin-bottom: 1rem;
}

/* Team Section */
.team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.team-card {
  background: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 102, 204, 0.25);
}
.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Team Modal */
.team-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.team-modal.show {
  display: flex;
}
.team-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
  position: relative;
}
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.8rem;
  color: #333;
  cursor: pointer;
}
.team-modal img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.modal-role {
  color: #0066cc;
  font-weight: 600;
}
.modal-bio {
  color: #555;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-overview .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Technology Section */
.tech-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eaf3ff 100%);
  position: relative;
  overflow: hidden;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tech-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-image img {
  width: 90%;
  max-width: 500px;
  height: auto;
  border-radius: 0; /* SVGs don't need rounded corners */
  box-shadow: none; /* remove shadow */
  background: none; /* remove white background */
  transition: transform 0.6s ease;
  filter: drop-shadow(
    0 8px 25px rgba(0, 102, 255, 0.2)
  ); /* subtle glow effect */

  animation: techGlow 4s ease-in-out infinite alternate;
}
@keyframes techGlow {
  from {
    filter: drop-shadow(0 8px 25px rgba(0, 102, 255, 0.15));
  }
  to {
    filter: drop-shadow(0 12px 35px rgba(0, 204, 255, 0.4));
  }
}

.tech-image:hover img {
  transform: scale(1.05);
}

.tech-content .section-title {
  color: #14213d;
}

.tech-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .tech-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tech-image {
    order: -1;
  }
}

/* Commitment Section */
.commitment-section {
  background: linear-gradient(135deg, #14213d 0%, #0d1b2a 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.commitment-section .section-title.light {
  color: #fff;
}

.commitment-section .section-subtitle.light {
  color: #d3e2ff;
  max-width: 850px;
  margin: 0 auto 3rem auto;
}

.commitment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.commitment-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.commitment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 102, 255, 0.3);
}

.commitment-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00ccff;
}

.commitment-card h3 {
  margin-bottom: 0.5rem;
}

.commitment-card p {
  color: #d3e2ff;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .commitment-section {
    padding: 70px 0;
  }
}

/* === WHY US PAGE - PREMIUM STYLING === */

/* Hero Section for Why Us */
.why-hero {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #14213d 50%, #1a2c4d 100%);
  padding: 150px 0 100px;
  overflow: hidden;
  margin-top: 80px;
}

.why-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 102, 204, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 170, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.why-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.why-hero h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.why-hero h1 span {
  background: linear-gradient(135deg, #00aaff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-hero .hero-subtitle {
  font-size: 1.3rem;
  color: #d3e2ff;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

/* Premium Features Grid */
.why-features {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.premium-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.premium-feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 102, 204, 0.08);
}

.premium-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0066cc, #00aaff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.premium-feature-card:hover::before {
  transform: scaleX(1);
}

.premium-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
  border-color: rgba(0, 102, 204, 0.2);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0066cc, #00aaff);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.feature-icon-wrapper::after {
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #0066cc, #00aaff);
  border-radius: 22px;
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity 0.4s ease;
}

.premium-feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.premium-feature-card:hover .feature-icon-wrapper::after {
  opacity: 0.6;
}

.feature-icon-wrapper .service-icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  margin: 0;
  font-size: 2.2rem;
}

.premium-feature-card h3 {
  font-size: 1.5rem;
  color: #14213d;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.premium-feature-card:hover h3 {
  color: #0066cc;
}

.premium-feature-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

/* Stats Showcase Section */
.why-stats-showcase {
  background: linear-gradient(135deg, #14213d 0%, #0d1b2a 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-stats-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(0, 102, 204, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(0, 170, 255, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.why-stats-showcase .container {
  position: relative;
  z-index: 2;
}

.why-stats-showcase .section-title {
  color: #fff;
}

.why-stats-showcase .section-subtitle {
  color: #d3e2ff;
}

.premium-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.premium-stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.premium-stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00aaff, #0066cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: all 0.4s ease;
}

.premium-stat-card:hover .stat-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 30px rgba(0, 170, 255, 0.5);
}

.premium-stat-card .stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00aaff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.premium-stat-card p {
  color: #d3e2ff;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Why Choose Us - Unique Points Section */
.why-unique {
  padding: 100px 0;
  background: #fff;
}

.unique-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
  align-items: center;
}

.unique-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.unique-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border-radius: 15px;
  border-left: 4px solid #0066cc;
  transition: all 0.3s ease;
}

.unique-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
}

.unique-number {
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0066cc, #00aaff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.unique-content h4 {
  color: #14213d;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.unique-content p {
  color: #666;
  line-height: 1.6;
}

.unique-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.unique-visual-inner {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #0066cc15, #00aaff10);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: pulse 3s ease-in-out infinite;
}

.unique-visual-inner::before {
  content: "🛡️";
  font-size: 8rem;
  filter: drop-shadow(0 10px 30px rgba(0, 102, 204, 0.3));
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 30px rgba(0, 102, 204, 0);
  }
}

/* CTA Section */
.why-cta {
  background: linear-gradient(135deg, #0066cc, #00aaff);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.why-cta .container {
  position: relative;
  z-index: 2;
}

.why-cta h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-primary {
  background: #fff;
  color: #0066cc;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-secondary:hover {
  background: #fff;
  color: #0066cc;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .unique-points {
    grid-template-columns: 1fr;
  }

  .unique-visual {
    order: -1;
  }

  .why-hero h1 {
    font-size: 2.5rem;
  }

  .why-hero .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .premium-features-grid {
    grid-template-columns: 1fr;
  }

  .premium-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* ========================================
   PREMIUM HOME PAGE STYLES
   ======================================== */

/* === Hero Section === */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video,
.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback {
  display: block;
}

.hero-video {
  display: none;
}

/* Show video when it's available */
.hero-video:not([src=""]) {
  display: block;
}

.hero-video:not([src=""]) ~ .hero-fallback {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.9) 0%,
    rgba(20, 33, 61, 0.85) 50%,
    rgba(0, 51, 102, 0.8) 100%
  );
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem;
}

.hero-content-inner {
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.home-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #00aaff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #0066cc, #00aaff);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: #0066cc;
  border: 2px solid #0066cc;
}

.btn-outline:hover {
  background: #0066cc;
  color: #fff;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow,
.btn-outline:hover .btn-arrow {
  transform: translateX(5px);
}

.trust-indicators {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.trust-icon {
  width: 24px;
  height: 24px;
  background: rgba(0, 255, 136, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff88;
  font-size: 0.8rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  position: relative;
}

.scroll-mouse::before {
  content: "";
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0%,
  100% {
    opacity: 1;
    top: 8px;
  }
  50% {
    opacity: 0.3;
    top: 16px;
  }
}

/* === Services Preview === */
.home-services {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 102, 204, 0.1);
  color: #0066cc;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.home-service-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.home-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
  border-color: rgba(0, 102, 204, 0.2);
}

.service-card-icon {
  width: 80px;
  height: 80px;
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0066cc, #00aaff);
  border-radius: 20px;
  opacity: 0.1;
  transition: all 0.4s ease;
}

.home-service-card:hover .icon-bg {
  opacity: 0.2;
  transform: scale(1.1) rotate(10deg);
}

.service-card-icon span {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.home-service-card h3 {
  font-size: 1.5rem;
  color: #14213d;
  margin-bottom: 1rem;
}

.home-service-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0066cc;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
}

/* === About Preview === */
.home-about {
  padding: 100px 0;
  background: #fff;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #14213d;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-content > p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-check {
  min-width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0066cc, #00aaff);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}

.about-feature-item h4 {
  color: #14213d;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.about-feature-item p {
  color: #666;
  font-size: 0.95rem;
}

.about-visual {
  position: relative;
}

.about-image-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image-main img {
  width: 100%;
  height: auto;
  display: block;
}

.image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #0066cc, #00aaff);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.badge-number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* === Stats Section === */
.home-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #14213d 0%, #0d1b2a 100%);
  position: relative;
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(0, 102, 204, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(0, 170, 255, 0.1) 0%,
      transparent 60%
    );
}

.home-stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.home-stat {
  text-align: center;
}

.home-stat .stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.home-stat h3 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00aaff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.home-stat p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* === Technology Section === */
.home-technology {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.home-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-visual {
  position: relative;
}

.tech-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 102, 204, 0.2));
}

.tech-floating-card {
  position: absolute;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  animation: float 3s ease-in-out infinite;
}

.tech-card-1 {
  top: 10%;
  right: 0;
  animation-delay: 0s;
}

.tech-card-2 {
  bottom: 30%;
  left: -10%;
  animation-delay: 1s;
}

.tech-card-3 {
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.tech-card-icon {
  font-size: 1.5rem;
}

.tech-content h2 {
  font-size: 2.5rem;
  color: #14213d;
  margin-bottom: 1.5rem;
}

.tech-content > p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #666;
  font-size: 1rem;
}

.tech-bullet {
  color: #0066cc;
  font-weight: bold;
}

/* === Why Us Section === */
.home-why-us {
  padding: 100px 0;
  background: #fff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-card {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(0, 102, 204, 0.1);
  transition: all 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
  border-color: rgba(0, 102, 204, 0.3);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0066cc, #00aaff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(10deg);
}

.why-card h3 {
  color: #14213d;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.why-card p {
  color: #666;
  line-height: 1.6;
}

.why-cta {
  text-align: center;
}

/* === Contact CTA === */
.home-contact-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0066cc, #00aaff);
  position: relative;
  overflow: hidden;
}

.home-contact-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: moveGrid 20s linear infinite;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-content > p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: #fff;
  color: #0066cc;
}

.cta-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.cta-buttons .btn-secondary:hover {
  background: #fff;
  color: #0066cc;
}

/* === Responsive === */
@media (max-width: 992px) {
  .home-about-grid,
  .home-tech-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tech-visual,
  .about-visual {
    order: -1;
  }

  .tech-floating-card {
    position: static;
    display: inline-flex;
    margin: 0.5rem;
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 90vh;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .home-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* === AOS Animations (optional if you want to add AOS library) === */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="flip-left"] {
  transform: perspective(1000px) rotateY(-20deg);
}

[data-aos="flip-left"].aos-animate {
  transform: perspective(1000px) rotateY(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* === Enhanced Hero Slideshow === */
.hero-slideshow {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
}

.slide-overlay {
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(20, 33, 61, 0.82) 50%,
    rgba(0, 51, 102, 0.78) 100%
  );
}

.slide-content {
  max-width: 900px;
  animation: slideContentIn 1s ease-out;
}

@keyframes slideContentIn {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Badge on slides */
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(0, 255, 136, 0);
  }
}

.slide-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.2rem;
}

.slide-content p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 2rem;
  max-width: 700px;
}

/* Enhanced Buttons */
.slide-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-primary {
  background: linear-gradient(135deg, #0066cc, #00aaff);
  color: #fff;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.6);
}

.cta-outline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .btn-arrow {
  transform: translateX(5px);
}

/* Enhanced Indicators */
.slide-indicators {
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.indicator.active {
  background: #fff;
  width: 36px;
  border-radius: 8px;
  border-color: rgba(0, 102, 204, 0.5);
}

/* === Section Enhancements === */
.premium-section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.1),
    rgba(0, 170, 255, 0.08)
  );
  color: #0066cc;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 102, 204, 0.15);
}

.section-label.light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* === Enhanced About Section === */
.about-section {
  position: relative;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0066cc, #00aaff);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.5);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
}

.badge-number {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  opacity: 0.95;
  margin-top: 0.3rem;
}

.about-cards {
  gap: 1.5rem;
}

.about-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0066cc, #00aaff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-cta {
  margin-top: 2rem;
  text-align: center;
}

/* === Enhanced Services === */
.service-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0066cc, #00aaff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.icon-bg-effect {
  position: absolute;
  inset: -5px;
  background: linear-gradient(135deg, #0066cc, #00aaff);
  border-radius: 50%;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.4s ease;
}

.service-card:hover .icon-bg-effect {
  opacity: 0.5;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0066cc;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.service-link:hover {
  gap: 1rem;
}

.link-arrow {
  transition: transform 0.3s ease;
}

.service-link:hover .link-arrow {
  transform: translateX(5px);
}

/* === Enhanced Stats === */
.premium-stats {
  position: relative;
  overflow: hidden;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 25% 50%,
      rgba(0, 102, 204, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 50%,
      rgba(0, 170, 255, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.stats-grid {
  position: relative;
  z-index: 2;
}

.stat {
  position: relative;
  padding: 2rem;
  transition: all 0.4s ease;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 5px 15px rgba(0, 102, 204, 0.3));
}

.stat:hover {
  transform: translateY(-10px);
}

.stat .count {
  background: linear-gradient(135deg, #00aaff, #0066cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.stat-bar {
  height: 3px;
  width: 60%;
  background: linear-gradient(90deg, #0066cc, #00aaff);
  margin: 1rem auto 0;
  border-radius: 2px;
  opacity: 0;
  transition: all 0.6s ease;
}

.stat:hover .stat-bar {
  opacity: 1;
  width: 80%;
}

/* === Enhanced Technology Section === */
.tech-image {
  position: relative;
}

.tech-float-card {
  position: absolute;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: #14213d;
  animation: float 3s ease-in-out infinite;
  z-index: 5;
}

.tech-float-1 {
  top: 15%;
  right: -5%;
  animation-delay: 0s;
}

.tech-float-2 {
  bottom: 35%;
  left: -8%;
  animation-delay: 1s;
}

.tech-float-3 {
  bottom: 15%;
  right: 5%;
  animation-delay: 2s;
}

.float-icon {
  font-size: 1.5rem;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.tech-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: linear-gradient(135deg, #f8fbff, #ffffff);
  border-radius: 12px;
  border-left: 3px solid #0066cc;
  transition: all 0.3s ease;
}

.tech-feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 102, 204, 0.1);
}

.feature-bullet {
  color: #0066cc;
  font-weight: bold;
  font-size: 1.2rem;
}

/* === Enhanced Commitment Section === */
.commitment-section {
  position: relative;
  overflow: hidden;
}

.commitment-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(0, 102, 204, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(0, 170, 255, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.commitment-cards {
  position: relative;
  z-index: 2;
}

.commitment-card {
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.commitment-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-10px) scale(1.02);
}

.commitment-icon {
  font-size: 2.5rem;
  filter: drop-shadow(0 5px 15px rgba(0, 170, 255, 0.4));
}

/* === Enhanced Team Section === */
.team-card {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0066cc, #00aaff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-photo {
  position: relative;
  overflow: hidden;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.2),
    rgba(0, 170, 255, 0.2)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-photo::after {
  opacity: 1;
}

.team-social {
  margin-top: 1rem;
}

.social-icon {
  font-size: 1.2rem;
  opacity: 0.7;
}

/* === Enhanced Contact Section === */
.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.contact-form {
  position: relative;
}

.contact-form input,
.contact-form textarea {
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-form button {
  width: 100%;
  cursor: pointer;
}

/* === AOS-like Animations === */
[data-aos] {
  opacity: 0;
  transition: all 0.8s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* === Responsive Enhancements === */
@media (max-width: 992px) {
  .hero-slideshow {
    height: 70vh;
  }

  .tech-float-card {
    position: static;
    display: inline-flex;
    margin: 0.5rem;
    animation: none;
  }
}

@media (max-width: 768px) {
  .slide-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .image-badge {
    right: 10px;
    bottom: 10px;
    padding: 1rem;
  }

  .badge-number {
    font-size: 1.8rem;
  }

  .badge-text {
    font-size: 0.75rem;
  }
}

/* ========================================
   MOBILE LAYOUT HOTFIX
   Add this AFTER the previous mobile fixes
   Or replace the technology section mobile code
   ======================================== */

/* === Fix Technology Section on Mobile === */
@media (max-width: 768px) {
  /* Technology section container */
  #technology,
  .tech-section,
  .home-technology {
    padding: 60px 1rem !important;
    overflow: hidden;
  }

  .tech-grid,
  .home-tech-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* Image container */
  .tech-image,
  .tech-visual {
    order: -1;
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    margin: 0 0 2rem 0 !important;
    position: relative;
  }

  .tech-image img,
  .tech-visual img {
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
  }

  /* Fix floating cards - make them inline badges */
  .tech-float-card,
  .tech-floating-card {
    position: static !important;
    display: inline-flex !important;
    margin: 0.5rem 0.3rem !important;
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
    animation: none !important;
    width: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
  }

  /* Container for inline badges */
  .tech-image::after,
  .tech-visual::after {
    content: "";
    display: block;
    clear: both;
  }

  /* Stack badges below image */
  .tech-image,
  .tech-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .float-icon,
  .tech-card-icon {
    font-size: 1.2rem !important;
  }

  /* Content area */
  .tech-content {
    width: 100%;
    text-align: center !important;
    padding: 0 1rem;
  }

  .tech-content h2 {
    font-size: 1.8rem !important;
    margin-bottom: 1rem;
  }

  .tech-content .section-subtitle,
  .tech-content > p {
    text-align: left !important;
    font-size: 0.95rem !important;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  /* Feature items */
  .tech-features {
    text-align: left !important;
    margin: 1.5rem 0;
  }

  .tech-feature-item,
  .tech-item {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .tech-bullet {
    min-width: 20px;
    color: #0066cc;
    font-weight: bold;
  }

  /* Button */
  .tech-content .cta-button {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* === Fix AI Powered Badge === */
@media (max-width: 768px) {
  /* If there's an AI powered badge/button */
  [class*="ai-badge"],
  [class*="powered"] {
    position: static !important;
    display: inline-block !important;
    margin: 0.5rem !important;
  }
}

/* === Fix Innovation Badge Position === */
@media (max-width: 768px) {
  /* This targets any absolutely positioned badges */
  .tech-image > *:not(img),
  .tech-visual > *:not(img) {
    position: static !important;
  }

  /* Wrapper for badges */
  .tech-badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
}

/* === Additional About Section Mobile Fix === */
@media (max-width: 768px) {
  .about-section {
    display: flex !important;
    flex-direction: column;
    gap: 2rem;
  }

  .about-image-wrapper {
    order: -1;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .about-content {
    width: 100%;
    text-align: center;
  }

  .about-content .section-subtitle {
    text-align: left;
    padding: 0 0.5rem;
  }
}

/* === Small Devices (375px and below) === */
@media (max-width: 375px) {
  .tech-image img,
  .tech-visual img {
    max-width: 240px !important;
  }

  .tech-float-card,
  .tech-floating-card {
    font-size: 0.75rem !important;
    padding: 0.5rem 0.8rem !important;
  }

  .float-icon {
    font-size: 1rem !important;
  }
}
/* === Very Small Devices (360px and below) === */
@media (max-width: 360px) {
  .tech-content {
    padding: 0 0.5rem !important;
  }

  .tech-image img,
  .tech-visual img {
    max-width: 200px !important;
  }
}

/* FORCE FIX MOBILE HORIZONTAL SCROLL */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
    width: 100%;
  }

  * {
    max-width: 100% !important;
  }
}


/* ========================
   NEON SECURITY SCAN LOADER
   ======================== */

#preloader {
  position: fixed;
  inset: 0;
  background: #04070d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.7s ease;
}

/* Disable scroll */
body.loading {
  overflow: hidden;
}

.scan-container {
  position: relative;
  width: 110px;
  height: 130px;
}

/* Simple CSS shield */
.shield-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0a1826 0%, #07111b 100%);
  border-radius: 50% 50% 40% 40% / 35% 35% 55% 55%;
  border: 3px solid #00eaff;
  box-shadow: 0 0 20px #00eaff, inset 0 0 15px rgba(0, 255, 255, 0.2);
  animation: shieldGlow 2s ease-in-out infinite alternate;
}

/* Shield pulsing glow */
@keyframes shieldGlow {
  0% {
    box-shadow: 0 0 12px #00eaff, inset 0 0 10px rgba(0, 255, 255, 0.15);
  }
  100% {
    box-shadow: 0 0 22px #00eaff, inset 0 0 18px rgba(0, 255, 255, 0.25);
  }
}

/* Neon scanning line */
.scan-line {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(0, 255, 255, 0) 0%,
    #00eaff 50%,
    rgba(0, 255, 255, 0) 100%
  );
  box-shadow: 0 0 15px #00eaff;
  animation: scanMove 2.2s ease-in-out infinite;
}

@keyframes scanMove {
  0% {
    top: -20%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 110%;
  }
  80% {
    opacity: 1;
  }
  100% {
    top: -20%;
    opacity: 0;
  }
}

/* Fade out preloader */
#preloader.hide {
  opacity: 0;
  pointer-events: none;
}
