* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
 }
 
 html,
 body {
    height: 100%;
    width: 100%;
    overflow-x: clip;
    ;
 }
 
nav {
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white; /* ADDED: Solid background for fixed position */
    height: 70px;
    
    /* CRITICAL FIXES FOR POSITIONING: */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* ADDED */
}

 
 .logo {
    color: #000;
 }
 
 .logo h1 {
    font-size: 24px;
    transition: transform 0.3s ease-in-out;
 }
 
 .logo h1:hover {
    transform: scale(1.1);
 }
 
 #menuList {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
 }
 
 #menuList li {
    position: relative;
 }
 
 #menuList li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 18px;
    padding: 8px 12px;
    transition: color 0.3s ease-in-out;
 }
 
 #menuList li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #0cc0df;
    transition: width 0.3s ease-in-out;
 }
 
 #menuList li a:hover {
    color: #0cc0df;
 }
 
 #menuList li a:hover::after {
    width: 100%;
 }
 
 .menu-icon {
    display: none;
    cursor: pointer;
 }
 
 .menu-icon img {
    width: 30px;
    transition: transform 0.3s ease-in-out;
 }
 
 .nav-right a {
    display: flex;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    background: #0cc0df;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    box-shadow: 0px 5px 10px rgba(12, 192, 223, 0.3);
    position: relative;
    overflow: hidden;
 }
 
 .nav-right a:hover {
    transform: translateY(-3px);
    background: #004aad;
 }
 .nimz {
    color: #004aad;
 }
 
 .liot {
    color: #0cc0df;
 }
 
 .whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 998;
 }
 
 
 .chat-popup {
    display: none;
    position: fixed;
    bottom: 110px;
    right: 20px;
    width: 320px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    animation: fadeIn 0.3s ease-in-out;
 }
 
 
 .chat-popup header {
    background: #25D366;
    color: white;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
 }
 
 .chat-popup header .close-btn {
    cursor: pointer;
    font-size: 20px;
 }
 
 
 .chat-body {
    padding: 20px;
    font-size: 14px;
 }
 
 .chat-body p {
    margin-top: 30px;
    margin-bottom: 10px;
 }
 
 .chat-body .contact-card {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
 }
 
 .chat-body .contact-card:hover {
    background: #e0e0e0;
 }
 
 .contact-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
 }
 
 .contact-card .contact-info {
    flex: 1;
 }
 
 .contact-card .contact-info .name {
    font-weight: bold;
 }
 
 .contact-card .contact-info .role {
    font-size: 12px;
    color: gray;
 }
 @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
 }


