* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    background-color: #fff; 
    color: #333;
}

/* above navbar  */
.contact-info {
    background-color: white; 
    color: #003366;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-info span {
    margin: 0 15px;
    font-size: 14px;
}
/* navbar */
.navbars {
    background-color: #003366; 
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    font-weight: bold;
}

.navbars ul {
    list-style: none;
    display: flex;
}

.navbars ul li {
    margin-right: 20px;
}

.navbars ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbars ul li a:hover {
    color: #7BAF91; 
}
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
}
.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s ease;
}
.buttonone {
    background-color: #7BAF91; 
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    text-decoration: none;
}

.buttonone:hover {
    background-color: #6F9E7C;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); 
}

/* HERO SECTION */
.header {
    position: relative;
    background: url('../images/Screenshot\ 2025-01-24\ at\ 11.30.24\ AM.png') no-repeat center center/cover;
    color: white;
    padding: 150px 20px;
}
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.header h1, .header p {
    position: relative;
    z-index: 1;
}
.header h1 {
    font-size: 40px;
    color: #f0f8ff;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 50px;
    font-weight: lighter;
}
.header p {
    font-size: 18px;
    margin-top: 60px;
    margin-top: -10px;
    text-align: center;
    font-style: italic;
}
.contact-container {
    display: flex;
    justify-content: center;
    background: white;
    padding: 50px;
    gap: 20px;
}
.contact-box {
    width: 30%;
    padding: 30px;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
.contact-box:hover {
    transform: scale(1.05);
}
.contact-box i {
    font-size: 50px;
    color: #e86c32;
    margin-bottom: 10px;
}
.contact-box h3 {
    color: #003366;
    margin-top: 10px;
    font-size: 22px;
}
.contact-box p {
    color: #777;
    font-size: 16px;
}
.contact-box a {
    color: #777;
    font-weight: bold;
    text-decoration: none;
}
/*map*/
.map-heading{
    text-align: center;
}
.mapouter{
    position:relative;
    text-align:right;
    width:100%;
    height:400px;
    margin-bottom: 100px;
}

.gmap_canvas {
    overflow:hidden;
    background:none!important;
    width:100%;
    height:400px;
}

.gmap_iframe {
    height:400px!important;
}

/* footer section */
.footer {
    background: linear-gradient(135deg, #003366, #005599);
    color: white;
    padding: 40px 10px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 0;
    min-width: 250px;
    margin: 20px;
}
.footer-section a {
    color: white;
}

.footer-section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 1em;
    line-height: 1.6;
}

.footer-section .social a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    transition: 0.3s ease-in-out;
}

.footer-section .social a:hover {
    color: #ffcc00;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9em;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1000px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transform: scale(0.9);
    transition: 0.5s ease-in-out;
    margin-bottom: 50px;
    margin-top: -20px;
    margin-left: 17%;
    margin-right: 17%;
}
.form-container{
    /* display: flex;
    justify-content: center;
    align-items: center; */
}
.contact-details{
    display: flex;
    justify-content: center;
    align-items: center;
}
.container:hover {
    transform: scale(1);
}
.form-container, .contact-details {
    flex: 1;
    padding: 20px;
}
.form-container h2, .contact-details h2 {
    margin-bottom: 15px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
form {
    display: flex;
    flex-direction: column;
}
input, select, textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 14px;
    border-top: 1px solid #777;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    transition: 0.3s;
}
input:focus, select:focus, textarea:focus {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}
input::placeholder, textarea::placeholder {
   color: #333;
}
button {
    background: #7BAF91;
    color: white;
    padding: 14px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 18px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(123, 175, 145, 0.5);
}
button:hover {
    background: #6F9E7C;
    transform: scale(1.05);
}
.contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
    transform: translateX(-10px);
    opacity: 0;
    animation: slideIn 0.6s ease-in-out forwards;
}
.contact-item:nth-child(1) { animation-delay: 0.2s; }
.contact-item:nth-child(2) { animation-delay: 0.4s; }
.contact-item:nth-child(3) { animation-delay: 0.6s; }
.contact-item:nth-child(4) { animation-delay: 0.8s; }
.contact-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}
.contact-item strong {
    margin-right: 12px;
    color: #003366;
    font-size: 18px;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}
.map-container {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 70px;
}
.map-heading {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #333;
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 10px rgba(255, 75, 92, 0.5);
    }
    to {
        text-shadow: 2px 2px 20px rgba(255, 75, 92, 0.8);
    }
}
.map-subtext {
    font-size: 16px;
    color: #777;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
  font-style: italic;

}

.mapouter {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.gmap_canvas {
    width: 100%;
    height: 400px;
}
.gmap_iframe {
    width: 100%;
    height: 100%;
    border: none;
}
@media (max-width: 768px) {
    .navbars {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }
    .navbars a{
        text-decoration: none;
    }
    .navbars ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #003366;
        padding: 10px 0;
    }

    .navbars ul.active {
        display: flex;
    }

    .navbars ul li {
        margin: 10px 20px;
    }

    .burger {
        display: flex;
        position: absolute;
        top: 105px;
        right: 30px;
        z-index: 1001;
}
  
    .contact-container {
      flex-direction: column;
      padding: 20px;
    }
  
    .contact-box {
      width: 100%;
    }
  
    .container {
      flex-direction: column;
      width: 90%;
      margin: 20px auto;
    }
  
    .form-container, .contact-details {
      padding: 10px;
    }
  
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section {
      margin: 20px 0;
      text-align: center;
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        background-color: #f8f8f8;
      }
    
      .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 10px;
      }
    
      .hero-section p {
        font-size: 1rem;
        color: #333;
        max-width: 600px;
        margin: 0 auto 20px;
      }
    
      .hero-section .cta-btn {
        padding: 12px 24px;
        font-size: 1rem;
      }
  }
  
  /* Mobile Devices (480px and below) */
  @media (max-width: 480px) {
    .header h1 {
      font-size: 28px;
      top: 10px;
    }
  
    .header p {
      font-size: 14px;
    }
  
    .buttonone, button {
      font-size: 14px;
      padding: 10px 15px;
      width: 100%;
    }

  
    .contact-box i {
      font-size: 40px;
    }
  
    .contact-box h3 {
      font-size: 18px;
    }
  
    .map-heading {
      font-size: 22px;
    }
  
    .map-subtext {
      font-size: 14px;
    }
  
    .form-container h2, .contact-details h2 {
      font-size: 18px;
    }
  }
  
  /* Medium screens (769px to 1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    .navbars {
      padding: 20px 30px;
    }
  
    .contact-container {
      gap: 10px;
    }
  
    .contact-box {
      padding: 20px;
    }
  
    .container {
      width: 95%;
      margin-left: auto;
      margin-right: auto;
    }
  
    .footer-container {
      padding: 0 20px;
    }
    .hero-section {
        padding: 60px 40px;
        background-color: #f8f9fa;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
      }
    
      .hero-section h1 {
        font-size: 2.8rem;
        color: #222;
      }
    
      .hero-section p {
        font-size: 1.2rem;
        max-width: 500px;
        color: #555;
      }
    
      .hero-section .cta-btn {
        font-size: 1.1rem;
        padding: 14px 28px;
      }
  }