* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #84B5BC;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color:#84B5BC;
  margin-left: 10px;
}
.logo span {
  color:#D8EAF2 ;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-us {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.contact-image {
    width: 200px; /* Reduced image size */
    height: 150px; /* Fixed height */
    object-fit: cover; /* Ensure the images maintain aspect ratio */
    border: 3px solid #ccc; /* Box border for the images */
    border-radius: 8px; /* Rounded corners */
    transition: transform 0.3s ease-in-out;
}

.contact-image:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    padding: 15px;
    background-color: #204454;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #80B3BA;
}

.google-map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .contact-images {
        flex-direction: column;
        align-items: center;
    }

    .contact-image {
        width: 80%;
        margin-bottom: 20px;
    }

    .contact-form input, .contact-form textarea {
        font-size: 0.9rem;
    }

    .submit-btn {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .contact-form input, .contact-form textarea {
        font-size: 0.9rem;
    }

    .submit-btn {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .contact-us {
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 12px;
    }
}

@media (max-width: 375px) {
    .contact-image {
        width: 100%;
    }

    h1 {
        font-size: 1.8rem;
    }

    .contact-info p {
        font-size: 0.8rem;
    }

    .submit-btn {
        font-size: 1rem;
    }
}

#map {
    width: 100%; 
    height: 400px; 
    border-radius: 8px;
    margin-bottom: 30px;
}

iframe {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

/* Add a focus style for form fields and buttons for better accessibility */
.form-group input:focus, 
.form-group textarea:focus {
    border-color: #16537E;
    outline: none;
}

.submit-btn:focus {
    outline: 2px solid black;
    outline-offset: 4px;
}

.footer-section {
    background-color:#204454;
    color: #ffffff;
    padding: 40px 20px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-column {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-logo img {
    max-width: 100px;
    margin-bottom: 10px;
    height: 40px;
  }
  
  .footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .footer-column address,
  .footer-column p,
  .footer-column ul {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
  }
  
  .footer-column a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-column a:hover {
    color: #ff7d26;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icons a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
  }
  
  .social-icons a img:hover {
    transform: scale(1.1);
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-column {
      min-width: 100%;
      margin-bottom: 20px;
    }
  
    .social-icons {
      justify-content: center;
    }
  }
  .docedu ul li{
    font-size: 13px;
  }
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color:#204454;
  }
  
  .nav {
    display: flex;
    align-items: center;
  }
  
  .nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .nav ul li {
    margin: 0 10px;
  }
  
  .nav ul li a {
    text-decoration: none;
    padding: 10px 15px;
    background-color: white; /* White background */
    border-radius: 30px; /* Rounded corners */
    color:black; /* Match the theme */
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .nav ul li a:hover {
    background-color:#2B7483; /* Hover effect */
    color: white;
  }
  
  /* Hamburger Menu */
  .hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .nav ul {
      display: none;
      flex-direction: column;
      background-color: white;
      position: absolute;
      top: 60px;
      right: 20px;
      width: 150px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
  
    .nav ul.active {
      display: flex;
    }
  
    .nav ul li {
      margin: 10px 0;
    }
  
    .nav ul li a {
      color: #4caf50;
    }
  
    .hamburger {
      display: block;
    }
  }

  @media (max-width: 375px) {
    .nav ul {
      display: none;
      flex-direction: column;
      background-color: white;
      position: absolute;
      top: 60px;
      right: 20px;
      width: 150px;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
  
    .nav ul.active {
      display: flex;
    }
  
    .nav ul li {
      margin: 10px 0;
    }
  
    .nav ul li a {
      color: #4caf50;
    }
  
    .hamburger {
      display: block;
    }
  }
  
  
  @media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-image img {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-image img {
        width: 200px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .btn-scroll {
        font-size: 14px;
        padding: 8px 16px;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