.hero-section {
  
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-box {
  background: linear-gradient(135deg, #004aad, #0cc0df);
  padding: 40px;
  max-width: 1000px; /* Box width */
  border-radius: 20px; /* Rounded corners */
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3); /* Shadow for depth */
  margin-top: 44px;
}

.hero-box h1 {
  font-size: 4.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-box p {
  font-size: 1.5rem;
  opacity: 0.9;
  line-height: 1.8;
}



/* 🚀 Mission Section */
.mission-section {
  padding: 100px 8%;
  text-align: center;
  background: #ffffff;
}
.mission-section h2 {
  font-size: 3.4rem;
  color: #004aad;
  margin-bottom: 20px;
}
.mission-section p {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #333;
  max-width: 850px;
  margin: auto;
}

/* 🌍 Vision Section */
.vision-section {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
}
.vision-section h2 {
  font-size: 3rem;
  color: #004aad;
  margin-bottom: 50px;
}
.vision-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.vision-card {
  background: #0cc0df;
  color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  flex: 1 1 300px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}
.vision-card:hover {
  transform: translateY(-10px) scale(1.03);
}
.vision-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.vision-card p {
  font-size: 1.1rem;
  line-height: 1.7;
}
body {
  background: #f9f9f9;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

.section-padding {
  padding: 60px 20px;
  text-align: center;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #004aad, #0cc0df);
  bottom: -10px;
  left: 20%;
  border-radius: 2px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.project-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 74, 173, 0.2);
}

.project-image-container {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image-container {
  transform: scale(1.05);
}

.project-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, #004aad, #0cc0df);
  color: #fff;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 12px;
}

.project-content {
  padding: 20px;
  text-align: left;
}

.project-content h3 {
  font-size: 1.2rem;
  color: #004aad;
  margin-bottom: 8px;
}

.project-content p {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.project-content a {
  color: #0cc0df;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.project-content a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -2px;
  background: #004aad;
  transition: width 0.3s ease;
}

.project-content a:hover {
  color: #004aad;
}

.project-content a:hover::after {
  width: 100%;
}

.industry {
  display: block;
  font-size: 0.85rem;
  color: #555;
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
}


.footer {
   background-color: #ffffff; 
   color: #ffffff;
   padding: 50px 20px;
   margin-top: 50px;
}

.footer-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   max-width: 1200px;
   margin: auto;
   gap: 30px;
}

.footer-about {
   flex: 1;
   min-width: 250px;
}

.footer-about h2 {
   font-size: 24px;
   font-weight: bold;
   margin-bottom: 15px;
}

.footer-about p {
   font-size: 14px;
   line-height: 1.6;
   color: gray; 
}


.footer-links, .footer-follow, .footer-legal {
   flex: 1;
   min-width: 200px;
}

.footer h3 {
   font-size: 18px;
   margin-bottom: 15px;
   color: #000000; 
}

.footer ul {
   list-style: none;
   padding: 0;
}

.footer ul li {
   margin-bottom: 10px;
}

.footer ul li a {
   color: gray;
   text-decoration: none;
   font-size: 14px;
   transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
   display: inline-block;
}

.footer ul li a:hover {
   color: #0CC0DF; 
   transform: translateX(5px);
}


.social-icons {
   display: flex;
   gap: 15px;
   padding: 0;
   
}

.social-icons li {
   list-style: none;
}

.social-icons a {
   color: #b3d9ff; 
   font-size: 18px;
   transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.social-icons a:hover {
   color: #0CC0DF; 
   transform: scale(1.1);
}


.footer-bottom {
   text-align: center;
   border-top: 1px solid #0a3b80; 
   padding-top: 10px;
   margin-top: 20px;
}

.footer-bottom p {
   font-size: 12px;
   color: gray; 
   margin: 0;
}

 .whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 65px;
    height: 65px;
    background:#25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.7);
    transition: 0.3s ease;
    z-index: 999;
    animation: waFloat 3s infinite ease-in-out;
}

/* WhatsApp icon inside the button */
.whatsapp-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
}

/* Hover Effect */
.whatsapp-btn:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
}

 
 
 
 /*Responsive design*/
 
 @media screen and (max-width: 1024px){
    nav {
        padding: 10px 20px;
     }
  
     #menuList {
        gap: 20px;
        padding-right: 0;
     }
     .hero-section h1 {
    font-size: 3.5rem;
  }

  .hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
  }

  .mission-section,
  .vision-section,
  .projects-section,
  .clients-section {
    padding: 80px 5%;
  }

  .vision-cards {
    gap: 20px;
  }

  .vision-card {
    padding: 30px 20px;
  }

  .projects-grid {
    gap: 25px;
  }

  .project-card img {
    height: 220px;
  }

  .clients-logos {
    gap: 40px;
  }

  .clients-logos img {
    width: 150px;
  }
   .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
   }

 }
 @media screen and (max-width: 768px){
    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease-in-out;
  
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px) brightness(1.1) contrast(1.3);
        -webkit-backdrop-filter: blur(20px) brightness(1.1) contrast(1.3);
  
  
        padding: 15px 0;
        z-index: 1000;
     }
  
  
     .menu-icon {
        display: block;
        cursor: pointer;
        
     }
  
  
     .nav-menu .contact {
        display: block;
     }
  
  
     .nav-right a {
        display: none;
     }
  
  
     #menuList {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 0;
        text-align: center;
        flex-direction: column;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease-in-out;
     }
  
     #menuList.active {
        max-height: 500px;
        padding: 20px 0;
     }
  
     #menuList li {
        margin: 10px 0;
     }
     .hero-section {
    padding: 100px 20px;
  }

  .hero-section h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .hero-section p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .mission-section h2,
  .vision-section h2,
  .projects-section h2,
  .clients-section h2 {
    font-size: 2rem;
  }

  .mission-section p,
  .vision-card p,
  .project-card p,
  .clients-section p {
    font-size: 1rem;
  }

  .vision-cards {
    flex-direction: column;
    align-items: center;
  }

  .vision-card {
    width: 100%;
    max-width: 350px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card img {
    height: 200px;
  }

  .clients-logos {
    gap: 25px;
  }

  .clients-logos img {
    width: 120px;
  }
  .social-icons{
   margin-left: 55px;
  }
 }
 @media screen and (max-width: 480px) {

 }
 
 @media screen and (min-width: 769px) {
    .nav-menu .contact {
       display: none;
    }
 }