 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Lato', sans-serif;
  }
  
  /* Header Top */
  .header {
    display: flex;
    flex-wrap: wrap;
    background-color: #f0f0f0;
  }
  .heading{
    font-size: 20px;
    color: #0089d0;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
  
  } 
  
  .logo1 {
    font-family:'Lato', sans-serif;
    font-weight: 40;
    position:relative;
    width: 30%;
    background-color: #051d40;
    color: #fff;
    padding: 1rem;
    text-align: center;
    /* flex: 1 1 100%; */
    font-size: 1rem;
    
  }
  
  .logo2 {
    background-color: #5c94cf;
    display: flex;
    align-items: center;
    color: white;
    /* flex: 1 1 100%; */
    padding: 1rem;
    width: 70%;
    /* flex-direction: column; */
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin-left: 1rem;
    justify-content: center;
    align-items: center;
  }

  .social-links li a {
    color: white;
    font-size: 1rem;
  }
  
  .social-links li a:hover {
    font-size: 1rem; /* Adjust icon size */
    color: #051d40 ; /* or your preferred color */
  }
  
  .top-right {
    margin-top: 0.5rem;
    margin-left: 1rem;
    text-align: right;
    /* padding: 0.5rem 2rem; */
    width: 100%;
    margin-right: 1rem;
  }
  .info-list {
    list-style: none;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .info-list a {
    color: white;
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
  }
  .info-list a:hover {
    color: #051d40;
    text-decoration: underline;
    
  }
  .info-list .icon {
    color: #051d40;
    font-size: 18px;
    
  }
  @media (max-width:768px){
    .logo1{
      display: none;
    }
    .logo2{
      width: 100%;
    }
    .social-links{
      display: none;
    }
  
  }
  /* NAVIGATION */
  .navbar {
    background-color: whitesmoke;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .logo-section {
    display: flex;
    align-items: center;
    max-width: 270px;
    overflow: hidden;
    margin-left: 20px;
  }
  
  .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  
  .logo{
    height: 40px;           /* Set a fixed height */
    width: auto;            /* Automatically adjust width to maintain aspect ratio */
    object-fit: contain;    /* Ensures image fits without distortion */
    display: block;
  }
  .logo-link img{
      height: 45px;
      width: auto;
      object-fit: contain;
  }
  
  .brand-name {
    font-size: 23px;
    font-weight: 550;
    color: #1c75bc;
    white-space: nowrap;
    word-spacing: 2px;
  }
  
  .nav-links{
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 15px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-right: 5rem;
    
  }
  .nav-links a {
    text-decoration: none;
    color: black;
    padding: 0.5rem 1rem;
    
  }
  .nav-links a:hover {
    color: #5c94cf;
    transition: 0.5s;
  }
  
  /* Dropdown */
  .dropdown {
    position: relative;
  }
  .dropdown-menu {
    list-style: none;
    display: none;
    position: absolute;
    top: 100%;
    background-color: #2c3640;
    padding: 0;
    right: -1.8rem;
  }
  @media (min-width:1024px){
    .dropdown-menu{
      width:10rem;
    }
    .nav-links{
        margin-bottom: 1rem;
        height: 1rem;
    }
}
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown-menu li a {
    color: white;
    padding: 10px 15px;
    font-family:'Lato', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    display: block;
  }
  .dropdown-menu li a:hover {
    background-color: #5c94cf;
    color: white;
    transition: 0.4s;
  }
  
  /* Contact Button */
  .btn-box {
    padding: 4px; /* Optional: reduce padding to avoid misalignment */
    margin: 0;
  }
  
  .btn-style-one {
    display: inline-block;
    font-size: 14px;
    line-height: 30px;
    color: white !important;
    text-decoration: none;
    padding: 10px 30px;
    font-weight: 800;
    border-radius: 3px;
    background-color: #5c94cf;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    transition: background-color 0.3s;
  }
  
  .btn-style-one:hover {
    background-color: #062758;
    color: white;
  }
  
  /* Hamburger menu */
  .hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: whitesmoke;
      padding: 1rem 0;
      margin-right: 0;
      
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      text-align: center;
      width: 100%;
    }
  
    .dropdown-menu {
      position: static;
      background-color: #2c3640;
    }
  }
  
  .contact_info{     
    min-height:  46.875rem;   
    max-width: 1600px;       
     background-color: rgb(231, 236, 240);  
     display: flex;   
     justify-content: center; 
  flex-wrap: wrap;
   margin-top: 0;      /* Eliminate top spacing */
  padding-top: 0;
  
   gap:1.8rem;    
   
 }
  
    
   
   .info {
  background-color: #5c94cf;
  color: aliceblue;
  padding-top:  3.25rem;
  padding-bottom: 1.25rem;
  padding-right: 3rem;
  padding-left:5.625rem; /* 20px top/bottom, 50px right, 90px left */
  margin-top: 2.187rem ; /* 35px top, 150px left */
 margin-left: auto;
  max-width: 26.25rem; /* 420px */
  height: 31.25rem; /* 500px */
  box-shadow: 0.1875rem 0.1875rem 0.1875rem rgb(16, 59, 97); /* 3px */
  box-sizing: border-box;
  
   }
  .info,
.form {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Visible state */
.visible {
  opacity: 1;
  transform: translateY(0);
}
  
.info h2 {
  font-size: 2rem; /* 32px */
  font-weight: 500;
}

.info h3 {
  margin-top: 2.5rem; /* 40px */
  font-size: 1.25rem; /* 20px */
  font-weight: 500;
}
   
   .icon-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* spacing between icon and text */
}
.icon-heading i{
margin-top: 2.5rem;
}

