* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
 }
 
 html,
 body {
    height: 100%;
    width: 100%;
    overflow-x: clip;
      margin: 0;
      padding: 0;
  }

 
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); }
 }

 .container {
   
   display: flex;
   flex-direction: column; /* Stack content vertically */
   align-items: center;
   justify-content: space-between;
}


.left-section,
.right-section {
   width: 65%;
   padding: 40px;
   border-radius: 10px;
   text-align: center;
}

.content h1 {
   font-size: 42px;
   margin-top: 100px;
   animation: fadeInDown 1s ease-in-out;
   letter-spacing: 2px;
}

.content p {
   font-size: 20px;
   margin-top: 20px;
   animation: fadeInUp 1s ease-in-out;
   line-height: 1.6;
}

.right-section {
   background: white;
   padding: 40px;
   border-radius: 20px;
   box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.nav {
   display: flex;
   gap: 15px;
   margin-bottom: 20px;
   justify-content: center;
}

.nav button {
   padding: 14px;
   border: none;
   cursor: pointer;
   background: #ddd;
   border-radius: 8px;
   font-size: 18px;
   transition: 0.3s;
}

.nav button.active {
   background: #004aad;
   color: white;
   transform: scale(1.1);
}

form {
   display: none;
   animation: fadeIn 0.5s ease-in-out;
}

form.active {
   display: block;
}

input,
textarea {
   width: 100%;
   padding: 14px;
   margin: 15px 0;
   border: 2px solid #004aad;
   border-radius: 8px;
   font-size: 18px;
}

button.submit {
   background: #004aad;
   color: white;
   padding: 20px;
   border: none;
   cursor: pointer;
   border-radius: 8px;
   font-size: 20px;
   width: 100%;
   transition: 0.3s;
   
}

button.submit:hover {
   background: #0cc0df;
}
.active { 
   display: block; 
}
form { 
   display: none;
} 
#email p{
   margin-top: 30px;
   margin-bottom: 50px;
   font-size: 20px;
}

@keyframes fadeInDown {
   from {
       opacity: 0;
       transform: translateY(-20px);
   }

   to {
       opacity: 1;
       transform: translateY(0);
   }
}

@keyframes fadeInUp {
   from {
       opacity: 0;
       transform: translateY(20px);
   }

   to {
       opacity: 1;
       transform: translateY(0);
   }
}

@keyframes fadeIn {
   from {
       opacity: 0;
   }

   to {
       opacity: 1;
   }
}

.popup {
   display: none;
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: white;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
   text-align: center;
   z-index: 1000;
   width: 400px; /* Default width */
   max-width: 90%;
}

.popup button {
   background-color: #28a745;
   margin-top: 30px;
   width: 100px;
   height: 50px;
   border-radius: 10px;
   border: none;
   color: white;
   font-size: 16px;
   cursor: pointer;
   transition: background 0.3s, transform 0.2s;
}

.popup button:hover {
   background-color: #218838;
   transform: scale(1.05);
}

.popup-overlay {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   z-index: 999;
}

.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;
     }
     .container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%;
  }

  .left-section,
  .right-section {
      width: 80%;
      padding: 30px;
  }

  .content h1 {
      font-size: 36px;
  }

  .content p {
      font-size: 18px;
  }
  .popup {
   width: 350px;
   padding: 18px;
}
.popup button {
   width: 90px;
   height: 45px;
   font-size: 15px;
}
.footer-container {
   flex-direction: column;
   align-items: center;
   text-align: center;
}

.footer-about,
.footer-links,
.footer-follow,
.footer-legal {
   min-width: 100%;
   margin-bottom: 20px;
}
}

 
 @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;
     }
     .container {
      padding: 50px;
      width: 100%;
  }

  .left-section,
  .right-section {
      width: 90%;
      padding: 20px;
  }

  .content h1 {
      font-size: 30px;
  }

  .content p {
      font-size: 16px;
  }

  input,
  textarea {
      font-size: 16px;
  }

  button.submit {
      font-size: 18px;
  }

  .nav {
      flex-direction: column;
      gap: 10px;
  }
  .popup {
   width: 300px;
   padding: 16px;
}
.popup button {
   width: 85px;
   height: 40px;
   font-size: 14px;
}
.footer-container {
   flex-direction: column;
   text-align: center;
}

.social-icons {
   justify-content: center;
}

.footer ul li a {
   display: block;
}
}
   
 
 @media screen and (max-width: 480px) {

   .container {
      padding: 30px;
      width: 100%;
  }

  .left-section,
  .right-section {
      width: 100%;
      padding: 15px;
  }

  .content h1 {
      font-size: 24px;
  }

  .discription {
      font-size: 20px;
  }

  input,
  textarea {
      font-size: 14px;
      padding: 12px;
  }

  button.submit {
      font-size: 16px;
      padding: 12px;
  }
  .popup {
   width: 90%;
   padding: 14px;
}
.popup button {
   width: 80px;
   height: 38px;
   font-size: 13px;
}
.footer-container {
   flex-direction: column;
   text-align: center;
   gap: 20px;
}

.footer-about h2 {
   font-size: 20px;
}

.footer h3 {
   font-size: 16px;
}

.footer ul li a {
   font-size: 12px;
}

.social-icons {
   justify-content: center;
}

.social-icons a {
   font-size: 16px;
}
  
}

 
 
 @media screen and (min-width: 769px) {
    .nav-menu .contact {
       display: none;
    }
 }