/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }

  html {
    scroll-behavior: smooth;
  }
  
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0ea5e9;
  }

  @media (max-width: 768px) {
    .nav-container {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      top: 70px;
      right: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      padding: 20px;
      border-radius: 10px;
    }
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background: rgba(0, 0, 0, 0.8);
      padding: 10px 24px;
      border-radius: 0 0 10px 10px;
    }
    .nav-links.show {
      display: flex;
    }
  
    .mobile-toggle {
      display: block;
      font-size: 1.8rem;
      color: #fff;
      cursor: pointer;
      margin-left: auto;
    }
  
    .nav-links a {
      margin: 10px 0;
    }
  
    .navbar.show {
      display: flex;
    }
  
    .mobile-toggle {
      display: block;
    }
  
    .header {
      justify-content: space-between;
    }
  }

  .glass-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 0; /* 👈 Reduced top-bottom padding */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Sticky Navbar */
    .nav-container {
      width: 100%;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      padding: 2px 8px;
      box-sizing: border-box;
      color: white;
    }
    
  
  


  .logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-right: 10px;
    background-color: #e2e8f0;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #38f2ff;
  }
  
  .brand-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0ea5e9; /* Adjust this to match your brand color */
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
  }
  .nav-links a:focus,
  .nav-links a:active {
  color: #ffffff;
  background-color: #38bdf8;
  outline: none;
}

  
  .nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #0d033f;
    font-weight: 500;
    transition: color 0.3s ease, background 0.3s ease;
    padding: 8px 15px;
    border-radius: 6px;
  }
  
  .nav-links a:hover {
    background-color: #00c8ff; /* Contrast Hover Color */
    color: rgb(253, 253, 253);
  }



.section {
  padding: 80px 8%;
  background-color: #1b4f72;
  text-align: center;
}

.section.alt {
  background-color: #f0f0f0;
}

.section h2 {
  font-size: 2em;
  margin-bottom: 20px;
} 

