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 */
  }

  .contactbanner{
    margin-top: -24px;
    width: 100%;
    height: 450px;
  }
  .contactbanner img{
    width: 100%;
    height: 100%;
    object-fit: top;
  }



  .contact-section {
    background-color: rgb(1, 71, 94);
    color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    margin: 50px auto;
    display: flex;
    gap: 100px;
    flex-direction: row;
}

/* Left Column: Contact Details */
.contact-details {
    flex: 1;
    font-family: Arial, sans-serif;
}

.contact-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-details p {
    font-size: 16px;
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.contact-details i {
    color: rgb(0, 255, 238);
    font-size: 20px;
    margin-right: 10px;
}

/* Right Column: Contact Form */
.contact-form {
    flex: 1;
    font-family: Arial, sans-serif;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 16px;
    margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-size: 16px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    background-color: #f1f1f1;
    color: #333;
}

#btn {
    padding: 12px;
    font-size: 16px;
    color: #fff;
    background-color: #00bcd4;
    border: none;
    border-radius: 4px;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.4s ease;
}

#btn:hover {
    background-color: #00a86a;
}
.alert, .success{
    width: 400px;
    text-align: center;
    position: absolute;
    top: 30px;
    left: 50%;
    border-radius: 10px;
    transform: translateX(-50%);
    color: white;
    padding: 8px 0;
}
.alert{ background-color: rgb(255, 47, 0);}
.success { background-color: #00a86a;}


 /* 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;
    gap: 30px;
}

.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;
        }

        .contact-section {
            flex-direction: column;
            padding: 20px;
        }
    
        .contact-details, .contact-form {
            width: 100%;
        }
        #btn {
            margin: 20px auto;
            display: block;
            width: 60%; /* Adjust button width as desired */
        }
    
        
    }
    
    /* 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;
        }

        .contactbanner{
            height: 270px;
        }
        .contact-details p, .contact-form label {
            text-align: justify;
        }

        .contact-section {
            flex-direction: column;
            padding: 30px;
            width: 80%;
        }
    
        .contact-details, .contact-form {
            text-align: center;
            width: 80%;
        }
        #btn {
            margin: 20px auto;
            display: block;
            width: 60%; /* Adjust button width as desired */
        }
        .alert, .success{
            border-radius: 10px;
            width: 200px;
            top: 60px;
            padding: 8px 5px;
        }
        .alert{ background-color: rgb(255, 47, 0);}
        .success { background-color: #00a86a;}
        
        
      }
    