body, html {
    /* height: 100%; */
  
    background-color: white;
  
    background-size: cover;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
   color: #207893;
    text-align: center;
    height: 100vh;
    justify-content: center;
    align-items: center;
    scroll-behavior: smooth;

  }

  header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 999;
    background-color:#065277;;
    width: 100vw;
    height: 80px;
  }
  
  header #menu-toggle{
    display: none;
  }
  .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1200px;
    margin: auto;
   
  }
  
  .tab-logo img{
    height: 50px;
    width: auto;
}

/* Navigation links */
.nav-tabs {
  display: flex;
  gap: 20px;
}

.nav-tabs div a {
  text-decoration: none;
  color: #e1e3e3;
  font-weight: bold;
  padding: 10px 15px;
  transition: background 0.3s, color 0.3s;
}

.nav-tabs div a:hover {
  background-color: #0077b6;
  color: white;
  border-radius: 4px;
}

/* Hamburger menu icon */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #f9f9f9;
}
/* Responsive design */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  #menu-toggle {
    display: none;
  }

  .nav-tabs {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    background: #f9f9f9;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  #menu-toggle:checked + .menu-icon + .nav-tabs {
    display: flex;
  }

  .nav-tabs div a {
    padding: 12px;
    display: block;
    color: #164936;
  }
}


#company, #product, #services, #vision-mission, #contact {
  scroll-margin-top: 80px; /* If header height is 80px */
  position: relative;


}


  .video-bg {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  
  .video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}
.content h1 {
    font-size: 6rem;
    margin-bottom: 10px;
  }
  
  .content p {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .btn {
    padding: 12px 30px;
    background: #ffffff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #ddd;
  }
  

 /* Company Section */
    /* #company {
      background: #dddddd9e;
      padding: 60px 20px;
         background-image: url(images/company.jpg);
    } */

#company {
    
    background-image: url(company.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    height: 100vh;
}


    .company-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      /* max-width: 1200px; */
      margin: 0px auto;
      height: 100vh;
    }
    
    .company-info {
          flex: 1;
          min-width: 280px;
          /* background-color: #0077b6c9; */
          background-color: #48697ac9;
          color: #fff;
          padding: 20px 20px 0px 20px;
          border-radius: 8px;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
          height: 98v
    }


    .company-info h2 {
      font-size: 32px;
      margin-top: 0px;
      color: #062b3d;
      text-align: center;
      padding: 30px;
    }
    
    .company-info p {
      font-size: 18px;
      line-height: 1.8;
      text-align: justify;
      padding: 20px;
      padding-top: 0px;
        max-width: 1200px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    }
    
    .company-image {
      flex: 1;
      min-width: 280px;
      text-align: center;
    }
    
    .company-info img {
      width: 90%;
      /* max-width: 500px; */
      height: auto;
      border-radius: 8px;
      /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
          object-fit: cover;
    }
    .company-img2{
      flex: 1;
    }

    .company-cvd-images{
      display: flex;
        max-width: 1200px;
    justify-content: center;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
        
    }
    .company-img3{
    
       width: 420px;
       
    }
    .company-img2 img{
      height: 300px; 
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }
    .company-info,
  .company-image {
    width: 60%;
    height: auto;

  }
/*company media query*/
/* Tablets and below (max-width: 1024px) */
@media (max-width: 1024px) {
  #company {
    height: auto;
    padding: 40px 20px;
  }

  .company-container {
    height: auto;
  }

  .company-info,
  .company-image {
    width: 50%;
    height: auto;
  }

  .company-info h2 {
    font-size: 28px;
    margin-top: 20px;
    padding: 20px;
  }

  .company-info p {
    font-size: 16px;
    padding: 15px;
  }

  .company-img2,
  .company-img3 {
    width: 100%;
  }
        iframe{
        max-width: 200px;
        height: 300px;
      }

      .company-img2 img{
      height: 250px; 
    }
     .company-cvd-images {
    flex-direction: column;
    align-items: center;
  }
}
/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .company-info h2 {
    font-size: 24px;
    padding: 15px;
  }

  .company-info p {
    font-size: 14px;
    padding: 10px;
  }

    .company-cvd-images {
    flex-direction: column;
    align-items: center;
  }

  .company-img2,
  .company-img3 {
    width: 50%;
    max-width: 100%;
  }
  
      .company-img2 img{
      height: 250px; 
    }
      
}




