/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #222;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

/* --- Hero Section with Video --- */
.about-hero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Text Content */
.about-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.about-content h4 {
  letter-spacing: 3px;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.about-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* --- About Details Section (Hovering on Video) --- */
.about-details {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -100px; /* This makes it overlap the video */
  z-index: 3;
}

.about-box {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 40px 60px;
  max-width: 1000px;
  width: 90%;
  max-height: 433px;
}

.about-box p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

/* Section Container */
.about-section {
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Our Story & Mission */
.about-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.about-box {
  flex: 1 1 45%;
  background: lightgray;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.about-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-box h2 {
  font-size: 1.8rem;
  color: #2a2a2a;
  margin-bottom: 15px;
}

.about-box p {
  margin-bottom: 15px;
  color: #555;
}


/* Responsive Design */
@media (max-width: 992px) {
  .about-box {
    flex: 1 1 100%;
  }
}




/* --- Responsive --- */
@media (max-width: 768px) {
  .about-hero {
    height: 60vh;
  }

  .about-content h1 {
    font-size: 2rem;
  }

  .about-details {
    margin-top: -60px;
  }

  .about-box {
    padding: 25px 20px;
    max-height: 588px;
  }

  .about-box p {
    font-size: 0.95rem;
  }
}


/*values*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
}

.hero {
  position: relative;
  height: 50vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

.hero-content {
  padding: 0 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn {
  background: #004c3f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #037c63;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn {
    padding: 10px 24px;
  }
}

/*features*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff;
  color: #222;
}

/* Section Layout */
.features-section {
  padding: 80px 20px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-container {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Feature Card */
.feature-box {
  background: lightgray;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 40px 25px;
  width: 330px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Icon Style */
.icon {
  font-size: 60px;
  color: #594614;
  margin-bottom: 20px;
}

/* Text Style */
.feature-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.feature-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .feature-box {
    width: 100%;
    max-width: 400px;
  }

  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-box h3 {
    font-size: 1.3rem;
  }

  .icon {
    font-size: 50px;
  }
}