
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem;
}

.content-wrapper {
  padding: 2rem;
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.1rem;
  color: #555;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.col-md-3,
.col-md-9 {
  flex: 1;
}

.col-md-3 {
  max-width: 25%;
}

.col-md-9 {
  max-width: 70%;
}

@media (max-width: 768px) {

  .col-md-3,
  .col-md-9 {
    max-width: 100%;
  }

  .row {
    flex-direction: column;
  }
}

.nav.flex-column.nav-pills {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav.flex-column.nav-pills button {
  padding: 0.75rem 1rem;
  border: none;
  background-color: #e9ecef;
  color: #333;
  cursor: pointer;
  border-radius: 5px;
  text-align: left;
  transition: all 0.3s ease;
}

.nav.flex-column.nav-pills button:hover,
.nav.flex-column.nav-pills button.active {
  background-color: #dfa974;
  color: #fff;
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.tab-pane.active {
  display: block;
}

h4 {
  margin-top: 1rem;
  color: #dfa974;
}

ul {
  padding-left: 1.2rem;
}

.video-container {
  margin-top: 2rem;
}

video {
  width: 100%;
  max-width: 720px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 1.25rem;
  color: #0d6efd;
  margin-bottom: 0.5rem;
}

.card-text {
  margin-bottom: 1rem;
}


.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.card-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.card-content p {
  font-size: 0.95rem;
  color: #444;
}



/* Modal styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  background: white;
  width: 80%;
  height: 90%;
  margin: 5% auto;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.modal-content iframe {
  flex: 1;
  width: 100%;
  border: none;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
}

.download-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
}

.download-btn:hover {
  background-color: #218838;
}
.hero-section {
  background: linear-gradient(135deg, #198754, #0dcaf0);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}


.hero-section_1 {
  background: url('https://images.unsplash.com/photo-1581091870622-6c67e1d1eb1b?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: white;
  padding: 100px 0;
  text-align: center;
}
.info-box {
  background: #f8f9fa;
  border-left: 5px solid #dfa974;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.carousel-img {
  height: 400px;
  object-fit: cover;
}