/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .company-info h2 {
    font-size: 20px;
    padding: 10px;
  }

  .company-info p {
    font-size: 12px;
    padding: 8px;
  }

  .company-img2,
  .company-img3 {
    width: 50%;
  }
      .content h1 {
        font-size: 4rem;
    
      }
}



    /* Responsive Adjustments
    @media (max-width: 768px) {
      #company{
        background-attachment: scroll; 
         background-position: top;

      }
      .content h1 {
        font-size: 3rem;
    
      }
      .content p {
        font-size: 1.2rem;
        margin-bottom: 20px;
      }
      .company-container {
        flex-direction: column;
        text-align: center;
      }
    
      .company-info h2 {
        font-size: 38px;
      }
    
      .company-info p {
        font-size: 1rem;
      }
      /* .banner-img img {
        height: 35vh;
      } 
    }*/
     

  
    #product {
      padding: 50px 20px;
      background-color: #ffffff;
      font-family: Arial, sans-serif;
    color: #207893;
  max-width: 1800px;
  margin: 5%;
      border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    position: relative;
   
  

    }
    
    #product h2 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 5%;
      color: #062b3d;
      margin-top: 0px;
    }
    
    .product-container {
      display: flex;
      flex-wrap:wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
    }
  
    .product-image img {
      width: 100%;
      max-width: 450px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
  
    .product-sec {
      flex: 1;
      min-width: 280px;
      max-width: 500px;
    }
    
    .product-sec p {
      font-size: 16px;
      line-height: 1.6;
      text-align: justify;
          margin-top: 0px;
    }
    .product-sec2{
      display: flex;
      flex-direction: row;
      gap: 5px;
      margin-bottom: 20px;
    }
    .product-info2{
      flex: 1;
      text-align: justify;
    }
    .product-image2{
      flex: 1;
    }
      .product-image2 img{
        width: 470px;
        height: auto;
              border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }
      .product-sec2 p {
      font-size: 16px;
      line-height: 1.6;
      text-align: justify;
      }


/* Tablets and below (max-width: 1024px) */
@media (max-width: 1024px) {
  #product {
    padding: 70px 15px;
    
  }

  .product-container {
    flex-direction: column;
    gap: 20px;
    max-width: 90%;
  }

  .product-image img {
    max-width: 100%;
  }

  .product-sec,
  .product-image2 {
    width: 100%;
    max-width: none;
  }

  .product-sec2 {
    flex-direction: column;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  #product h2 {
    font-size: 28px;
  }

  .product-container {
    gap: 15px;
  }

  .product-sec p {
    font-size: 14px;
  }

  .product-image2 img {
    width: 100%;
    height: auto;
  }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  #product h2 {
    font-size: 24px;
      margin: 0px;
  }

  .product-sec p {
    font-size: 12px;
  }

  .product-sec2 p {
    font-size: 14px;
  }

  .product-container {
    gap: 10px;
    padding: 20px 10px;
  }

  .product-image2 img {
    width: 100%;
    height: auto;
  }
        iframe{
        max-width: 200px;
        height: 300px;
      }
}


    
    #services {
      padding: 40px 20px;
      /* background: #f5f5f5; */
      background: #48697ac9;
      font-family: Arial, sans-serif;
      color:#062b3d;
      max-width: 1800px;
      margin: 10%;
    }
    
    #services h2 {
      text-align: center;
      font-size: 30px;
      margin-bottom: 40px;
    }
    
    .service {
      background: #fff;
      margin:15px auto;
      padding: 20px;
      border-left: 4px solid #005b4d;
      max-width: 800px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      border-radius: 5px;
        color: #207893;
    }
    
    .service h3 {
      margin: 0 0 10px;
      color: #207893;
    }
    
    .service p {
      margin: 0;
      font-size: 15px;
      line-height: 1.6;
    }
      .service img{
        width: 300px;
      padding: 30px;
      }

      .ecodiamond img{
        width: 500px;
        padding: 30px;
      }



  #vision-mission {
      max-width: 1200px;
      margin: 60px auto;
      padding: 40px 20px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
          color: #207893;
      max-width: 1800px;
      margin: 10%;
      
    }
    
    #vision-mission h2 {
      color: #062b3d;
      margin-bottom: 10px;
      font-size: 1.8rem;
      margin-top: 5%;
    }
    
    #vision-mission p {
      /* color: #333;
      line-height: 1.7;
      font-size: 1rem;
      margin-bottom: 30px; */
      font-size: 16px;
      line-height: 1.6;
      text-align: justify;


    }
    

  
   
    
    /*contact section*/
    #contact {
      background: #dddddd9e;
      padding: 40px 20px;
     
      font-size: 1.3rem;
      max-width: 1800px;
      margin: 10%;
    }
    
    #contact h2 {
      text-align: center;
      color: #062b3d;
      margin-bottom: 30px;

    }
    
    .contact-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      margin-left: 3%;
      margin-right: 20px;
  
    }
    
    .contact-info {
      flex: 1;
      min-width: 280px;
      background: #fff;
      padding: 10PX;
      min-width: 230PX;
    }
    
    .contact-info p {
      font-size: 16px;
      color: #444;
    }
    .contact-info a{
      color: black;
    }
    
    .social-icons a {
      color: #333;
      font-size: 22px;
      margin-right: 15px;
      transition: color 0.3s, transform 0.3s;
    }
    
    .social-icons a:hover {
      color: #0077b5; /* Customize as per brand color */
      transform: scale(1.2);
    }
    
    
    .map-container {
      flex: 1;
      min-width: 300px;
    }
    iframe{
      width: 400px;
    }



     /*footer section*/
     footer{
      background-color: #444;
      color: #fff;
    }
    .copyright {
      display: flex;
      justify-content: space-between;
      align-items: center;
      clear: both;
      background-color: #062b3d;
      color: #fff;
      clear: both;
    }
    
    .copy {
      width: 500px;
      text-align: center;
      margin: 10px 0px;
      padding: 10px;
    }
    .docs-container {
  margin-left: auto;
  width: 200px;
}

