/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #02ae5e;
  --light-green: #4a7c59;
  --sage-green: #87a96b;
  --cream: #f7f5f3;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-light: #303030;
  --accent-orange: #e67e22;
  --soft-gray: #ecf0f1;
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image {
  width: 100%;
  max-width: 500px;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.floating-card {
  position: absolute;
  background: white;
  padding: 15px;
  border-radius: var(--border-radius);
  /* box-shadow: var(--shadow-medium); */
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 80px;
  animation: float 6s ease-in-out infinite;
}

.floating-card img {
  width: 120px;
  height: 120px;
  /* border-radius: 50%; */
  object-fit: cover;
  border-radius: 80px;
}

.card-1 {
  top: 20px;
  left: -40px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 40px;
  right: -60px;
  animation-delay: 3s;
}

.card-text h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 4px;
}

.card-text p {
  color: var(--text-light);
  font-size: 0.9rem;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: "INTER", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* About Section */
.about {
  padding: 80px 0 100px;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
}

.image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--primary-green);
  color: white;
  padding: 12px 20px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.about-text p,
.content-text {
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.gallery-legal,
.contact-us-container,
.terms {
  padding: 50px 0;
}

.terms img {
  border: 1px solid #1a1a1a !important;
}

.quote-box {
  /* background: var(--cream);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--light-green);
    margin: 40px 0;
    position: relative; */
  text-align: center;
}

.quote-box i {
  color: var(--light-green);
  font-size: 1.5rem;
  margin-bottom: 12px;
}



.about-content-section {
  padding: 80px 0;
  background: url("../img/features_bg.jpg") no-repeat center center/cover;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: bottom;
  padding-bottom: 350px;

  p {
    color: #3b3b3b !important;
    font-size: 1.8rem;
    font-weight: 600;
  }

}

.quote-box p {
  font-style: italic;
  font-size: 2.9rem;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

/* 
.about-content-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  height: 50px;
  background-image: url("../img/features_shape02.png");
  background-repeat: repeat-x;
  background-position: center;
}

.about-content-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: -41px;
  width: 100%;
  height: 41px;
  background-image: url("../img/features_shape01.png");
  background-repeat: repeat-x;
  background-position: center;
} */

.about-content-section .logo img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.stats-mini {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.stat-item p {
  color: var(--text-light);
  font-weight: 500;
}

/* Mission & Vision */
.mission-vision {
  padding: 120px 0;
  background: white;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* .mv-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
} */

/* .mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
} */

.mv-image {
  height: 250px;
  overflow: hidden;
}

.mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.mv-card:hover .mv-image img {
  transform: scale(1.05);
}

.mv-content {
  /* padding: 40px; */
  /* text-align: center; */
}

.mv-icon {
  width: 70px;
  height: 70px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary-green);
  font-size: 1.8rem;
}

.mv-content h3 {
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-family: "INTER", sans-serif;
}

.mv-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.6rem;
}

.pointers {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--cream);
  padding: 10px 8px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid var(--primary-green);

  .pointers-text {
    font-size: 1.4rem;
    margin: 0 !important;
    font-family: "Inter", sans-serif;
    font-weight: 700;
  }

  .list-icon {
    color: var(--primary-green) !important;
  }
}

.something-img {
  img {
    width: 100%;
  }
}

.mission-vision {
  padding: 50px 0 50px;
  background: var(--cream);

  h3 {
    margin-bottom: 30px;
  }

  p {
    font-size: 1.6rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .text-style {
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
    color: var(--text-dark);
  }

  .mission-img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
  }

  .ma-top-15 {
    margin-top: 15px;
  }
}

.w-100 {
  width: 100%;
}

.vision-card {
  position: relative;

  .vision-content {
    position: absolute;
    top: 190px;
  }

  .vision-img {
    width: 100%;
  }
}

.vision-section {
  padding: 80px 0;

  h3 {
    margin-bottom: 20px;
    font-weight: 600;
  }

  .image-container {
    display: flex;
    text-align: center;
    justify-self: center;

    img {
      width: 400px;
      border-radius: 16px;
    }
  }

  .text-style {
    font-size: 1.9rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
    color: var(--text-dark);
  }
}

/* Banner Section */
.banner-section {
  background: url("../img/legal-document.png") no-repeat center center/cover;
  padding: 60px 0;
  margin-bottom: 40px;
}

.banner-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.banner-text {
  font-size: 18px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

.contact-section {
  padding: 80px 0;
}

.contact-img-section {
  img {
    width: 100%;
    height: auto;
  }
}

/* contact us section  */

.contact-card-section {
  padding: 15px;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  border-radius: 0px;
  /* background-image: url(../img/card-bg.png); */
  background-position: right;
  background-size: cover;
  /* background-color: #eaf7e4; */
  border-bottom: 1px solid #ededed;
  min-height: 100px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;

  .card-img-icon {
    padding: 15px;
    background: #e0f9d4;
    border-radius: 58px;

    img {
      width: 24px;
      height: auto;
    }
  }
}

.card-sub-heading {
  /* font-family: 'Lora'; */
  font-weight: 700;
  font-size: 16px;
  color: #141619;
  /* font-style: italic; */
}

.bank-card-section {
  padding: 40px 70px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  /* background-image: url(../img/card-bg.png); */
  background-position: right;
  background-size: cover;
  background-color: #eeffed;
}

.align-item-center {
  display: flex;
  align-items: center;
}

.padd-left-0 {
  padding-left: 0px;
}

/* ------------------------ */

@media (max-width: 768px) {
  .gallery-legal a {
    display: contents !important;
  }

  .banner-heading {
    font-size: 24px !important;
  }

  .main-image {
    height: 360px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-content-section {
    p {
      font-size: 1.6rem !important;
    }
  }

  .about-grid {
    gap: 15px;
  }

  .text-style {
    font-size: 1.6rem !important;
  }



  .stats-mini {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .floating-card {
    /* position: static; */
    margin: 20px auto;
    max-width: 250px;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card-1 {
    top: -60px !important;
    left: -10px !important;
  }

  .card-2 {
    bottom: -48px !important;
    right: 0 !important;
  }

  .mission-vision {
    .mv-card {
      /* border: 1px solid #ededed; */
      /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
      margin-bottom: 20px;
      /* border-radius: 8px; */

      .mv-content {
        /* position: static !important;
            padding: 20px; */

        h3 {
          font-size: 2.8rem !important;
        }
      }
    }

    .something-img {
      display: none;
    }
  }

  .vision-section {
    padding: 60px 0 !important;

    .mv-card {
      /* border: 1px solid #ededed; */
      /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
      margin-bottom: 20px;
      /* border-radius: 8px; */

      .mv-content {
        /* position: static !important;
            padding: 20px; */

        h3 {
          font-size: 2.8rem !important;
        }
      }
    }

    .image-container {
      img {
        width: 100% !important;
        border-radius: 8px;
      }
    }
  }

  .about-content-section {
    padding: 40px 0 100px !important;
    background: url("../img/features_bg_small.png") no-repeat center center/cover;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: bottom;
  }

  .align-item-center {
    display: block;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .hero,

  .products,
  .mission-vision,
  .commitment {
    padding: 20px 0 20px;
  }

  .about {
    padding: 80px 0 20px;
  }

  .section-header {
    margin-bottom: 50px;
  }
}





@media (max-width: 598px) and (min-width: 280px) {
  .row {
    margin-left: 0px !important;
  }
}