/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* Hero Section */
/* Hero Section */
.hero {
  position: relative;
  background-image: url('Gallery/01.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); /* overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%; /* ensures content doesn't overflow */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: #00a86b;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background: #007f52;
}

/* Divider Styles */
.divider {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.divider-shape {
  display: none; /* hide all by default */
  position: relative;
  width: 100%;
  height: 150px;
  fill:  #d3d3d3;; /* color of divider */
}

/* Enable ONE divider */
.divider .wave { display: block; }    

/* =========================
   MOBILE RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero {
    height: 60vh;
  }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.1rem; }
  .btn { padding: 10px 22px; font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .hero {
    height: 55vh;
  }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .btn { padding: 10px 20px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .hero {
    height: 50vh;
  }
  .hero h1 { font-size: 1.6rem; margin-bottom: 15px; }
  .hero p { font-size: 0.9rem; margin-bottom: 20px; }
  .btn { padding: 8px 18px; font-size: 0.85rem; }
}


/* About Section */
.about {
  padding: 80px 20px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about .container {
  max-width: 1000px;
  text-align: center;
}

.about h2 {
  font-size: 2.4rem;
  color: #0a3d62;
  margin-bottom: 20px;
  position: relative;
}

.about h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #0a3d62;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Mission, Vision, Values */
.mission {
  background: #f9f9f9;
  padding: 80px 20px;
}

.mission .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.mission .card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  border-left: 6px solid #0a3d62;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.mission h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 1.4rem;
}

/* Why Choose Us Section */
.why-us {
  padding: 80px 20px;
  background: #fff;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #0a3d62;
  position: relative;
}

.why-us h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #0a3d62;
  margin: 10px auto 0;
  border-radius: 2px;
}

.why-us .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.why-us .feature {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.why-us .feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  background: #0a3d62;
  color: #fff;
}

.why-us h4 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}


/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}




/* //////////////////////////////////// ABOUT/////////////////////// */

.about-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      padding: 80px 10%;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1;
      min-width: 300px;
    }

    .about-text h5 {
      color: #0a3d62;
      font-size: 20px;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .about-text h2 {
      font-size: 40px;
      font-weight: 700;
      color: #222;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .about-text p {
      color: #666;
      font-size: 20px;
      margin-bottom: 30px;
    }

    .mission-vision {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .mission-vision div {
      flex: 1;
      min-width: 200px;
    }

    .mission-vision h4 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
      position: relative;
      padding-left: 15px;
      color: #222;
    }

    .mission-vision h4::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 5px;
      height: 20px;
      background: #0a3d62;
      transform: translateY(-50%);
      border-radius: 3px;
    }

    .mission-vision p {
      font-size: 20px;
      color: #555;
      line-height: 1.6;
    }

    .read-more {
      display: inline-block;
      background: #0a3d62;
      color: #fff;
      padding: 12px 28px;
      border-radius: 6px;
      font-size: 20px;
      font-weight: 500;
      text-decoration: none;
      transition: 0.3s;
    }

    .read-more:hover {
      background: #0a3d62;
    }

    .about-images {
      flex: 1;
      min-width: 300px;
      position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .about-images img {
      width: 230px;
      height: 180px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    .experience-box {
      position: absolute;
      bottom: -20px;
      right: 20px;
      background: #ff6600;
      color: #fff;
      padding: 15px 25px;
      border-radius: 10px;
      font-size: 20px;
      font-weight: 700;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .experience-box span {
      display: block;
      font-size: 20px;
      font-weight: 400;
      margin-top: 5px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }

      .mission-vision {
        justify-content: center;
      }

      .mission-vision h4::before {
        display: none;
      }

      .experience-box {
        position: static;
        margin-top: 20px;
      }
    }

    /* //////////////// ABOUT END///////////////// */



    /* ///////////////////////////// ABOUT SECOND 222////////////////////// */
    
    .services-section {
      text-align: center;
      padding: 0px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .services-section h5 {
      color: #0a3d62;
      font-size: 20px;
      letter-spacing: 2px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .services-section h2 {
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .services-section p {
      max-width: 700px;
      margin: 0 auto 50px;
      color: #555;
        font-size: 20px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
    }

    .service-card {
      background: #fff;
      padding: 30px 20px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .service-card img {
      width: 50px;
      margin-bottom: 15px;
    }

    .service-card h3 {
      font-size: 18px;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .service-card p {
      font-size: 20px;
      color: #666;
      margin-bottom: 15px;
    }

    .service-card a {
      color: #0a3d62;
      text-decoration: none;
      font-weight: 600;
      font-size: 20px;
      display: inline-flex;
      align-items: center;
      transition: color 0.3s;
    }

    .service-card a:hover {
      color:#0a3d62;
    }

    .service-card a::after {
      content: " →";
      font-size: 16px;
      margin-left: 6px;
    }


    /* ////////////////////////////// WHY CHOSE US ///////////////// */
.why-choose {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 50px;
  padding: 80px 10%;
}

.why-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.why-left p {
  font-size: 20px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.why-left .btn:hover {
  background: #d62828;
}

.why-left img {
  width: 100%;
  margin-top: 40px;
  border-radius: 20px 200px 20px 20px;
  object-fit: cover;
}

.why-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.why-right h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  color: #444;
}

.why-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.why-item .icon {
  background: #0a3d62;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  border-radius: 8px;
  padding: 12px 20px;
  margin-right: 15px;
  min-width: 50px;
  text-align: center;
  flex-shrink: 0;
}

.why-item p {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ---------- MOBILE VIEW (≤900px) ---------- */
@media (max-width: 900px) {
  .why-choose {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 8%;
  }

  .why-left,
  .why-right {
    align-items: center;
  }

  .why-left img {
    margin-top: 30px;
    border-radius: 20px;
  }

  /* ✅ Reduce right-side content size */
  .why-right h2 {
    font-size: 15px;        /* smaller heading */
    margin-bottom: 25px;
  }

  .why-item .icon {
    font-size: 18px;        /* smaller icons */
    padding: 10px 15px;
    margin: 0 10px 0 0;
  }

  .why-item p {
    font-size: 17px;        /* smaller text */
    line-height: 1.5;
  }

  .why-item {
    justify-content: flex-start;
    text-align: left;
  }
}