.section p, .section ul {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
}
/* 🌄 Hero Section */
.hero {
  background-image: url('src/Bg-image.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* min-height: 100vh; */
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 8% 140px;
  position: relative;
  text-align: center;
}

/* 🧊 Glassmorphism Box */
.hero-content {
  text-align: center;
  background: rgba(175, 221, 255, 0.35);
  color: #ffffff;
  border-radius: 16px;
  backdrop-filter: blur(0.12px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 20px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ✍️ Heading and Text */
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero p {
  font-size: 1.12em;
  color: #ffffff;
  margin-bottom: 30px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(230, 227, 227, 0.05);
   /* 🔆 Fade effect */
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2.5px);
  background-color: rgb(1 2 8 / 13%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔘 CTA Button */
.cta-button {
  display: inline-block;
  background-color: #38bdf8;
  color: #fff;
  margin-right:10px;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0ea5e9;
}

/* 📱 Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .hero-content {
    padding: 40px 20px;
  }
}


  /* responsive */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.2em;
    }
  
    .hero p {
      font-size: 1.1em;
    }
  
    .cta-button {
      padding: 12px 24px;
      font-size: 1em;
    }
  }

  @media (max-width: 500px) {
    .project-grid {
      grid-template-columns: 1fr;
    }
  }
  .about, .mission, .special {
    background: #ffffff;
    padding: 60px 8%;
    text-align: center;
  }
  
  .about h2, .mission h2, .special h2 {
    font-size: 2.2em;
    color: #0f172a;
    margin-bottom: 20px;
  }
  
  .about p, .mission p {
    font-size: 1.05rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
  }

  /*for  media images */
  .about {
    position: relative;
    z-index: 1;
    padding: 60px 8%;
    text-align: center;
  }
  
  .about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4); /* soft fade overlay */
    z-index: 2;
  }
  
  .about .container {
    position: relative;
    z-index: 3; /* keeps text on top of overlay */
  }

   /* mission media */
   @media (max-width: 768px) {
    .image-box {
      max-width: 100%;
    }
  
    .image-box img {
      height: 200px;
    }
  }
  

   .mission-image-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .image-box {
    flex: 1 1 300px;
    max-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .image-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  
  .image-box:hover {
    transform: scale(1.03);
  }
  
  
  
  
  .special-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
  }
  
  .special-box {
    flex: 1 1 250px;
    background: rgba(175, 221, 255, 0.35);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .special-box:hover {
    transform: translateY(-8px);
  }
  
  .special-box img {
    width: 80px;
    margin-bottom: 15px;
    
    
  }
  
  .special-box h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0ea5e9;
  }
  
  .special-box p {
    font-size: 0.95rem;
    color: #1f2937;
    line-height: 1.6;
  }
  
  
  .services {
    background-color: rgba(175, 221, 255, 0.35); /* light bluish-gray for a modern clean look */
    padding: 80px 8%;
    color: #0f172a; /* dark slate text for contrast */
    text-align: center;
  }
  
  .services h2 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #0ea5e9;
  }
  
  .service-cards {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .service-card {
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, background-color 0.3s ease;
    cursor: pointer;
  }
  
  .service-card:hover {
    background-color: #38bdf8;
    color: white;
    transform: translateY(-10px) scale(1.03);
  }
  
  .service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
  }

  .why-choose {
    background-color: white;
    /* background: linear-gradient(135deg, #020024, #1818a5, #00D4FF); */
    padding: 80px 20%;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .why-choose h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
  }
  .why-choose h3{
    color:#0ea5e9;
  }
  
  .why-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: auto;
    font-size: 1.2em;
    color: #0f172a;
  }
  
  .why-list li {
    margin: 15px 0;
    padding: 10px 0;
  }
  /* .why-choose::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1), transparent 70%);
    animation: pulse 6s linear infinite;
    z-index: 0;
  } */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  .glass-box {
    background: rgba(175, 221, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 30px rgba(0, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
  }
  
  .glass-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0ea5e9;
  }
  
  .glass-box p {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 30px;
  }
  
  .glass-box ul {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    color: #f0fdfa;
  }
  
  .glass-box ul li {
    margin-bottom: 12px;
    font-weight: 500;
  }



  .testimonials {
    background: #f8fafc;
    padding: 80px 8%;
    text-align: center;
  }
  
  .testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: 40px auto;
  }
  
  .testimonial-card {
    display: none;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .testimonial-card.active {
    display: block;
  }
  
  .testimonial-card p {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 15px;
  }
  
  .testimonial-card h4 {
    color: #0f172a;
    font-weight: 600;
  }
  
  .testimonial-controls {
    margin-top: 20px;
  }
  
  .testimonial-controls button {
    background: #0ea5e9;
    color: white;
    border: none;
    font-size: 1.2rem;
    padding: 8px 14px;
    margin: 0 10px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  .testimonial-controls button:hover {
    background: #0284c7;
  }
  
  /* === PROJECTS SECTION === */
.projects {
    background: #f1f5f9;
    padding: 80px 8%;
  }
  
  .projects h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #0f172a;
  }
  
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .project-card {
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    
  }
  
  .project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.2);
  }
  
  .project-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .project-card h3 {
    margin: 15px;
    font-size: 1.4rem;
    color: #0f172a;
  }
  
  .project-card p {
    margin: 0 15px 20px;
    color: #475569;
    font-size: 0.95rem;
  }
  .project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0.2) 100%
    );
    transform: skewX(-20deg);
  }
  .project-card:hover::before {
    animation: shine 0.9s ease forwards;
  }

  @keyframes shine {
    0% {
      left: -75%;
    }
    100% {
      left: 125%;
    }
  }
  
  /* 🔘 Smooth button hover */
  .project-links .btn {
    transition: all 0.3s ease;
  }
  
  .project-links .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
  }

  .project-links {
    display: flex;
    gap: 10px;
    margin: 0 15px 20px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 8px 16px;
    background: #0ea5e9;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #0284c7;
  }
  
  .btn.outline {
    background: transparent;
    border: 2px solid #0ea5e9;
    color: #0ea5e9;
  }
  
  .btn.outline:hover {
    background: #0ea5e9;
    color: white;
  }

  .category-tag {
    display: inline-block;
    background-color: #e0f2fe;
    color: #0369a1;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 15px;
    font-weight: 600;
  }
  
  
  
  
  
  
  
/* === Contact Layout === */
/* === Contact Section === */
.contact-section {
  padding: 60px 20px;
  background-color: #f8fafc;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background-color: rgba(175, 221, 255, 0.35);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(3, 36, 247, 0.1);
}

.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0ea5e9;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 10px;
  color: #0ea5e9;
  font-size: 18px;
}

.contact-info a {
  text-decoration: none;
  color: #1f2937;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #0284c7;
}

/* === Contact Form === */
.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0ea5e9;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14,165,233,0.2);
}

.contact-form button {
  background-color: #0ea5e9;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0284c7;
}

#formResponse {
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
}

#formResponse.success { color: green; }
#formResponse.error { color: red; }

/* === Responsive === */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-info li {
    justify-content: center;
  }

  .contact-info i {
    margin-right: 8px;
  }

  .contact-form {
    max-width: 100%;
  }
}

  /* === FOOTER === */
  .footer {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 10px;
    text-align: center;
  }
  
  .footer .socials {
    margin-top: 15px;
  }
  
  .footer .socials a {
    margin: 0 10px;
    color: #f8fafc;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s;
  }
  
  .footer .socials a:hover {
    color: #38bdf8;
  }
  
  
