body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}
.navbar-nav .nav-link {
  color: #0d6efd!important; 
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
  color: #f50057 !important; 
}

/* Active link style (optional) */
.navbar-nav .nav-link.active {
  color: #00bcd4 !important; 
}

/* Hero section */
.hero-section {
  background-color: #fef9f1;
  background-image: url('images/h1_hero.png'); 
  background-repeat: no-repeat;

  background-size: contain;
  
  height: 100vh;
}

.hero-text {
  background: #fff;
  border-radius: 40px;
  padding: 40px;
  max-width: 500px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.hero-text h1 {
  font-weight: 800;
  color: #3f3f9c;
}

.hero-text p {
  font-weight: bold;
  color: #ffc107;
  font-size: 1.3rem;
}

.hero-text .btn {
  background-color: #f51b75;
  color: white;
  border-radius: 25px;
  padding: 10px 30px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .hero-section {
    background-image: none;
    text-align: center;
  }

  .hero-text {
    margin: 0 auto;
  }
}
.welcome-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  padding: 10px;
}

.text-pink {
  color: #e91e63;
}

.welcome-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  max-width: 500px;
}

.icon-img {
  width: 50px;
  height: 50px;
}
.text-pink {
  color: #f50057;
}

.bg-pink {
  background-color: #f50057;
  color: #fff;
  font-size: 0.8rem;
  border-radius: 0.5rem;
}

.card-img-top {
  height: 230px;
  object-fit: cover;
}


.drawing-event-section {
  background-image: url('images/section_bg2.png'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  position: relative;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white overlay */
  padding: 60px 30px;
  border-radius: 20px;
  max-width: 700px;
  margin: auto;
}

.btn-pink {
  background-color: #f50057;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  transition: 0.3s ease;
}

.btn-pink:hover {
  background-color: #c51162;
}


.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  background-color: #0d6efd;
  border-radius: 50%;
  opacity: 0.6;
}

.carousel-indicators .active {
  opacity: 1;
}
.teacher-card h6:hover {
  color:rgb(196, 13, 43); /* Bootstrap blue or any color you like */
  cursor: pointer;
  transition: color 0.3s ease;
}
.tt{
  color: #0d6efd;
  font-size: 20px;
}

.text-purple {
  color: #3f3d99; /* same as "Expert Teachers" */
  font-size: 20px;
}

.text-pink {
  color: #ec1c8c; /* match the pink quote icon and name */
}

.gallery-strip img {
  height: 200px;
  object-fit: cover;
  display: block;

}

footer {
  background-color: #4458dc; /* A blue shade close to the image */
  color: white;
}

/* Paragraph inside footer */
footer p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.7;
}

/* Footer heading */
footer h6 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Footer links */
footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

footer a:hover {
  text-decoration: underline;
  color: #feca57; /* Light orange hover color */
}

/* Social icons */
footer .bi {
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

footer .bi:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Copyright */
footer .copyright {
  font-size: 13px;
  margin-top: 30px;
}

/* Back to Top button */
footer a.position-fixed {
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 28px;
  font-weight: bold;
}