body{
    background-color: white;
    scroll-behavior: smooth;
    overflow-x: hidden; 
 }
 html{
  scroll-behavior: smooth;
 }
 * {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
 }
 
 html, body {
    height: 100%;
    overflow-y: scroll;  /* Enables scrolling */
    scrollbar-width: none;  /* Firefox */
}
/* For Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    display: none;  /* Hide the scrollbar */
}

/* Ensure the content is scrollable */
body {
    overflow-y: scroll;
}

/* companybanner */
 .company-banner {
    width: 80vw;  /* Makes banner cover the full viewport width */
    max-width: 100%;  /*Ensures banner doesn't exceed screen width 
    
    margin: 0 auto;  /* Centers the banner */
    overflow-x: hidden; 
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: rgb(1, 71, 94); /* Same color as the header */
    color: yellow; /* Text color for contrast */
    width: 100%;
    text-align: left;
    border: none; /* No shadow or border to blend with header */
}

.company-banner .logo {
    height: 100px;
    width: 100px;
    margin-right: 15px;
    padding-left: 150px;
}

.company-banner .company-name {
    font-size: 38px;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    line-height: 1.2;
    margin-left: auto;
    padding-right: 150px;
}
 

/* header */
 .header {
    z-index: 3;
    margin-top: 0px;
    width: 81.5%;
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
    align-items: center;
    height: 70px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: rgb(1, 71, 94);
 }
 
 .header .item {
    display: flex;
    column-gap: 30px;
    margin-left: auto;
 }
 
 .header .item a {
    text-decoration: none;
    font-size: 17px;
    color: white;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
 }
 .header .item a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgb(0, 255, 238);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
 }
 .header .item a:hover::after {
    visibility: visible;
    transform: scaleX(1);
 }
 
 
 .header .item a:hover {
    color: rgb(0, 255, 238);
 }
 
 
 /* Dropdown menu styles */
 .dropdown {
  position: relative;
  display: inline-block;
 }
 
 .dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(1, 71, 94);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  min-width: 220px;
  padding: 12px 16px;
  top: 30px; /* Adjust as needed */
 }
 
 .dropdown-content a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 8px 16px;
  font-size: 15px;
 }
 
 .dropdown-content a:hover {
  color: rgb(0, 255, 238);
  color: rgb(1, 71, 94);
 }
 
 .dropdown:hover .dropdown-content {
  display: block;
 }

 /* Responsive Navbar Styles */
.responsive-navbar {
    display: none; /* Hidden by default on larger screens */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(1, 71, 94);
    z-index: 1000;
    color: white;
    height: 60px;
    box-shadow: 1px 0.8px 10px black;
  }
  
  /* Navbar Content */
  .navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8.1px 25px 10px 0px;
    height: 40px;
    
  }
  
  
  
  /* Menu Toggle Icon */
  .menu-toggle {
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
  }
  
  /* Navbar Links */
  .navbar-links {
    list-style: none;
    padding: 0;
    display: none; /* Hidden by default */
  }
  
  .navbar-links.active {
    display: block; /* Show links when active */
    background-color: rgb(1, 71, 94);
  }
  
  .navbar-links li {
    position: relative;
    border-bottom: 1px solid rgb(0, 255, 238);
  }
  
  .navbar-links li a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    
    
  }
  .navbar-links li a:hover{
    color: rgb(0, 255, 238);
  }
 

  /* Dropdown Menu Styles */
/* Services Menu Styles */
.services-menu {
    display: none; /* Hidden by default */
    list-style: none;
    position: relative;
    padding-left: 30px; /* Offset dropdown */
  }
  
  .services-menu li {
    border-bottom: none;
    border-bottom: 1px solid gray;
  }
  
  .services-menu.show {
    display: block; /* Show services menu when .show class is added */
  }


  .aboutbanner{
    margin-top: -24px;
    width: 100%;
    height: 350px;
  }
  .aboutbanner img{
    width: 100%;
    height: 100%;
    object-fit: top;
  }

  .about-us {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 70px;
    margin-right: 70px;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.about-us h2 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.about-us h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2C3E50;
    font-weight: bold;
}

.about-us p {
    margin-bottom: 20px;
    font-size: 16px;
}

 /* Footer Styles */
 .footer {
    background-color: rgb(0, 35, 47);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.contact-details {
    width: 45%;
}

.contact-details h3 {
    margin-bottom: 10px;
}

.contact-details p {
    margin: 5px 0;
}

.map {
    width: 45%;
}

.map h3 {
    margin-bottom: 10px;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer Bottom */
.footer-bottom {
    width: 100%;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
}







  /* Media Queries for Tablet Screen */
  @media (min-width: 768px) and (max-width: 1024px) {
    .company-banner {
        padding: 8px;
    }

    .company-banner .company-name {
        font-size: 14px;
    }

    .header {
        padding: 0 5%;
        width: 100%;
    }
    .header .item {
        column-gap: 15px;
    }
    .header .item a {
        font-size: 14px;
    }
    .dropdown-content {
        min-width: 150px;
        font-size: 13px;
    }

    /* Adjust text sizes for tablet views */
    .about-us h2 {
        font-size: 22px;
    }

    .about-us h3 {
        font-size: 18px;
    }

    .about-us p {
        font-size: 14px;
    }

    /* Justify text on tablet screens */
    .about-us p {
        text-align: justify;
    }
}

/* Media Query for Mobile Screen */
  @media (max-width: 1024px) {
    .company-banner {
        display: none;
    }
    .header {
        display: none;
    } 
    
    .responsive-navbar {
        display: block; /* Show navbar on small screens */
        width: 100%;
    }
    .responsivelogo{
        height: 40px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 5px;
    }
    .banner{
        color: yellow;
        font-family: 'Times New Roman', Times, serif;
        font-weight: bold;
        padding-right: 10px;
    }

    .aboutbanner{
        margin-top: -20px;
        width: 100%;
        height: 240px;
    }

    /* Adjust text sizes for mobile screens */
    .about-us h2 {
        font-size: 18px;
    }

    .about-us h3 {
        font-size: 16px;
    }

    .about-us p {
        font-size: 12px;
    }

    /* Justify text on mobile screens */
    .about-us p {
        text-align: justify;
    }
    
  }
