.hero-section {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  background-repeat: no-repeat;
  background-size: cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
  text-align: center;
}

.hero-center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-title {
  font-size: 4rem;
  animation: fadeInUp 1s ease-out;
  border: 2px hidden red;
  color: #f49d1a;
  font-weight: bold;
  margin-bottom: 1rem;
}

.custom-paragraph {
  font-size: 1.25rem;
  color: white;
  animation: fadeInUp 1.2s ease-out;
}

                                    /* Principal Section */
.principal-section{
  border: 2px hidden red;
  margin-top: 50px;
  margin-bottom: 50px;
}
.principal-section img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 5px solid #640d6b;
}

.principal-section h2 {
  font-weight: bold;
}
.principal-section p {
  font-size: 1.1rem;
}


                                    /* About Section */
.about-section{
  background-color: rgb(240, 239, 239);
}
.about-section h2 {
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: bold;
  border: 2px hidden red;
  color: #f49d1a;
}

.about-section p{
  font-size: 1.1rem;
}

/* About Section */
.about-section h1 {
  font-weight: bold;
}
.about-section .col-lg-6 {
  padding-left: 40px;
  padding-right: 40px;
  border:2px hidden red ;
}


                                  /* Video Section */
.video-section {
  background: #000;
   border: 2px hidden red;
}

.video-section h3 {
  font-weight: 600;
}

video {
  object-fit: cover;
  border: 2x solid red;
}

                                      /*Our Mission */

.mission-section {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
  padding: 2rem;
  text-align: center;
}

.doodle-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ya contain */
  opacity: 0.05;
  z-index: 0;
}

.mission-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 850px;
  color: #000;
}


.mission-content h3{
  color: #f49d1a;
  font-family: Atma;
  font-weight: bold;
  font-size:2.8rem;
}
.mission-content p {
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 1.2rem;
  color: #333;
  border: 2px hidden red;
  width: 130%;
  margin-left: -90px;
}

.vcv-section {
  background-color: rgb(232, 232, 232);
  padding: 3rem 0;
  border: 2px hidden red;
  height: 70vh;

}

.vcv-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  border: 2px hidden red;
  margin-top: 40px;
}

.vcv-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.vcv-title {
  margin-bottom: 1rem;
  color: #f49d1a;
  font-family: Atma;
  font-weight: bold;
  font-size:2.5rem;
}

.vcv-subtitle {
  font-size: 1rem;
  color: #555;
}

.vcv-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.vcv-col {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  min-width: 250px;
}

.vcv-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  padding: 1.5rem;
}

.vcv-icon {
  margin-bottom: 1rem;
}

.vcv-icon-img {
  width: 80px;
}

.vcv-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.vcv-card-text {
  font-size: 0.95rem;
  color: #444;
}

/* Hover Effects */
.vcv-hover-1:hover {
  background-color: #ff6e84;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.vcv-hover-2:hover {
  background-color: #65a0ca;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.vcv-hover-3:hover {
  background-color: #68baad;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .vcv-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