.docs-container a {
  margin-right: 20px;
  color: #fff;
  
}

.docs-container a:last-child {
  margin-right: 0;
}
 
    /* Responsive adjustments */
    @media (max-width: 1024px) {
            .ecodiamond img{
     
         width: 350px;
      }
    }
    @media (max-width: 768px) {
      #vision-mission {
        padding: 30px 15px;
        margin: 0px;
      }
    
      #vision-mission h2 {
        font-size: 1.5rem;
      }
    
      #vision-mission p {
        font-size: 0.95rem;
      }
      .ecodiamond img{
        width: 250px;
      }
      .service img {
        width: 145px;
      }
      #services{
        margin: 0px;
      }

    }
    
    
  
    @media (max-width: 768px) {
      .logo-blur {
        width: 150px;
        filter: blur(2px);
      }
    }
    
 
    @media (max-width: 768px) {
      #contact {
        padding: 30px 15px;
          margin: 0px;
      }
    
      #contact h2 {
        font-size: 1.6rem;
      }
    
      #contact p {
        font-size: 0.8rem;
      }
      /* .map-container {
     
        max-width: 100px;
      } */
      iframe{
        max-width: 200px;
        height: 300px;
      }
      .footer-section{
        font-size: 12px;
      }
      .contact-info{
        min-width: 150px;
      }
      iframe{
      width: 150px;
    }
    .map-container{
      min-width: 160px;
    }
      
    }  
