* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  
 /* ----------------------------Navbar Container------------------------------- */
  #navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px !important;
    background: #fff;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}




.logo img {
    max-width: 170px;
    margin: 15px;
    margin-left: 30px;
}


.search-bar {
    position: relative;
    width: 100%;
    max-width: 400px;
}


#searchInput {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 16px;
}


.search-bar button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
}


.resultBox {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    display: none;
    z-index: 9999;
   
   
  }
  
  .resultBox li {
    padding: 10px;
    list-style: none;
    cursor: pointer;
    font-size: 14px;
    color: #000;
    text-align: justify;
  }
  
  .resultBox li:last-child {
    border-bottom: none;
  }
  
  .resultBox li:hover {
    background: #d7f3f4;
    border-radius: 5px;
  }

#hamburger-btn{
  margin: 15px;
  width: 100px;
}

 #menu-toggler, #city-toggler {
  display: none;
}


/* Hide checkboxes */
#menu-toggler, #city-toggler {
  display: none;
}

/* Hamburger button */
.hamburger {
  font-size: 30px;
  cursor: pointer;
  padding: 15px;
  background: #111;
  color: white;
  display: inline-block;
}

/* Left menu styling */
.menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: #111;
  color: white;
  overflow-y: auto;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
  padding-top: 60px;
}

#menu-toggler:checked ~ .menu {
  left: 0;
}

/* Menu items */
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu ul li {
  border-bottom: 1px solid rgba(227, 226, 226, 0.2);
}

.menu ul li a, 
.menu ul li label {
  display: block;
  padding: 14px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
}

.menu ul li a:hover, 
.menu ul li label:hover {
  background: #e9b528;
  color: #000;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Dropdown submenu */
.menu ul li ul {
  display: none;
  background: #111;
}

#city-toggler:checked + label + ul {
  display: block;
}

.menu ul li ul li a {
 padding: 14px;
}

/* Arrow indicator */
.arrow {
  float: right;
  transition: transform 0.3s;
}

#city-toggler:checked + label .arrow {
  transform: rotate(180deg);
}


.help {
      padding: 14px;
      margin-top: 10px;
    }

    .help h2 {
      margin-bottom: 15px;
      font-size: 16px;
      color: #fff;
      font-weight: 600;
    }

    .help p {
      font-size: 16px;
      color: #fff;
    }

 .help p a{
    text-decoration: none;
    color: #fff;
 }
 .help p a:hover{
    color: #e9b528;
 }

 .social-icons {
    display: flex;
    justify-content: left;
    gap: 15px;
    flex-wrap: wrap; /* makes icons wrap on small screens */
  
  }

  .social-icons a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #e9b528; /* LinkedIn blue by default, can customize */
  }
 

 







@media (max-width: 768px) {
    #navbar{
        height: 80px !important;
        padding: 0 10px;
    }
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px !important;
        width: 100%;
        
    }

    
    .logo img {
        width: 120px;
        margin: 0;
    }

   
    .search-bar {
        flex-grow: 1;
        margin: 0 10px;
        max-width: 250px;
        position: relative;
    }

    #searchInput {
        width: 100%;
        padding: 8px 35px 8px 12px;
        font-size: 10px;
    }

    .search-bar button {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
    }

    .search-bar button img {
        width: 16px !important;
    }


    #hamburger-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

 .menu {
    width: 260px;
    padding-top: 50px;
  }
  .menu ul li a, .menu ul li label {
    padding: 12px;
    font-size: 16px;
  }
   
    .close-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 25px;
        color: white;
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 80px;
    }

    .search-bar {
        max-width: 150px;
    }

    #searchInput {
        font-size: 7px;
        padding: 6px 30px 6px 10px;
    }

    .search-bar button img {
        width: 12px !important;
    }

   .menu {
    width: 200px;
  }
  .menu ul li a, .menu ul li label {
    padding: 10px;
    font-size: 15px;
  }
  
}

/*-------------------------------Homepage -------------------------------------*/


.homepage {
    position: relative;
    width: 100%;
    margin-top: 100px;
}


