/* ================= ABOUT BANNER ================= */
.about-banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* IMAGE FROM HTML */
.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.about-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* TEXT */
.about-banner-overlay h1 {
  font-size: 64px;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 14px;
  animation: fadeDown 1s ease;
}

.about-banner-overlay p {
  font-size: 20px;
  color: #ddd;
  max-width: 700px;
  line-height: 1.8;
  animation: fadeUp 1.2s ease;
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width: 1200px) {
  .about-banner {
    height: 90vh;
  }

  .about-banner-overlay h1 {
    font-size: 52px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .about-banner {
    height: 70vh;
  }

  .about-banner-overlay h1 {
    font-size: 42px;
  }

  .about-banner-overlay p {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-banner {
    height: 60vh;
  }

  .about-banner-overlay h1 {
    font-size: 34px;
  }

  .about-banner-overlay p {
    font-size: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-banner {
    height: 50vh;
  }

  .about-banner-overlay h1 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .about-banner-overlay p {
    font-size: 14px;
  }
}

/* ================= ANIMATIONS ================= */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= ABOUT STORY SECTION ================= */
.about-story {
  background: #ffffff;
  padding: 30px 20px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* LEFT CONTENT */
.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 54px;
  font-weight: 500;
  color: #111;
  margin-bottom: 10px;
}

.about-content .line {
  display: block;
  width: 80px;
  height: 3px;
  background: #1f9d55;
  margin-bottom: 30px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}

.about-content .highlight {
  font-size: 17px;
  font-weight: 500;
  color: #111;
}

/* RIGHT IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  transition: transform 0.6s ease;
}

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

/* ================= ANIMATIONS ================= */
.fade-left,
.fade-right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width: 1200px) {
  .about-content h2 {
    font-size: 46px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .about-image img {
    height: 400px;
    width: 380px;
  }

  .about-content h2 {
    font-size: 40px;
    text-align: center;
  }

  .about-content .line {
    margin: 15px auto 30px;
  }

  .about-content {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .about-story {
    padding: 30px 20px;
  }

  .about-image img {
    height: 420px;
    width: 400px;
  }

  .about-content p {
    font-size: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .about-content h2 {
    font-size: 32px;
  }

  .about-image img {
    height: 260px;
    width: 200px;
  }
}

/* ================= MISSION VISION SECTION ================= */
.mission-vision {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* BACKGROUND IMAGE */
.mission-vision img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: grayscale(100%);
}

/* OVERLAY */
.mv-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.65);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 150px 20px;
}

/* CONTAINER */
.mv-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 80px;
}

/* BOX */
.mv-box {
  flex: 1;
  color: #fff;
}

.mv-box h2 {
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.mv-line {
  display: block;
  width: 90px;
  height: 2px;
  background: #1f9d55;
  margin-bottom: 30px;
}

.mv-box p {
  font-size: 24px;
  line-height: 1.9;
  color: #e0e0e0;
}

/* ================= ANIMATION ================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay {
  transition-delay: 0.3s;
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width: 1200px) {
  .mv-box h2 {
    font-size: 55px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .mv-container {
    flex-direction: column;
    gap: 60px;
  }

  .mv-box h2 {
    font-size: 42px;
    text-align: center;
  }

  .mv-line {
    margin: 15px auto 30px;
  }

  .mv-box p {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .mission-vision {
    min-height: auto;
  }

  .mv-box h2 {
    font-size: 34px;
  }

  .mv-box p {
    font-size: 18px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .mv-box h2 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .mv-box p {
    font-size: 14px;
  }
}

/* ================= OUR VALUES ================= */
.our-values {
  background: #fff;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.values-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.values-header {
  text-align: center;
  margin-bottom: 30px;
}

.values-header h2 {
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 4px;
  color: #111;
}

.values-line {
  display: block;
  width: 90px;
  height: 2px;
  background: #1f9d55;
  margin: 25px auto 0;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 50px;
}

/* CARD */
.value-card {
  text-align: center;
  padding: 10px 15px;
}

/* ICON */
.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #0b5d2a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.icon-circle i {
  font-size: 34px;
  color: #0b5d2a;
}

/* TEXT */
.value-card h3 {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.value-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}

/* HOVER */
.value-card:hover .icon-circle {
  transform: scale(1.12);
}

/* ================= ANIMATION ================= */
.zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.zoom.show {
  opacity: 1;
  transform: scale(1);
}

.zoom.delay {
  transition-delay: 0.2s;
}

.zoom.delay-2 {
  transition-delay: 0.4s;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }

  .values-header h2 {
    font-size: 48px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .values-header h2 {
    font-size: 38px;
    letter-spacing: 3px;
  }

  .value-card h3 {
    font-size: 28px;
  }

  .value-card p {
    font-size: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .values-header h2 {
    font-size: 30px;
  }

  .icon-circle {
    width: 75px;
    height: 75px;
  }

  .icon-circle i {
    font-size: 28px;
  }
}

/* ================= SERVICES SECTION ================= */

.services-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 100px 20px;
}

.services-wrapper {
  max-width: 1300px;
  margin: auto;
}

/* ================= SERVICE CARD ================= */

.service-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 90px;
  padding: 50px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-row:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.service-row.reverse {
  flex-direction: row-reverse;
}

/* ================= TEXT ================= */

.service-text {
  flex: 1;
  color: #fff;
}

.service-text h2 {
  font-size: 42px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
}

.service-text h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #1f9d55;
  display: block;
  margin-top: 10px;
}

.service-para {
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
  max-width: 520px;
}

/* ================= TOGGLE BUTTON ================= */

.toggle-btn {
  margin-top: 25px;
  background: transparent;
  border: 2px solid #1f9d55;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.toggle-btn:hover {
  background: #1f9d55;
}

.toggle-btn i {
  color: #1f9d55;
  font-size: 16px;
  transition: 0.3s;
}

.toggle-btn:hover i {
  color: #fff;
}

/* ================= ACCORDION CONTENT ================= */

.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.service-content ul {
  margin: 25px 0;
}

.service-content li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #eee;
  position: relative;
  padding-left: 22px;
}

