* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    margin-top: 80px;
  }
  
  #navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    background: #fcfbfb;
    color: rgb(32, 31, 31);
    padding: 0 20px;
    position: fixed; /* Change position to fixed */
    top: 0; /* Position it at the top */
    width: 100%; /* Make it span the full width */
    z-index: 1000; /* Ensure it is above other content */
  }
  
  .logo img {
    height: 50px; /* Adjust the height according to your logo size */
    width: auto;
  }
  
  /* Add this if you need to center the logo vertically within the navbar */
  .logo {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    color: rgb(8, 8, 8);
    text-decoration: none;
    padding: 15px 20px;
    display: block;
  }
  
  .nav-links a:hover {
    background: #efeeee;
  }
  
  .dropdown {
    display: none;
    position: absolute;
    background: #f0efef;
    top: 1;
    list-style: none;
    padding: 20px;
    z-index: 2;
  }
  
  /* .dropdown li {
    width: 200px;
  } */
  .dropdown ul {
    display: flex;
    font-size: 15px;
     width: 600px;
  }
  
  .dropdown a {
    padding: 10px 20px;
  }
  
  .nav-links li:hover .dropdown {
    display: block;
  }
  /* Global styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
  }
  
  /* Navbar */
  #navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 20px;
    background: #fcfbfb;
    z-index: 1000;
  }
  
  /* WhatsApp Button */
  .whatsapp-button {
    position: absolute;
    top: 10px;
    left: 250px;
  }
  
  .whatsapp-button a {
    display: inline-block;
    background-color: #25D366;
    padding: 10px 15px;
    border-radius: 80%;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }
  
  .whatsapp-button a img {
    width: 40px;
    height: 40px;
  }
  
  .whatsapp-button a:hover {
    transform: scale(1.1);
  }
  
  /* Media Queries */
  @media screen and (max-width: 1024px) {
    .whatsapp-button {
      top: 10px;
      left: 250px;
    }
  
    .whatsapp-button a {
      padding: 8px 12px;
    }
  
    .whatsapp-button a img {
      width: 35px;
      height: 35px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .whatsapp-button {
      top: 8px;
      left: 250px;
    }
  
    .whatsapp-button a {
      padding: 6px 10px;
    }
  
    .whatsapp-button a img {
      width: 30px;
      height: 30px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .whatsapp-button {
      top: 5px;
      left: 200px;
    }
  
    .whatsapp-button a {
      padding: 5px 8px;
    }
  
    .whatsapp-button a img {
      width: 25px;
      height: 25px;
    }
  }
  
  
  /* Footer */
  #footer {
    background: rgb(125, 194, 240);
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  @media screen and (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  }
  
  .burger {
    display: none;
    cursor: pointer;
  }
  
  .burger div {
    width: 30px;
    height: 3px;
    background: rgb(0, 0, 0);
    margin: 5px;
    transition: all 0.3s ease;
  }
  
  
/* Footer css */

#footer {
    background: rgb(125, 194, 240);
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    z-index: 1;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .footer-section {
    flex: 1;
    padding: 20px;
    min-width: 160px;
  }
  
  .footer-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer-section p,
  .footer-section ul {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: white;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  .social-links a {
    display: inline-block;
    margin-right: 10px;
    color: aliceblue;
  }
  
  .social-links img {
    width: 24px;
    height: 24px;
  }
  
  .footer-bottom {
    padding: 10px;
    background: #222222;
    font-size: 14px;
    margin-top: 20px;
  }
  
  
/* Footer css */

#footer {
    background-color: #02c0ff;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    z-index: 1;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .footer-section {
    flex: 1;
    padding: 20px;
    min-width: 160px;
  }
  
  .footer-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer-section p,
  .footer-section ul {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: white;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  .social-links a {
    display: inline-block;
    margin-right: 10px;
    color: aliceblue;
  }
  
  .social-links img {
    width: 24px;
    height: 24px;
  }
  
  .footer-bottom {
    padding: 10px;
    background: #222222;
    font-size: 14px;
    margin-top: 20px;
  }
  
 


/* Media Queries */
@media screen and (max-width: 1024px) {
  #navbar {
    height: 70px;
    padding: 0 15px;
  }

  .logo img {
    height: 40px;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 70px;
    width: 100%;
    background: #fcfbfb;
    display: none;
  }

  .nav-links.nav-active {
    display: flex;
  }

  .burger {
    display: block;
  }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background: #fdfdfd;
      position: absolute;
      top: 80px;
      right: 0;
    }
  
    .nav-links li {
      text-align: center;
      padding: 15px 0;
    }
  
    .burger {
      display: block;
    }
  
    .nav-active {
      display: flex;
    }
  
    .toggle .line1 {
      transform: rotate(-45deg) translate(-5px, 6px);
    }
  
    .toggle .line2 {
      opacity: 0;
    }
  
    .toggle .line3 {
      transform: rotate(45deg) translate(-5px, -6px);
    }
}    

/* For screens 480px and smaller */
@media (max-width: 480px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      padding: 20px;
      text-align: center;
    }
  
    .footer-section h2 {
      font-size: 20px;
    }
  
    .footer-section p,
    .footer-section ul {
      font-size: 17px;
    }
  
    .social-links img {
      width: 25px;
      height: 25px;
    }
  
    .footer-bottom {
      font-size: 13px;
    }
  }
  
/* General mobile view adjustments */
@media screen and (max-width: 480px) {
    body {
      margin-top: 50px; /* Adjusted to reduce top margin for smaller screens */
    }
  
    /* Navbar adjustments */
    #navbar {
      height: 60px;
      padding: 0 10px;
    }
  
    .logo img {
      height: 40px;
    }
  
    .nav-links a {
      padding: 10px 15px;
    }
}  


