
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}
 .glow-text {
      font-size: 1rem;
      color: #fff;
      align: left;
   text-align: left;
      text-shadow:
        0 0 5px #0ff,
        0 0 10px #0ff,
        0 0 20px #0ff,
        0 0 40px #0ff,
        0 0 80px #0ff;
      animation: pulse 2s infinite ease-in-out;
    }
    .container {
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
}

h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #00e1ff;
}

.tagline {
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 50px;
  color: #aaa;
}

.card {
  background: #1b1d21;
  padding: 25px;
  border-left: 5px solid #00e1ff;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 225, 255, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h2 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #ffffff;
}

.card p {
  margin: 10px 0 0;
  color: #cccccc;
}

.cta {
  text-align: center;
  margin-top: 60px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00e1ff;
}

.h1 {
      font-size: 3rem;
      text-align: center;
      background: #121212;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: 'Orbitron', sans-serif;
    }
    .section {
      max-width: 1200px;
      margin: auto;
      padding: 2rem 1rem;
    }
    .carder {
      background: #12121c;
      border: 1px solid #2e2e3e;
      padding: 1.5rem;
      border-radius: 1.25rem;
      box-shadow: 0 4px 30px rgba(0,0,0,0.3);
      margin-bottom: 2rem;
    }
    .carder h2 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    .badge {
      display: inline-block;
      background: #1e40af;
      color: #fff;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
    }
    .grid {
      display: grid;
      gap: 1.5rem;
    }
    .grid-cols-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    .grid-cols-3 {
      grid-template-columns: repeat(3, 1fr);
    }
    .center {
      text-align: center;
    }
    .button {
      background: #facc15;
      color: #000;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      font-weight: bold;
      border-radius: 0.75rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: none;
      cursor: pointer;
    }
    .button:hover {
      background: #ffe066;
    }
    @media(max-width: 768px) {
      .grid-cols-2, .grid-cols-3 {
        grid-template-columns: 1fr;
      }
    }

    @keyframes pulse {
      0%, 100% {
        text-shadow:
          0 0 5px #0ff,
          0 0 10px #0ff,
          0 0 20px #0ff,
          0 0 40px #0ff,
          0 0 80px #0ff;
      }
      50% {
        text-shadow:
          0 0 10px #0ff,
          0 0 20px #0ff,
          0 0 30px #0ff,
          0 0 60px #0ff,
          0 0 100px #0ff;
      }
    }
.glass {
      background: rgba(255,255,255,0.06);
      box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
      backdrop-filter: blur(7px);
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.18);
    }
.gloss {
      background: rgba(255,255,255,0.06);
      box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
      backdrop-filter: blur(10px);
      width: 5rem;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.18);
  }
 .nav-btn {
      font-size: 2rem; background: none; border: none; color: white; cursor: pointer;
    }
    /* Header */
    headr {
      position: fixed;
      top: 0; left: 0; width: 100%;
      padding: 20px 40px;
      display: flex; justify-content: space-between; align-items: center;
      z-index: 1000;
    }
a
{
  color: antiquewhite;
  alink: Gray;
}


    .floating-btn-container {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1000;
    }

    .floating-btn {
      background: gray;
      color: white;
      border: none;
      padding: 16px 26px;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      transition: all 0.4s ease;
      perspective: 1000px;
      cursor: pointer;
    }

    .floating-btn:hover {
      transform: translateY(-4px);
    }

.info-card::-webkit-scrollbar {
  width: 6px;
}

.info-card::-webkit-scrollbar-thumb {
  background-color: #1abc9c;
  border-radius: 10px;
}

.info-card::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.info-card {
  position: absolute;
  bottom: 60px;
  right: 0;
  background: #ffffff;
  color: #2c3e50;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 18px 20px;
  width: 320px;
  max-height: 400px; /* LIMITS HEIGHT */
  overflow-y: auto;  /* ENABLES SCROLLING */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  scrollbar-width: thin;
  scrollbar-color: #1abc9c #f0f0f0;
}
    .floating-btn-container:hover .info-card {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(-10px);
    }

    .info-card h4 {
      margin: 0 0 8px;
      color: #16a085;
      font-size: 1.1em;
    }

    .info-card p {
      margin: 0;
      font-size: 0.9em;
      line-height: 1.4;
      }
iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 300px;
}

.big {
  width: 100%;
  height: 900px;
  
  border: none;
  min-height: ;
}
.map-container {
  width: 100%;
  height: 100%;
}

#menuToggle {
  align-content: right;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}
body {
  background: #121212;
  color: #dfe6ed;
  overflow-x: hidden;
  transition: all 0.4s ease-in-out;
}

body.theme-light {
  background: #ffffff;
  color: #111;
}

body.theme-dark {
  background: #121212;
  color: #f0f0f0;
}

