/* ===== GLOBAL STYLES ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
    }

    body {
      background-color: #0b1b2a;
      color: #ffffff;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ===== NAVBAR ===== */
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(6px);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #00aaff;
      letter-spacing: 1px;
    }

    .logo >img{

      height: 50px;
      width: 50px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    nav ul li {
      cursor: pointer;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav ul li:hover {
      color: #00aaff;
    }

    .btn-quote {
      background: #00aaff;
      padding: 10px 20px;
      border-radius: 25px;
      color: #fff;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn-quote:hover {
      background: #0088cc;
    }


        /* ===== Hero Section ===== */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      background: linear-gradient(
          rgba(0, 0, 0, 0.7),
          rgba(0, 0, 0, 0.7)
        ),
        url('https://images.unsplash.com/photo-1581091226825-16b5c2372c2a?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      opacity: 1;
      transform: translateY(20px);
      transition: opacity 1.2s ease, transform 1.2s ease;
    }

    .hero.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .hero h1 {
      font-size: 3rem;
      letter-spacing: 1px;
      color: #00bcd4;
      margin-bottom: 15px;
      text-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
    }

    .hero h2{

      font-size: 3rem;
      letter-spacing: 1px;
      color: #00bcd4;
      margin-bottom: 15px;
      text-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
      

    }

    .hero p {
      font-size: 1.2rem;
      color: #ddd;
      margin-bottom: 30px;
      max-width: 700px;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .btn {
      padding: 12px 28px;
      font-size: 1rem;
      border: 2px solid #00bcd4;
      color: #00bcd4;
      background: transparent;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn:hover {
      background-color: #00bcd4;
      color: #0b0c10;
      box-shadow: 0 0 20px #00bcd4;
      transform: scale(1.05);
    }

    .hero > img{

    height: 40px;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }

      .hero p {
        font-size: 1rem;
        padding: 0 20px;
      }
    }

    /* Hide menu toggle by default */
    .menu-toggle {
      display: none;
    }

    /* ===== ABOUT SECTION ===== */
    /*section {
      padding: 100px 60px;
    }

    .about {
      text-align: center;
    }

    .about h2 {
      font-size: 2rem;
      color: #00aaff;
      margin-bottom: 20px;
    }

    .about p {
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.7;
      color: #cfd8dc;
    }*/

     /* ===== ABOUT SECTION ===== */
.about {
  background: #0b0c10;
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.2rem;
  color: #00bcd4;
  margin-bottom: 20px;
}

.about-text p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.5);
}


    /* ===== SERVICES ===== */
    /*.services {
      background: #111d2b;
    }

    .services h2 {
      text-align: center;
      color: #00aaff;
      font-size: 2rem;
      margin-bottom: 50px;
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .service-card {
      background: #0f2438;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 20px rgba(0, 170, 255, 0.4);
    }

    .service-card h3 {
      color: #00aaff;
      margin-bottom: 10px;
    }*/

    /* ===== SERVICES SECTION ===== */
.services {
  background: #101218;
  padding: 100px 10%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services h2 {
  font-size: 2.2rem;
  color: #00bcd4;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 50px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
  background: rgba(0, 188, 212, 0.1);
  border-color: #00bcd4;
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
}

.card h3 {
  color: #00bcd4;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

    /* ===== CONTACT ===== */
    .contact {
      text-align: center;
      background: #0b1826;
      color: #cfd8dc;
    }

    .contact h2 {
      color: #00aaff;
      margin-bottom: 20px;
    }

    .contact-info {
      margin-top: 20px;
      line-height: 2;
    }


    /* ===== FOOTER ===== */
    /*footer {
      height: 10px;
      text-align: center;
      background: #09131f;
      padding: 20px;
      color: #8aa1b1;
      font-size: 0.9rem;
    }*/

    /* ===== FOOTER SECTION ===== */
.footer {
  background: #08090d;
  padding: 80px 10% 40px;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.footer-brand h2 {
  color: #00bcd4;
  font-size: 2rem;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #bbb;
  font-size: 0.95rem;
}

.footer-links h3,
.footer-social h3 {
  color: #00bcd4;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #00bcd4;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #00bcd4;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
  color: #777;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}


/* Active link highlight in navbar */
.nav-links a.active-link {
  color: #00bcd4;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 188, 212, 0.5);
}


/* ===== BACK TO TOP BUTTON ===== */
#backToTop {
  position: fixed;
  bottom: 40px;
  right: 35px;
  z-index: 999;
  background-color: #00bcd4;
  color: #0b0c10;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
  display: none; /* hidden by default */
}

#backToTop:hover {
  background-color: #0b0c10;
  color: #00bcd4;
  box-shadow: 0 0 25px rgba(0, 188, 212, 0.6);
  transform: translateY(-3px);
}


    /* ===== SCROLL ANIMATION ===== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    

    /* ===== GLOBAL STYLES ===== */
    /* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
    }

    body {
      background-color: #0b1b2a;
      color: #ffffff;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }*/


    /* ===== GLOBAL PRESENCE SECTION ===== */
.global {
  background: #0b0c10;
  padding: 100px 10%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.global-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
  justify-content: center;
}

.global-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.global-text p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
}

.global-map {
  flex: 1;
  text-align: center;
}

.global-map img {
  width: 100%;
  max-width: 500px;
  opacity: 0.9;
  transition: all 0.4s ease;
  border-radius: 10px;
}

.global-map img:hover {
  opacity: 1;
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.3);
}




    /* ===== NETWORK SECTION ===== */
    .network {
      background: #0c1e33;
      text-align: center;
    }

    .network iframe {
      width: 100%;
      height: 400px;
      border-radius: 15px;
      margin-top: 20px;
    }

    /* ===== QUOTE FORM ===== */
    .quote {
      background: #0f2438;
      border-radius: 15px;
      width: 80%;
      margin: 0 auto;
      padding: 60px 40px;
    }

    .quote form {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 600px;
      margin: 0 auto;
    }

    .quote input, .quote textarea {
      padding: 12px;
      border: none;
      border-radius: 8px;
      outline: none;
      background: #1c3247;
      color: #fff;
      font-size: 1rem;
    }

    .quote button {
      background: #00aaff;
      border: none;
      padding: 12px;
      border-radius: 25px;
      font-weight: bold;
      color: #fff;
      transition: 0.3s;
      cursor: pointer;
    }

    .quote button:hover {
      background: #0088cc;
    }

    .success-message {
      display: none;
      color: #00ff99;
      margin-top: 15px;
      font-weight: 600;
    }

    /* ===== CONTACT ===== */
    /*.contact {
      background: #0b1826;
      color: #cfd8dc;
    }

    .contact-info {
      margin-top: 20px;
      line-height: 2;
    }*/

    /* ===== CONTACT SECTION ===== */
.contact {
  background: #101218;
  padding: 100px 10%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  margin-top: 50px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.contact-info h3 {
  color: #00bcd4;
  margin-bottom: 20px;
}

.contact-info p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 10px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00bcd4;
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
}

.contact-form button {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .global-container,
  .contact-container {
    flex-direction: column;
  }

  .global-text,
  .contact-info {
    text-align: center;
  }

  .contact-form button {
    align-self: center;
  }
}

    /* ===== ANIMATIONS ===== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  nav ul li a {
    font-size: 14px;
  }

  header {
    flex-direction: column;
    align-items: center;
  }

  .logo img {
    width: 60px;
  }
}



   
