body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.header {
  background-color: #0288d1;
  text-align: center;
  padding: 05px 0;
}
.header-content {
  display: inline-block;
  max-width: 600px;
  padding: 10px 20px;
  text-align: center;
}
.header h1 {
  margin: 0;
  font-size: 24px;
  color: white;
}
.header p {
  margin: 5px 0 0;
  font-size: 14px;
  color: white;
}
nav {
    background: #005f87;
    padding: 07px;
    text-align: center;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 10px;
    
}

.hero {
    background-color: #e3f2fd;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: slideIn 1s forwards;
}

.hero-banner {
    position: relative;
    height: 100vh;
    background-image: url('image/bg1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 80%;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #f0f0f0;
}



.section {
    padding: 20px;
    background: white;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.section-title {
  text-align: center;
  margin-top: 40px;
  font-size: 2rem;
  color: #2a2a2a;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1rem;
  color: #555;
  padding: 0 20px;
}
.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.service-card {
  width: 300px;
  height: 450px;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
}


@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-title {
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.service-image {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-image:hover {
  transform: scale(1.05);
}

.service-image:hover .service-title {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.service-image:hover .overlay {
  opacity: 1;
}

.overlay h2 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.overlay p {
  font-size: 0.95rem;
}

.services-grid-wrapper {
  display: flex;
  justify-content: center;
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .service-card {
    width: 90%;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-card {
    width: 90%;
  }
}



h3 {
    font-size: 1.5em;
    color: #0077b6;
}


.body-team{
 background-color: #f0f0f0;
  padding: 40px 10px;
}
.container-Team {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff; /* Solid white background */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.page-title {
  text-align: center;
  padding: 20px 0;
  font-size: 32px;
  color: #555;
  border-bottom: 2px solid #ccc;
}
.team-member {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.member-info {
  flex: 1 1 60%;
}
.member-info .name {
  background-color: #164e72;
  color: white;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 10px 10px 0 0;
  margin-bottom: 8px;
}
.member-info .role {
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0;
}

/* contact css */
.contact-container {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background-color: #f4f6f8;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  gap: 40px;
  flex-wrap: wrap;
}
.contact-form {
  flex: 1 1 30%;
}
.contact-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  margin-top: 15px;
  background-color: #0077b6;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #005f87;
}

.contact-info {
font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  color: #2c3e50;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 320px;
  margin: auto;
}

.contact-info h3 {
   font-size: 20px;
  margin: 8px 0;
  color: #0077b6;
}

.contact-info p {
   margin: 3px 0;
  font-size: 14px;
  line-height: 1.4;
}

.contact-info strong {
 font-weight: 600;
}

.contact-logo {
  max-width: 200px;
  margin-bottom: 20px;
}


.unique-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  max-width: 1100px;
  margin: auto;
}

.point h3 {
  color: #2a4d69;
  margin-bottom: 5px;
}

.point p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}


.unique-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.unique-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2a4d69;
}

.unique-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.unique-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.unique-card:hover {
  transform: translateY(-5px);
}

.unique-card img {
  height: 60px;
  margin-bottom: 15px;
}

.unique-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #004080;
}

.unique-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}


footer {
    text-align: center;
    padding: 15px;
    background: #0077b6;
    color: white;
}

.footer .image-credit a {
  color: #007BFF;
  text-decoration: none;
}

.footer .image-credit a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* importance of Support */
/* Section container */
.support-section {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9fcff;
  padding: 40px 20px;
}

/* Content box */
.support-container {
  max-width: 1000px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Title */
.support-title {
  color: #0077b6;
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.support-subtitle {
  text-align: center;
  font-weight: normal;
  color: #444;
}

/* Divider */
.divider {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* Section headings */
.support-heading {
  color: #005f73;
  margin-top: 30px;
  font-size: 20px;
}

/* Text paragraph */
.support-text {
  line-height: 1.7;
  color: #333;
}

/* Unordered list */
.support-list {
  line-height: 1.7;
  color: #333;
  padding-left: 20px;
}

/* Font Awesome icons */
.icon {
  margin-right: 8px;
  color: #0077b6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .support-container {
    padding: 20px;
  }

  .support-title {
    font-size: 22px;
  }

  .support-heading {
    font-size: 18px;
  }
}
