.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-orange {
  background: linear-gradient(to right, #ff7e00, #ff9e43);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 126, 0, 0.3);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 126, 0, 0.4);
}

.section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.text-orange {
  color: #ff7e00;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 100px 0;
  margin-top: 2vw;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 126, 0, 0.3);
  margin-bottom: 20px;
  background: rgba(255, 126, 0, 0.1);
}

.hero-tag svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: #ff7e00;
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(to right, #ff7e00, #ff9e43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-video-placeholder {
  position: relative;
  width: 100%;
  height: 350px;
  background: linear-gradient(to bottom right, #a0d2ff, #c2e0ff);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 123, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-video-placeholder:hover {
  transform: scale(1.02);
}

.play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.4);
}

.play-btn svg {
  width: 40px;
  height: 40px;
  fill: white;
  margin-left: 5px;
}

/* Stats Section */
.stats-section {
  background: white;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.stat-icon svg {
  width: 40px;
  height: 40px;
  fill: #ff7e00;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff7e00;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: #555;
  font-weight: 500;
}

/* Values Section */
.values-section {
  background: #f0f8ff;
  padding: 80px 0;
}

.values-heading {
  font-size: 3rem;
  font-weight: 800;
  color: #ff7e00;
  text-align: center;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 126, 0, 0.3);
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.value-card.active {
  box-shadow: 0 10px 30px rgba(255, 126, 0, 0.2);
  border-color: #ff7e00;
  transform: translateY(-5px);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.value-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.value-description {
  color: #666;
  line-height: 1.7;
}

/* About Section */
.about-section {
  background: white;
  padding: 80px 0;
}

.about-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff7e00;
  text-align: center;
  margin-bottom: 30px;
}

.about-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.8;
}

.about-tagline {
  color: #777;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 1.2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-block {
  background: #f8faff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-title {
  font-size: 1.6rem;
  color: #ff7e00;
  margin-bottom: 20px;
  font-weight: 600;
}

.service-description {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-list {
  list-style-type: none;
}

.service-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  color: #555;
  line-height: 1.6;
}

.service-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff7e00;
  font-size: 1.4rem;
  line-height: 1;
}

.service-list li span {
  font-weight: 600;
  color: #333;
}

/* Story Section */
.story-section {
  background: #f0f8ff;
  padding: 80px 0;
}

.story-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff7e00;
  text-align: center;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.story-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.8;
}

.story-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
}

.story-text {
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.story-text span {
  font-weight: 700;
  color: #333;
}

.strengths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .strengths-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.strength-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.strength-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.strength-title {
  font-size: 1.3rem;
  color: #ff7e00;
  margin-bottom: 15px;
  font-weight: 600;
}

.strength-description {
  color: #555;
  line-height: 1.7;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  max-width: 900px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.modal-close svg {
  width: 30px;
  height: 30px;
  fill: #333;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 126, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 126, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 126, 0, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}
