 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      background-color: #f8f9fa;
      color: #333;
      line-height: 1.6;
    }

    /* ====== NAVBAR ====== */
    .navbar {
      background: #fff;
      border-bottom: 2px solid #e9ecef;
      padding: 15px 40px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo img {
      height: 55px;
    }

    #nav-links ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }

    #nav-links ul li a {
      text-decoration: none;
      color: #003366;
      font-weight: 600;
      font-size: 15px;
      transition: color 0.3s ease;
    }

    #nav-links ul li a:hover,
    #nav-links ul li a.active {
      color: #007bff;
    }

    /* ====== HAMBURGER BUTTON ====== */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .menu-toggle div {
      width: 18px;
      height: 3px;
      background-color: #003366;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* Rotate into X when active */
    .menu-toggle.active div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active div:nth-child(2) {
      opacity: 0;
    }
    .menu-toggle.active div:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* ====== RESPONSIVE MENU ====== */
    @media (max-width: 900px) {
      #nav-links ul {
        flex-direction: column;
        background-color: #003366;
        position: absolute;
        top: 70px;
        right: 0;
        width: 30%;
        text-align: center;
        display: none;
        padding: 20px 0;
      }

      #nav-links.show ul {
        display: flex;
        animation: slideDown 0.3s ease forwards;
      }

      #nav-links ul li a {
        color: #fff;
        padding: 10px 0;
        display: block;
      }

      .menu-toggle {
        display: flex;
      }
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }




    /* ===== Background Video Section ===== */
.video-banner {
  position: relative;
  width: 100%;
  height: 70vh; /* Adjust height as needed */
  overflow: hidden;
}

.video-banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.video-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.video-content h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.video-content p {
  font-size: 1.1rem;
  max-width: 800px;
  line-height: 1.6;
}

/* ===== Company Intro Section ===== */
.company-introduction {
  background: #fff;
  text-align: left;
  padding: 80px 10%;
}

.intro-container {
  max-width: 900px;
}

.company-introduction h2 {
  color: #0056b3;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.company-introduction .established {
  font-weight: 600;
  color: #222;
  font-size: 0.9rem;
  border-left: 4px solid #0056b3;
  padding-left: 10px;
  margin-bottom: 25px;
}

.company-introduction h3 {
  color: #180CF5;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.company-introduction .description {
  color: black;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
}

.view-more {
  display: inline-block;
  border: 2px solid #000;
  padding: 10px 25px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}

.view-more span {
  margin-left: 8px;
  font-size: 1.1rem;
}

.view-more:hover {
  background: #0056b3;
  color: #fff;
  border-color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .company-introduction {
    padding: 60px 20px;
  }

  .company-introduction h2 {
    font-size: 1.4rem;
  }

  .company-introduction h3 {
    font-size: 1.3rem;
  }

  .company-introduction .description {
    font-size: 0.95rem;
  }
}

 .image-text-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap; /* Makes it responsive */
    padding: 20px;
  }

  .image-container {
    flex: 1 1 45%;
  }

  .image-container img {
    width: 100%;
    border-radius: 10px;
  }

  .text-container {
    flex: 1 1 50%;
  }

  .text-container h3 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
  }

  .text-container h1 {
    font-size: 7.5em;
    margin-bottom: 10px;
    color: #F54927;
  }

  .text-container p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
  }

   @media (max-width: 768px) {
    .image-text-section {
      flex-direction: column;
      text-align: center;
    }
  }


@media (max-width: 768px) {
  .video-banner {
    height: 50vh;
  }
  .video-content h2 {
    font-size: 1.6rem;
  }
  .video-content p {
    font-size: 0.95rem;
  }
}

.horizontal-bar {
    width: 70%;             /* Full width */
    height: 25px;            /* Thickness of the bar */
    background-color: #FC866D; /* Light gray color */
    background: linear-gradient(to right, #FC866D, #dcdcdc);
    margin: 20px 0;          /* Space above and below */
    border-radius: 6px; 
  }

  .vertical-line {
  width: 3px;
  height: 50px;
  background-color: #ff9800;
  margin: 0 auto;
  border-radius: 2px;
}

.ecosystem {
            width: 90%;
            margin: 0 auto;
            padding-top: 20px;
        }
        .header {
            background: linear-gradient(to right, #BD2606, #0F0503);
            color: white;
            text-align: center;
            padding: 30px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); /* Hexagonal Shape */
            width: 100%;
            margin-bottom: 40px;
        }
        .header p {
            font-size: 16px;
            color: white;
        }
        .hex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Spacing between hexagon and text */
    flex-wrap: wrap;
}

