
.header-section {
  position: relative;
  width: 100%;
      height: 97px;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

/* ================= protecting logo ================= */
.logo {
  display: flex;
  align-items: center;
}

/* MAIN LOGO CONTROL */
.site-logo {
  max-height: 60px;   /* THIS IS THE KEY */
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* -------- Desktop -------- */
@media (min-width: 1200px) {
  .site-logo {
    max-height: 120px;
  }
}

/* -------- Laptop -------- */
@media (max-width: 1199px) {
  .site-logo {
    max-height: 200px;
  }
}

/* -------- Tablet -------- */
@media (max-width: 991px) {
  .site-logo {
    max-height:110px;
  }
}

/* -------- Mobile -------- */
/* @media (max-width: 425px) {
  .header-wrapper .logo a img{
    max-width:57px !important;
  }
} */
@media (max-width: 768px) {
  .header-wrapper .logo a img{
    max-width:65px !important;
  }
}
@media only screen and (width: 1024px) {
  .site-logo {
    max-width: 40% !important;
  
  }
}
.contact-icon {
  font-size: 18px;
  color: #1a3b6a !important;
}


/* Base Styles */
.footer {
  background: #f3f3f3;
  padding: 60px 20px 20px;
  position: relative;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  flex-wrap: wrap; /* Allows automatic wrapping on smaller screens */
}

.footer-left, .footer-middle, .footer-right {
  flex: 1;
  min-width: 250px; /* ensures elements don’t shrink too much */
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.footer-heading {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #444;
}

.btn-primary {
  display: inline-block;
  background: #1a3b6a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #ececec;
  color: #1a3b6a;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #1a3b6a;
}

.contact {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-size: 18px;
}

.contact-info p {
  margin: 0;
  font-size: 13px;
  color: #777;
}

.contact-info a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #ddd;
  color: #555;
  font-size: 14px;
}

/* Responsive CSS */

/* Tablets */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .footer-left, .footer-middle, .footer-right {
    text-align: center;
  }
  .footer-heading {
    font-size: 32px;
  }
  .btn-primary {
    padding: 10px 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .footer-heading {
    font-size: 26px;
  }
  .footer-title {
    font-size: 18px;
  }
  .footer-desc {
    font-size: 14px;
  }
  .btn-primary {
    padding: 8px 16px;
    font-size: 14px;
  }
  .footer-links a {
    font-size: 14px;
  }
  .contact {
    flex-direction: column;
    gap: 10px;
  }
}