.service-content li::before {
  content: "✔";
  color: #1f9d55;
  position: absolute;
  left: 0;
}

/* ================= BUTTON ================= */

.service-btn {
  display: inline-block;
  margin-top: 15px;
  border: 2px solid #1f9d55;
  padding: 12px 28px;
  text-decoration: none;
  color: #1f9d55;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.service-btn:hover {
  background: #1f9d55;
  color: #fff;
}

/* ================= IMAGE ================= */

.service-img {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.service-img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-row:hover .service-img img {
  transform: scale(1.08);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .service-row {
    flex-direction: column;
    padding: 35px;
  }

  .service-row.reverse {
    flex-direction: column;
  }

  .service-img img {
    height: 420px;
  }

  .service-text h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 70px 15px;
  }

  .service-row {
    padding: 28px;
    gap: 30px;
  }

  .service-text h2 {
    font-size: 26px;
  }

  .service-para {
    font-size: 14px;
  }

  .service-img img {
    height: 280px;
  }
}

/* ================= GALLERY ================= */
.gallery-section {
  padding: 20px 20px;
  background: #f8f8f8;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery-title {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 10px;
  animation: fadeDown 1s ease;
}

.gallery-subtitle {
  color: #666;
  margin-bottom: 50px;
  animation: fadeUp 1s ease;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  animation: zoomIn 0.9s ease forwards;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* HOVER ZOOM */
.gallery-item:hover img {
  transform: scale(1.15);
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.gallery-overlay i {
  color: #fff;
  font-size: 38px;
  transform: scale(0.5);
  transition: 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  animation: zoomIn 0.5s ease;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ANIMATIONS */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 32px;
  }
  .gallery-item img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .gallery-item img {
    height: 200px;
  }
}

/* CONTACT PAGE section */
.contact-header {
  text-align: center;
  padding: 40px 20px 30px;
}

.contact-header h1 {
  font-size: 56px;
  letter-spacing: 3px;
}

.contact-header span {
  display: block;
  width: 80px;
  height: 2px;
  background: #1f9d55;
  margin: 25px auto;
}

.contact-header p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

/* ================= INFO ================= */
.contact-info {
  display: flex;
  justify-content: center;
  gap: 120px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.info-box {
  text-align: center;
}

.info-box h3 {
  font-size: 28px;
  letter-spacing: 2px;
}

.info-box p {
  margin-top: 12px;
  font-size: 16px;
}

.info-box a {
  text-decoration: none;
  color: #000;
}

.info-box small {
  display: block;
  margin-top: 8px;
  color: #777;
}

/* ================= FORM ================= */
.contact-form-section {
  padding: 80px 20px;
  background: #fafafa;
}

.contact-form-section h2 {
  text-align: center;
  font-size: 46px;
  margin-bottom: 60px;
  letter-spacing: 2px;
}

.contact-form {
  max-width: 700px;
  margin: auto;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: #f3f3f3;
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1f9d55;
}

button {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  border: none;
  background: #e4e4e4;
  cursor: pointer;
  transition: 0.4s;
}

button:hover {
  background: #1f9d55;
  color: #fff;
}

.privacy-text {
  margin-top: 25px;
  text-align: center;
  color: #777;
  font-size: 14px;
}

/* ================= MAP ================= */
.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .contact-header h1 {
    font-size: 42px;
  }
  .contact-info {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 34px;
  }
  .contact-form-section h2 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .contact-header h1 {
    font-size: 28px;
  }
}

/* ================= PREMIUM FORM ================= */
.premium-form {
  background: rgba(255, 255, 255, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transition: 0.5s;
}

.premium-form:hover {
  transform: scale(1.03);
}

/* ================= INPUT GROUP ================= */
.premium-form .form-group {
  position: relative;
  margin-bottom: 35px;
}

.premium-form input,
.premium-form textarea {
  width: 100%;
  padding: 16px 45px 16px 15px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  font-size: 16px;
  transition: 0.4s;
}

.premium-form textarea {
  resize: none;
}

.premium-form label {
  position: absolute;
  top: 50%;
  left: 15px;
  color: #777;
  font-size: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.4s;
}

.premium-form input:focus,
.premium-form textarea:focus {
  border-color: #1f9d55;
}

.premium-form input:focus ~ label,
.premium-form textarea:focus ~ label,
.premium-form input:valid ~ label,
.premium-form textarea:valid ~ label {
  top: -8px;
  font-size: 13px;
  color: #1f9d55;
  background: #fff;
  padding: 0 6px;
}

.premium-form i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #1f9d55;
  font-size: 18px;
}

/* ================= BUTTON ================= */
.premium-btn {
  position: relative;
  width: 100%;
  padding: 16px;
  font-size: 18px;
  border: none;
  background: linear-gradient(135deg, #1f9d55, #14c38e);
  color: #fff;
  border-radius: 40px;
  cursor: pointer;
  overflow: hidden;
  transition: 0.4s;
}

.premium-btn:hover {
  box-shadow: 0 15px 40px rgba(31,157,85,0.4);
  transform: translateY(-3px);
}

/* Button ripple */
.premium-btn span {
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ripple 0.7s linear;
}

@keyframes ripple {
  to {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .premium-form {
    padding: 40px 25px;
  }
}

@media (max-width: 480px) {
  .premium-form {
    padding: 35px 20px;
  }
}

/* ================= MAIN WRAPPER ================= */
.contact-modern {
  padding: 20px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

/* ================= HEADER ================= */
.contact-header-modern {
  text-align: center;
  max-width: 700px;
  margin: auto;
  animation: fadeIn 1s ease;
}

.contact-header-modern h1 {
  font-size: 52px;
  color: #111;
  margin-bottom: 15px;
}

.contact-header-modern p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

/* ================= INFO CARDS ================= */
.contact-info-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 30px auto;
}

.info-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.info-card i {
  font-size: 34px;
  color: #1f9d55;
  margin-bottom: 15px;
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 16px;
  color: #333;
}

.info-card span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}

.info-card:hover {
  transform: translateY(-8px);
}

/* ================= FORM ================= */
.contact-form-wrapper {
  max-width: 800px;
  margin: auto;
  animation: fadeUp 1s ease;
}

/* premium-form (aapka existing CSS perfectly chalega) */

/* ================= ANIMATION ================= */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .contact-info-modern {
    grid-template-columns: repeat(3fr);
  }
  .contact-header-modern h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .contact-info-modern {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-header-modern h1 {
    font-size: 30px;
  }
}