.hex {
    position: relative;
    width: 150px;
    height: 150px;
    background-color: #0d6efd;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); /* Hexagonal Shape */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 10px;
}

.hex-number {
    font-size: 2em;
    font-weight: bold;
}

.hex-text {
    font-size: 1.3em;
    margin-top: 10px;
}

.hex-list {
    width: 250px;
}

.hex-list ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 1em;
}

.hex-list ul li {
    margin-bottom: 10px;
    color: #555;
}

.hex img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    /* Overlay content */
    .hex-number, .hex-text {
      position: relative;
      z-index: 2;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    }


@media (max-width: 768px) {
    .hex {
        width: 180px;
        height: 180px;
    }

    .hex-list {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hex {
        width: 120px;
        height: 120px;
    }

    .hex-list {
        width: 160px;
    }
}
        .services-container {
            display: flex;
            justify-content: space-between;
            margin-top: 40px;
            flex-wrap: wrap;
            gap: 40px;
        }
        .service {
            width: 250px;
            text-align: center;
            background-color: #fff;
            padding: 20px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            font-size: 14px;
            color: #333;
        }
        .service img {
            max-width: 100px;
            margin-bottom: 15px;
        }

.custom-bullets {
  list-style: none;
  padding-left: 0;
}

.custom-bullets li::before {
  content: "•";
  color: #ff9800;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: 0;
}
      

        /* Responsive styles */
        @media (max-width: 768px) {
            .hex-container {
                justify-content: space-around;
            }
            .service {
                width: 100%;
                margin-bottom: 20px;
            }
            .header h1 {
                font-size: 28px;
            }
        }

      .services-section {
    position: relative;
    background-image: url("electric.jpg"); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 80px;
    overflow: hidden;
  }

  /* White box with slide animation */
  .services-box {
    background: #fff;
    padding: 40px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transform: skew(-4deg);
    max-width: 360px;
    opacity: 0;
    transform: translateX(-100px) skew(-4deg);
    animation: slideInLeft 1.2s ease-out forwards;
  }

  /* Slide-in keyframes */
  @keyframes slideInLeft {
    0% {
      opacity: 0;
      transform: translateX(-100px) skew(-4deg);
    }
    100% {
      opacity: 1;
      transform: translateX(0) skew(-4deg);
    }
  }

  /* Reset skew for inner text */
  .services-box * {
    transform: skew(4deg);
  }

  /* Heading style */
  .services-box h3 {
    font-size: 1.8em;
    color: #0056b3;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }

  /* Blue line beside heading */
  .services-box .bar {
    display: inline-block;
    width: 6px;
    height: 45px;
    background-color: #007BFF;
    margin-right: 10px;
    border-radius: 2px;
  }

  /* Services list */
  .services-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .services-box ul li {
    font-size: 1.1em;
    color: #000;
    font-weight: 600;
    margin-bottom: 12px;
  }

  /* Responsive layout */
  @media (max-width: 768px) {
    .services-section {
      justify-content: center;
      padding: 40px 20px;
    }

    .services-box {
      transform: none;
      animation: slideInUp 1.2s ease-out forwards;
      width: 100%;
      max-width: 90%;
    }

    .services-box * {
      transform: none;
    }
  }

  /* Mobile animation (slide up) */
  @keyframes slideInUp {
    0% {
      opacity: 0;
      transform: translateY(60px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  background: url("tower.jpg") no-repeat center/cover,
              url("technology.jpg") no-repeat center/cover,
              url("electric.jpg") no-repeat center/cover,
              url("clean.jpg") no-repeat center/cover;
  background-size: 25% 100%;
  animation: moveBackground 15s linear infinite;
  z-index: 0;
}


/* Animation for background images */
@keyframes moveBackground {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-75%);
  }
}

.partners-banner {
  background-color: #0056b3;
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.4;
}

/* === Section Title === */
.partners-title {
  text-align: center;
  padding: 40px 20px 10px;
}

.partners-title h2 {
  font-size: 2em;
  font-weight: 800;
  color: #000;
  margin-bottom: 8px;
}

.underline {
  width: 300px;
  height: 4px;
  background-color: #007BFF;
  margin: 0 auto;
  border-radius: 2px;
}

/* === Partner Logos Grid === */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px 30px;
  padding: 50px 80px;
  background-color: #f8f9fa;
  justify-items: center;
}

.partner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner img {
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner img:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

/* === Responsive Adjustments === */
@media (max-width: 768px) {
  .partners-title h2 {
    font-size: 1.6em;
  }

  .partners-grid {
    padding: 30px 20px;
    gap: 25px 20px;
  }

  .partner img {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .partners-banner p {
    font-size: 0.95em;
  }

  .partners-title h2 {
    font-size: 1.4em;
  }

  .underline {
    width: 50px;
  }
}

 /* ===== Header / Intro Section ===== */
    .company-intro {
      background: linear-gradient(135deg, #004aad, #007bff);
      color: white;
      text-align: center;
      padding: 70px 20px;
    }

    .company-intro h2 {
      font-size: 2.4rem;
      margin-bottom: 10px;
    }

    .company-intro .established {
      font-weight: bold;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .company-intro h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
    }

    .company-intro .description {
      max-width: 800px;
      margin: 0 auto 25px;
      line-height: 1.6;
    }

    .company-intro .view-more {
      display: inline-block;
      padding: 10px 25px;
      background-color: white;
      color: #004aad;
      border-radius: 6px;
      font-weight: 600;
    }

    /* ===== Horizontal Bar ===== */
    .thick-bar {
      width: 85%;
      height: 25px;
      background-color: #eaeaea;
      margin: 40px auto;
      border-radius: 4px;
    }

    /* ===== About Section ===== */
    .about-us {
      background-color: #f7f9fc;
    }

    .about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 10%;
}

   .about-text {
  flex: 1;
  min-width: 300px;
}

    .about-text h2 {
      font-size: 2rem;
      color: #002b5b;
      margin-bottom: 10px;
    }

    .underline {
      width: 70px;
      height: 4px;
      background-color: #007BFF;
      margin: 10 auto 25px; /* centers underline */
      border-radius: 3px;
    }
    
  /* ===== Responsive Adjustments ===== */
    @media (max-width: 768px) {
      h2 {
        font-size: 1.6rem;
      }
      .underline {
        width: 80px;
      }
    }

    @media (max-width: 480px) {
      h2 {
        font-size: 1.4rem;
      }
      .underline {
        width: 60px;
      }
    }

    .about-text p {
      color: #333;
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .about-text h3 {
      color: #007BFF;
      font-size: 1.3rem;
      margin-top: 25px;
      margin-bottom: 10px;
    }

    .about-image {
      flex: 1 1 400px;
      display: flex;
      justify-content: center;
    }

    .about-image img {
      width: 100%;
      max-width: 450px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
      object-fit: cover;
    }
    

    /* ===== Mission & Vision ===== */
    .mission-vision {
      background: white;
      text-align: center;
    }

    .mission-vision h2 {
      color: #002b5b;
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .mission-vision .underline {
      margin: 0 auto 30px;
    }

    .mv-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1000px;
      margin: auto;
    }

    .mv-box {
      background: #f0f4ff;
      border-radius: 12px;
      padding: 30px 25px;
      flex: 1 1 400px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .mv-box h3 {
      color: #004aad;
      font-size: 1.5rem;
      margin-bottom: 15px;
    }

    .mv-box p {
      color: #333;
      font-size: 1rem;
      line-height: 1.7;
    }


    /* ===== Responsive Design ===== */
    @media (max-width: 900px) {
      .about-container {
        flex-direction: column;
        text-align: center;
      }

      .about-text h2, .mission-vision h2 {
        font-size: 1.8rem;
      }

      .about-text p {
        font-size: 1rem;
      }

      .about-image img {
        max-width: 350px;
      }
    }

    .about-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      gap: 40px;
    }

    .about-text {
      flex: 1 1 500px;
      text-align: left;
    }

    .about-text h2 {
      font-size: 2rem;
      color: #222;
      margin-bottom: 10px;
    }

    .underline {
      width: 100px;
      height: 4px;
      background-color: #007BFF;
      margin-bottom: 25px;
      border-radius: 3px;
    }

    .about-text p {
      font-size: 1rem;
      line-height: 1.7;
      color: #555;
    }

    .about-image {
      flex: 1 1 400px;
      text-align: center;
    }

    .about-image img {
      width: 100%;
      max-width: 450px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* ===== Responsive Adjustments ===== */
    @media (max-width: 768px) {
      .about-container {
        flex-direction: column;
        text-align: center;
      }

      .about-text {
        text-align: center;
      }

      .underline {
        margin: 0 auto 25px;
        width: 80px;
      }

      .about-text h2 {
        font-size: 1.7rem;
      }

      .about-text p {
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
      .about-text h2 {
        font-size: 1.5rem;
      }
      .underline {
        width: 60px;
      }
    }

 /* Job Section */
    .job-banner { 
      background-color: #007bff; 
      color: black; 
      padding: 40px 20px; 
      text-align: center; 
      background-image: url("career6.jpg");
      background-size: cover;
      background-position: center;
    }
    .job-banner h2 { font-size: 26px; margin-bottom: 15px; }
    .job-banner p { font-size: 17px; margin: 10px 0; }
    .job-banner b { color: purple; }

    /* Job tables */
    .job-table-container {
      overflow-x: auto;
      margin: 20px auto;
      display: flex;
      justify-content: center;  
    }
    .job-table {
      width: 90%;
      max-width: 800px;
      border-collapse: collapse;
      border-radius: 8px;
      overflow: hidden;
      color: #fff;
      background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 56, 128, 0.8));

    }
    .job-table td {
      padding: 12px 16px;
      text-align: left;
    }
    .job-table tr:nth-child(odd) {
      background-color: rgba(255, 255, 255, 0.15);
    }
    .job-table tr:nth-child(even) {
      background-color: rgba(255, 255, 255, 0.05);
    }
    .job-table td:first-child {
      font-weight: bold;
      width: 35%;
    }


 /* Responsive */
    @media (max-width: 768px) {
      nav ul {
        display: none;
        flex-direction: column;
        background: #fff;
        width: 100%;
        position: absolute;
        left: 0;
        top: 70px;
        border-top: 2px solid #007bff;
      }
      nav ul.show {
        display: flex;
      }
      .menu-toggle {
        display: flex;
      }
      .job-banner {
        padding: 40px 10px;
      }
      .job-table td {
        display: block;
        text-align: left;
        padding: 10px 12px;
      }
      .job-table td:first-child {
        background: rgba(255, 255, 255, 0.2);
      }
    }

/* ===== Contact Section ===== */
    .contact-us {
      position: relative;
      background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1200&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: #fff;
      padding: 90px 20px;
      text-align: center;
    }
    .contact-us::before {
      content: "";
      position: absolute;
      top:0; left:0;
      width: 100%; height: 100%;
      background: rgba(0,43,91,0.7);
      z-index: 0;
    }
    .contact-container { position: relative; z-index: 1; }
    .contact-us h2 { font-size: 2.2rem; margin-bottom: 10px; }
    .underline { width: 70px; height: 4px; background-color: #00b4ff; margin: 0 auto 25px; border-radius: 3px; }

    .contact-card {
      background-color: #0052cc;
      max-width: 500px;
      margin: 40px auto;
      padding: 40px;
      border-radius: 8px;
      text-align: left;
      box-shadow: 0 6px 18px rgba(0,0,0,0.2);
      color: #fff;
    }
    .contact-card h3 { font-size: 1.6rem; margin-bottom: 15px; }
    .contact-card p { margin: 10px 0; font-size: 1rem; line-height: 1.6; }
    .contact-card a { color: #ffea00; font-weight: 600; }
    .contact-card a:hover { text-decoration: underline; }

    /* Footer */
    footer { background-color: #002b5b; color: #fff; text-align: center; padding: 20px; }
    footer p { margin: 0; font-size: 0.95rem; }





/* ===== Footer ===== */
    footer {
      background-color: #002b5b;
      color: white;
      text-align: center;
      padding: 30px 10px;
      font-size: 0.95rem;
      margin-top: 50px;
    }

    footer .footer-container {
      max-width: 1000px;
      margin: auto;
    }

    footer a {
      color: #00bfff;
      margin: 0 8px;
    }