body.theme-metallic {
  background: linear-gradient(to right, #2e323d, #495261);
  color: #e4e8ec;
}

.side-nav {
      position: fixed; top: 0; right: -100%; height: 100vh; width: 300px;
      transition: right 0.4s ease-in-out;
      padding: 40px;
      flex-direction: column;
      z-index: 1001;
    }
    .side-nav.open { right: 0; }
    .side-nav .close-btn {
      font-size: 2rem; border: none; background: none; color: white; align-self: flex-end;
    }
    .side-nav ul { list-style: none; margin-top: 50px; }
    .side-nav ul li { margin: 20px 0; }
    .side-nav ul li a { color: white; text-decoration: none; font-size: 1.2rem; }

header img{
  align-self: left;
  padding: 0.4rem 0.4rem;
  position: sticky;
}
section#sector-services {
    background: #121212;
 /* Matches site */
    padding: 60px 20px;
    text-align: center;
  }

  #sector-services h2 {
    font-size: 2.4em;
    margin-bottom: 10px;
    color: ivory;
  }

  #sector-services > p {
    font-size: 1.1em;
    color: aliceblue;
    max-width: 800px;
    margin: 0 auto 40px;
  }

  .sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

.sector-card1 {
    background:;
  text: white;
    border: 2px #e0e0e0;
    border-left: 6px solid white; /* Branding accent */
    border-radius: 4px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
  .sector-card {
    background: #ffffff;
    border: 2px #e0e0e0;
    border-left: 6px solid #003366; /* Branding accent */
    border-radius: 14px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
  }

  .sector-card h3 {
    font-size: 1.25em;
    color: #222;
    margin-bottom: 10px;
  }

  .sector-card p {
    font-size: 0.95em;
    color: #555;
  }

  .sector-card img {
    align-items: center;
    width: 270px;
    margin-bottom: 3px;
  }
body.theme-light {
  background: #ffffff;
  color: #111;
}

body.theme-dark {
  background: #121212;
  color: #f0f0f0;
  }
header {
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 999;
}

/*.logo {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #cfd8e3;
}
*/
.logo {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 2px;
  background: -webkit-linear-gradient(#f5f5f5, #cb9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*nav a {
  margin-left: 2rem;
  color: #dfe6ed;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #67d3ff;
}
*/
.hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: left;
      height: 70vh;
      position: relative;
      overflow: hidden;
    }
    #hero-lottie {
      width: 300px;
      height: 200px;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
    }
    .hero .highlight {
      color: #00aaff;
      font-weight: bold;
    }
    .hero p { margin-top: 10px; font-size: 1.2rem; opacity: 0.85; }
    .btn {
      margin-top: 20px;
      padding: 12px 24px;
      background: #00aaff;
      color: white;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
    }
.highlight {
      color: #00aaff;
      font-weight: bold;
    }

    /* Particles */
    #particles-js {
      position: absolute; top: 0; left: 0;
      width: 100%; height: 100%; z-index: -1;
    }
.carousel-container{background: #121212;}
.carousel-container p {margin-top: 10px; font-size: 1.2rem; opacity: 0.85; align: center; text-align: center; padding: 4px}
  
.subsidiary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 3rem;
}

.subsidiary-card {
  background: #2e323d;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease;
}

.subsidiary-card:hover {
  background: #5c657a;
  transform: translateY(-5px);
}
.subsidiar-card {
  background: cyan;
  padding: 1.5rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease;
}

.subsidiar-card:hover {
  background: blue;
  transform: translateY(-5px);
}

.nav-drawer {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0;
  background: #222;
  box-shadow: -3px 3px 10px var(--shadow);
  padding: 1rem;
  border-radius: var(--radius);
}
section {
  padding: 3rem 2rem;
}

.settings-section label, .auth-section label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: 600;
}

select, input[type="text"], input[type="password"] {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f8f9fa;
  margin-bottom: 1rem;
}

button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  background: gray;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #3ab4e0;
}

.auth-section form, .settings-section form {
  max-width: 400px;
  margin: auto;
  background: #2d313a;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

#logoutBtn {
  display: none;
  margin-top: 1rem;
  background: #ff4b5c;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #1c1f26;
  color: #a0a8b8;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

/* Animations */
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #121212;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1s infinite alternate;
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-out;
}

.social-icons {
      margin-top: 20px;
    }
.about-section p { margin-top: 10px; font-size: 1.2rem; opacity: 0.85; align: left; text-align: left;}

    .social-icons a {
      display: inline-block;
      margin: 10px;
      background-color: white;
      border-radius: 50%;
      padding: 10px;
      width: 40px;
      height: 40px;
      line-height: 20px;
      text-align: center;
      align-items: center;
      transition: background-color 0.3s ease;
    }

    .social-icons a:hover {
      background-color: #caa646;
    }

    .social-icons img {
      width: 20px;
      height: 20px;
      vertical-align: middle;
     /* padding: 2rem;*/
    }

.about-section {
  padding: 3rem 2rem;
  margin: 1rem auto;
  background: #f7f7f7;
  border-radius: var(--radius);
  width: 100%;
  max-width: 1000px;
  box-shadow: 0 5px 15px var(--shadow);
  animation: fadeIn 1s ease-in;
}
/* Base styling for important links */
.implink {
  display: inline-block;
  background: linear-gradient(145deg, #4b5c6b, #2e323d);
  color: #ffffff;
  padding: 12px 24px;
  margin: 10px 5px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* Hover effect for important links */
.implink:hover {
  background: linear-gradient(145deg, #5c6d7e, #3e444f);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}
@media (max-width: 768px) {
  .implink {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
  }