.cont_descrip{
  color: rgba(255, 25595, 255, 0.80);
  font-size:1rem ;
}
.info p{
  color: rgba(255, 255, 255, 0.80);
  font-size:0.rem ;
  padding-left: 1.2rem;
  
}

.form {
  height: 40.625rem;
  width: 100%;
  max-width: 650px;
  background-color: rgb(193, 212, 228);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 2.1875rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.form h4 {
  font-size: 2rem;          /* 32px / 16 */
  font-weight: 500;
  margin-bottom: 1.25rem;
  margin-left: 1rem;   /* 20px / 16 */
}

.form iframe {
  display: block;
  margin: 0 auto;
  border: none;
  width: 100%;
}

/* Side‑by‑side layout for screens between 1024px and 1100px */
@media screen and (min-width: 1024px) and (max-width: 1100px) {
  .contact_info {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 2rem;
  }

  .info,
  .form {
    width: 48%;
    margin: 0;
  }

  .info {
    padding: 2rem;
    height: auto;
  }

  .form {
    padding: 2rem;
    height: auto;
  }

  /* Font scaling for better fit on medium screens */
  .info h2,
  .form h4 {
    font-size: 1.75rem;
  }
  .info h3 {
    font-size: 1.125rem;
  }
  .info p,
  .cont_descrip {
    font-size: 0.95rem;
  }
}

/* Tablet View - max-width: 1024px */
/* Side‑by‑side layout for 769px to 1024px */
/* Tablet View - max-width: 1024px */
@media screen and (max-width: 1024px) {
  .contact_info {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
  }

  .info {
    margin-left: 0;
    height: auto;
    width: 90%;
    max-width: 600px;
    padding: 2rem;
  }

  .info h2 {
    font-size: 1.75rem;
  }

  .info h3 {
    font-size: 1.125rem;
  }

  .info p,
  .cont_descrip {
    font-size: 0.95rem;
  }

  .form {
    width: 90%;
    max-width: 600px;
    padding: 2rem;
    height: auto;
  }

  .form h4 {
    font-size: 1.75rem;
  }

  .form iframe {
    height: 500px;
  }
}

/* Mobile View - max-width: 768px */
@media screen and (max-width: 768px) {
  .contact_info {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1.5rem;
  }

  .info {
    margin-left: 0;
    width: 95%;
    padding: 1.5rem;
  }

  .info h2 {
    font-size: 1.5rem;
  }

  .info h3 {
    font-size: 1rem;
  }

  .info p,
  .cont_descrip {
    font-size: 0.875rem;
  }

  .form {
    width: 95%;
    padding: 1.5rem;
  }

  .form h4 {
    font-size: 1.5rem;
  }

  .form iframe {
    height: 480px;
  }
}



/* Mobile View - max-width: 768px */
@media screen and (max-width: 768px) {
  .contact_info {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1.5rem;
  }

  .info {
    margin-left: 0;
    width: 95%;
    padding: 1.5rem;
  }

  .info h2 {
    font-size: 1.5rem;
  }

  .info h3 {
    font-size: 1rem;
  }

  .info p,
  .cont_descrip {
    font-size: 0.875rem;
  }

  .form {
    width: 95%;
    padding: 1.5rem;
  }

  .form h4 {
    font-size: 1.5rem;
  }

  .form iframe {
    height: 480px;
  }
}
/* Small Phones – max-width: 480px */
@media screen and (max-width: 480px) {
  .contact_info {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
  }

  .info {
    width: 100%;
    padding: 1rem;
    max-width: none;
    height: auto;
  }
  .info h2 {
    font-size: 1.25rem;
  }
  .info h3 {
    font-size: 0.9rem;
  }
  .info p,
  .cont_descrip {
    font-size: 0.8rem;
  }

  .form {
    width: 100%;
    padding: 1rem;
    height: auto;
  }
  .form h4 {
    font-size: 1.25rem;
  }
  .form iframe {
    height: 400px;
  }
}

  footer {
    background-color: #051d40;
    color: white;
    padding: 40px 60px;
    word-spacing: 2px;
    font-family: sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  /* Logo Section */
  .footer-logo-box {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
  }
  
  .footer-logo {
    height: 45px;
    margin-right: 10px;
  }
  
  .footer-heading {
    font-size: 20px;
    font-weight: lighter;
    color: white;
    text-decoration: none;
  }
  a{
    text-decoration: none;
  }
  
  /* Info Section */
  .footer-info {
    flex: 2;
    min-width: 300px;
    font-size: 16px;
    color: #f1f1f1be;
    line-height: 1.6;
  }
  
  /* Contact Section */
  .footer-contact {
    flex: 1;
    min-width: 220px;
    text-align: left;
  }
  
  .footer-contact h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .footer-contact p {
    margin: 6px 0;
    font-size: 15px;
    color: #dddddd;
  }
  
  .footer-contact i {
    margin-right: 8px;
    color: #66b0ff;
  }
  
  .footer-contact a{
    color: white;
    text-decoration: none;
  }
  .footer-contact a:hover{
    color:#66b0ff;
    text-decoration: underline;
  }
  
  .fa-phone {
    color: #f1f1f1d5;
    font-size: 15px;
  }
  .email{
    color: #f1f1f1d3;
    font-size: 20px;
  
  }
  .add{
    color: #f1f1f1bb;
    font-size: 20px;
  }
  .name{
    text-align: center;
    width: 70%;
  
  } 