/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
}

body {

  color: #1e1e1e;
  background: #f9f9f9;
}

img {
  max-width: 100%;

}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}




/* Header */
.contact-header {
  background-image: url('../img/about/137539\ 1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
  text-align: center;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.inner-header h1 {
  background-color: #001f3fbb;
  display: flex;
  justify-content: center;
  
  color: white;
height: 300px;
  margin: 0%;
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  align-items: center;
  padding-top: 90px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background: #fff;
}

.about {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.about-img {
  flex: 1 1 40%;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h5 {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #666;
}

.about-text h2 {
  font-size: 2rem;
  margin: 0.5rem 0;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    background: #fff;
    margin-top: 1rem;
    border-top: 1px solid #eee;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    border: none;
    box-shadow: none;
  }

  .btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .about {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem;
  }
}



/* Section styling */
.core-values-section {
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
  text-align: center;
}

.sub-heading {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #555;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.main-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #001f3f;
}

/* Image */
.image-container img {
  width: 100%;

  max-height: 550px;

  border-radius: 10px;
  margin-bottom: 2rem;

}

/* Grid Layout */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.value-box {
  flex: 1 1 30%;
  background-color: #fff;
  padding: 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.value-box:hover {
  transform: translateY(-5px);
}

.value-box h3 {
  color: #005a9c;
  margin-bottom: 0.6rem;
}

.value-box p {
  font-size: 0.95rem;
  color: #333;
}



/* footer */

.contact-section {
  position: relative;
  background: url('../img/contactBottom.jpg') center center/cover no-repeat;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}

.contact-overlay {
  background-color: rgba(0, 0, 50, 0.7);
  padding: 40px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  width: 100%;
}

.subheading {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 10px;
}

.contact-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.contact-btn {
  padding: 12px 25px;
  background-color: #007bff;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 15px;
}

.contact-btn:hover {
  background-color: #0056b3;
}

.contact-number {
  font-size: 1.1rem;
}

.contact-number a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.footer {
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 20px;
  color: #0b1a42;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

#social-icons a {
  color: #0b1a42;



  text-decoration: none;
  transition: color 0.3s ease;
}

#social-icons a:hover {
  color: #007bff;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .contact-section h1 {
    font-size: 1.5rem;
  }

  .contact-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .contact-number {
    font-size: 1rem;
  }
}