* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Josefin Sans", sans-serif;
}

a {
  text-decoration: none !important;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}



.top-bar {
  background: linear-gradient(to right, #004e92, #00c779);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 12px 40px;
  font-size: 13px;
  align-items: center;
}

.top-bar .social span {
  margin-right: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.top-bar .social a {
  color: white;
  margin-left: 10px;
  text-decoration: none;
  font-size: 14px;
}

.top-bar .contact-phone {
  display: flex;
  align-items: center;
  font-weight: 500;
  justify-content: space-between;
}

.top-bar .contact-phone i {
  margin-right: 5px;
}



.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 40px;
  background-color: #f8f8f8;
  position: relative;
 
   height: 94px;
  z-index: 1000;
}

.logo img {
  
   height: 87px;
}

.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
  font-size: 16px;
}

.nav-menu a.active {
  color: #8bc34a;
  font-weight: 600;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background-color: #8bc34a;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
 
   width: 100%;
  height: 20%;
  border-radius: 0px !important;
}

.nav-menu a:hover {
  color: #8bc34a;
}

.login-btn a {
  background: linear-gradient(to right, #004e92, #00c779);
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.login-btn a:hover {
  opacity: 0.9;
}

/* Hamburger Button */
/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 19px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate hamburger into "X" */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* footer css :  */
.footer {
  
  background-color:#070050;
  
  font-family: "Poppins", sans-serif;
}
.section-heading h5 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0;
}
.section-heading .underline {
  margin-top: 8px;
  width: 50px;
  height: 4px;
  background: linear-gradient(to right, #8bc34a, transparent);
  border-radius: 2px;
}
.subscribe-form {
  display: flex;
  margin-top: 10px;
}
.subscribe-form input {
  flex: 1;
  padding: 0.625rem;
  border: none;
 
  background-color:#ffffff;
  color: #000000;
  font-size: 0.875rem;
  outline: none;
  border-radius: 4px 0 0 4px;
}
.subscribe-form button {
  width: 45px;
  background: linear-gradient(to right, #004e92, #00c779);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}
.footer-bottom {
  background: linear-gradient(to right, #1e3c72, #2a9134);
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  color: white;
  margin-top: 20px;
}
.footer-bottom .policy-links {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8125rem;
}
.footer-bottom .policy-links a {
  color: white;
  text-decoration: none;
}
.footer-bottom .policy-links a:hover {
  text-decoration: underline;
}

p.call_phone.d-flex {
  margin: 0px;
  color: white;
}

img.call_icon.d-flex {
  width: 15% !important;
}

.top_social_icons img {
 
  width:20px !important;
  height:auto;
}

img.footer_logo {
  width: 60% !important;
}

.section-heading {
  text-align: left;
  padding: 0px;
}

.section-heading h2 {
  font-size: 2.5rem;
  color: white;
  margin: 0;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.section-heading .underline {
  margin-top: 10px;
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #8bc34a, #1a1a1a00);
  border-radius: 0px;
}

.social-icons img {
  width: 15%;
}

.footer_logo_section {
  text-align: left !important;
}

.footer_menu_links {
  color: #ffffff !important;
  font-weight: 400;
  font-size: 13px;
  line-height: 21.01px;
  letter-spacing: 0%;
}

ul.list-unstyled li {
  padding: 5px 0px !important;
}

@media only screen and (max-width: 768px) {
  .top-bar {
    background: linear-gradient(to right, #004e92, #00c779);
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    font-size: 10px;
    align-items: center;
  }

  .top_social_icons img {
    width: 6% !important;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1d1f20;
    display: none;
    padding: 0px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    gap: 0px;
  }

  .nav-menu.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu a {
    color: #eee;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #333;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background: #2a9134;
    color: white;
  }

  .login-btn {
    display: none;
  }

  .nav-menu a:hover::after,
  .nav-menu a.active::after {
    display: none !important;
  }

  img.footer_logo {
    width: 30% !important;
  }

  .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    background-color: #f8f8f8;
    position: relative;
    height: 85px;
    z-index: 1000;
  }

  .tab_container {
    padding: 10px;
  }

  p.call_phone {
    margin: 0px;
    color: white;
    margin-top: 5px !important;
    align-items: center;
  }
}


/*-------------footer our menus styles------------*/

@media (min-width: 1024px) and (max-width: 1440px) {
.footer-menu-heading{
  margin-left:64px;
}


.footer-menu-list{
  margin-left:64px;
}


}



.top-bar .social {
    display: flex !important;
    align-items: center !important; 
    gap: 12px;   
   
}


@media(max-width:600px){
  .top-bar .social {
    display: block !important;
    align-items: center !important;
    gap: 12px;
    
}
}


@media(max-width:768px){
  .top-bar .social {
    display: block !important;
    align-items: center !important;
    gap: 12px;
   
}
}