.homepage img {
    width: 100%;
    height: auto;
}

.mobilebanner{
    display: none;
}



@media (max-width: 768px) {
    .homepage{
        margin-top: 80px;
    }
    .mobilebanner{
        display: block;
        width: 100%;
    }
    .desktopbanner{
        display: none;
    }
  
}


/* -----------------------Contact us -------------------------------------------*/
 .overview {
      width: 95%;
      margin: auto;
      padding: 20px;
      background: #fff;
      
    }

     .overview h2 {
      color: #002b5c;
      margin-top: 25px;
      font-size: 28px;
      font-weight: 600;
      font-family: "poppins",sans-serif;
    }

     .overview h3 {
      margin-top: 15px;
      font-size: 18px;
      color: #444;
        font-family: "poppins",sans-serif;
    }

     .overview p, li {
      font-size: 16px;
      margin-bottom: 10px;
        font-family: "poppins",sans-serif;
    }

     .overview ul {
      padding-left: 20px;
        font-family: "poppins",sans-serif;
    }

   

    /* Responsive Styling */
    @media (max-width: 768px) {
  
       .overview{
        padding: 15px;
      }
       .overview h2 {
        font-size: 20px;
      }
       .overview p, li {
        font-size: 15px;
      }
    }

   
 
/*----------------------------------------- Footer Page -----------------------------------*/

.footer-section {
    background: #151414;
    position: relative;
    width: 100%;
  }
  .footer-cta {
    border-bottom: 1px solid #373636;
  
  }
  .single-cta{
    display: flex;
    justify-content:center;
  }
  .single-cta i {
    color: #e9b528;
    font-size: 30px;
    float: left;
    margin-top: 8px;
  }
  .cta-text {
    padding-left: 15px;
    display: inline-block;
  }
  .cta-text h4 {
    color: #e9b528;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
  }
  .cta-text span {
    color: #fff;
    font-size: 14px;
  }
  .footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
  }
  .footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
  }
  .footer-logo {
    margin-bottom: 30px;
  }
  .footer-logo img {
      max-width: 200px;
  }
  .footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #fff;
    line-height: 28px;
  }
  .footer-social-icon span {
    color: #e9b528;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
  }
  .footer-social-icon a {
    color: #fff;
   font-size: 25px;
    margin-right: 15px;
  }
  .footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    transition: all 0.3s ease; 
    color: white; 
    
  }
  
  /* Hover effect */
  .footer-social-icon i:hover {
    background-color: #e9b528;
    transform: scale(1.2); 
    color: #000; 
  }
  
  .facebook-bg{
    background: #3B5998;
  }
  .twitter-bg{
    background: #55ACEE;
  }
  .google-bg{
    background: #e9b528;
  }
  .footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    margin-left: 30px;
  }
  .footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #e9b528;
  }
  .footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
  }
  .footer-widget ul li a:hover{
    color: #e9b528;
  }
  .footer-widget ul li a {
    color: #fff;
    text-transform: capitalize;
    text-decoration: none;
  }
  .subscribe-form {
    position: relative;
    overflow: hidden;
  }
  .subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
  }
  .subscribe-form button {
      position: absolute;
      right: 0;
      background: #e9b528;
      padding: 13px 20px;
      border: 1px solid #e9b528;
      top: 0;
  }
  .subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
  }
  .copyright-area{
    background: #202020;
    padding: 25px 0;
  }
  .copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #fff;
  }
  .copyright-text p a{
    color: #e9b528;
  }
  .footer-menu li {
    display: inline-block;
    margin-left: 20px;
  }
  .footer-menu li:hover a{
    color: #e9b528;
  }
  .footer-menu li a {
    font-size: 14px;
    color: #878787;
    text-decoration: none;
  }
@media(max-width:768px){
    .single-cta{
        display: flex;
        justify-content: left;
       padding: 10px;
      }
      .footer-logo img{
        max-width: 150px;

      }
      .footer-widget-heading h3{
        margin-top: 20px;
        margin-left: 0px;
      }
}

