* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter;
  color: #fff;
  background: #000;
  overflow-x: hidden;
}

/* Canvas Fullscreen */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
   object-fit: cover;
}

/* This div just creates enough scroll space */
.scroll-container {
  height: 100px; /* controls scroll length */
}
/* Header Layout */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background: #24262E; */
  /* Glass effect version of #24262E */
  background: rgba(36, 38, 46, 0.4); /* 0.4 = 40% opacity */
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);


  color: #fff;
  padding: 10px 20px;
  z-index: 1000;
min-height: 80px;

}

.logo img {
 filter: invert();
  height: 40px;
  cursor: pointer;
}
/* Navigation styling */

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  /* margin: 0;
  padding: 0; */
}

/* .main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: #0088cc;
} */
 .main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.2s ease;
  padding: 5px 0;
}

.main-nav a:hover,
.main-nav a:focus,
.main-nav a:active {
  color: #0088cc;
  transform: translateY(-2px);
}

/* ===== SEARCH BAR ===== */
.search-bar {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.search-bar input {
  padding: 5px 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
}
.search-bar button {
  padding: 5px 10px;
  border: none;
  background: #0088cc;
  color: #fff;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
}

/* ===== MENU TOGGLE ===== */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #222;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .search-bar {
    width: 100%;
    margin: 15px 0 0 0;
  }
  .search-bar input {
    flex: 1;
  }
  .main-nav.active {
    display: flex;
  }
}

/* ===== DESKTOP FIX ===== */
@media (min-width: 993px) {
  .main-nav {
    display: flex !important;
  }
}
/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  background: rgba(36, 38, 46, 0.4); /* 0.4 = 40% opacity */
  backdrop-filter: blur(2px) saturate(120%);
  -webkit-backdrop-filter: blur(2px) saturate(120%);
  z-index: 1; /* Keep above canvas */
}


.hero-content {
  max-width: 700px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
  color:#0088cc;
}
.hero-content h1 span {
  /* color:white; */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #ddd;
   text-shadow: 0 0 0.1px #fff, 0 0 0.1px #fff, 0 0 0.1px white , 0 0 0.1px white, 0 0 0.1px white , 0 0 0.1px white, 0 0 0.1px white;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #0088cc;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #006699;
}

/* Ensure text stays above canvas */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 4.5rem;
  }
  .hero-content p {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }
  .hero-content p {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
  .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.info-carousel {
 /* background: rgba(0, 0, 0, 0.35); */
   background: rgba(36, 38, 46, 0.4); /* 0.4 = 40% opacity */
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(2px) saturate(120%);
  padding: 40px 0px 25px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-wrapper {
  width: 90%;
  max-width: 1000px;
  overflow: hidden;
  border-radius: 15px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  /* background: rgba(255, 255, 255, 0.05); */
  
  padding: 20px;
  color: #fff;
}

.carousel-image img {
  width: 250px;
  height: auto;
  border-radius: 10px;
}

.carousel-text h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color:#0088cc;
}

.carousel-text p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.read-more {
  display: inline-block;
  padding: 8px 16px;
  background: #0088cc;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.read-more:hover {
  background: #0088cc;
}

/* Dots */
.carousel-dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #0088cc;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-slide {
    flex-direction: column;
    text-align: center;
  }
  .carousel-image img {
    width: 200px;
  }
}
.projects-section {
  padding: 60px 20px;
  /* background: #1c1c1c; */
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-card {
  perspective: 1000px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 300px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.project-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}

.card-front {
  background:black;
  text-align: center;
  padding: 20px;
}

.card-front img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.card-front h3 {
  font-size: 1.2rem;
  margin: 0;

   color: #fff;
}

.card-back {
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transform: rotateY(180deg);
}
.card-back p {
  font-size: 1rem;
  line-height: 1.5;
}
/* Add flip state for mobile */
.card-inner.is-flipped {
  transform: rotateY(180deg);
}
/* Responsive */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}
.numbers-section {
  padding: 60px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

.numbers-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.number-item {
  background: #1c1c1c;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.number-item .count {
  font-size: 3rem;
  font-weight: bold;
  display: inline-block;
  color: #00c2ff;
}

.number-item .plus {
  font-size: 2rem;
  color: #00c2ff;
  vertical-align: top;
}

.number-item p {
  margin-top: 10px;
  font-size: 1rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }
}
 /* footer */
    footer {
      background-color: #24262E;
      color: #fff;
      padding: 60px 10%;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .footer-left {
      flex: 1;
      min-width: 260px;
    }

    .footer-left img {
      height: 40px;
      margin-bottom: 20px;
      filter:invert();
    }

    .footer-left p {
      font-size: 15px;
      line-height: 1.6;
      color: #cfcfcf;
    }

    .footer-left a {
      color:#0088cc;
      text-decoration: none;
      display: block;
      margin-top: 10px;
    }

    .footer-columns {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
      flex: 2;
      justify-content: space-between;
    }

    .footer-column h4 {
      font-weight: 600;
      margin-bottom: 15px;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #cfcfcf;
      font-size: 15px;
    }

    .footer-column ul li a:hover {
      color: #58a6ff;
    }

    .footer-bottom {
      border-top: 1px solid #333;
      margin-top: 40px;
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-size: 14px;
      color: #aaa;
    }

    .footer-bottom p a {
      color: #58a6ff;
      text-decoration: underline;
    }

    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 10px;
    }

    .social-icons a {
      background-color: #24262d;
      color: #fff;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      text-decoration: none;
      font-size: 16px;
    }

    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
      }

      .footer-columns {
        flex-direction: column;
        gap: 30px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
    }
    


