/* Centered logo navbar custom style */

/* Add purple top border */
.custom-navbar {
  border-top: 2px solid #91568f; /* Adjust the color to match the exact purple */
  background: linear-gradient(to bottom, #fff 0%, #fffaf0 100%);
  padding-top: 10px;
  padding-bottom: 10px;
}
.tm_top_nav {line-height: 35px;} 
.tm_top_nav a { color: #fff; } 
.custom-navbar .navbar-brand {
  font-weight: bold;
  display: flex;
  align-items: center;
}

.custom-navbar .navbar-brand img {
  margin-right: 10px;
}

.custom-navbar .nav-link {
  color: #000;
  font-weight: 500;
  margin: 0 10px;
}

.custom-navbar .nav-link:hover {
  color: #6c63ff;
}

.custom-navbar .dropdown-menu {
  min-width: 200px;
}


/* Footer custom style */
.footer {
  background-color: #4b2c5e; /* Dark purple */
  color: #fff;
}

.footer-top {
  background-color: #6a4099; /* Lighter purple for top info */
  color: #fff;
}

.footer-top i {
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-main h5 {
  color: #fff;
  margin-bottom: 20px;
}

.footer-main p {
  color: #ddd;
}

.footer-main a {
  color: #ddd;
  text-decoration: none;
}

.footer-main a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer .social-icons a {
  color: #ddd;
  margin-right: 10px;
  font-size: 20px;
}

.footer .social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  background-color: #3a1f4e;
  color: #ccc;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}
.footer-logo img {
  background-color: #fff;
  padding: 5px;
}
/* Slide-down effect */
.dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.nav-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Custom dropdown appearance */
.custom-dropdown {
  background-color: #fff;
  border-radius: 0;
  border: none;
  padding: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Dropdown item base style */
.custom-dropdown .dropdown-item {
  padding: 10px 20px;
  color: #000;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}

/* On hover */
.custom-dropdown .dropdown-item:hover {
  background-color: #f9f9f9;
}

/* First item highlighted like screenshot */
.custom-dropdown .dropdown-item.active-first {
  background-color: #f26522;  /* Bright orange */
  color: #fff;
  font-weight: bold;
}


/* Optional: Ensure dropdown on hover */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Optional spacing */
.navbar-nav .nav-link {
  padding: 8px 15px;
}


.parallax-section {
  
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 400px;
  position: relative;
  z-index: 1;
}

.parallax-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); /* Dark overlay */
  z-index: -1;
}

.parallax-section h2,
.parallax-section p {
  color: #fff;
}

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    height: 300px;
  }
}
.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
}

/* About Section Styling */

.about-section {
  padding: 60px 0;
}

.about-heading {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #92278f;
}

.underline {
  width: 120px;
  height: 4px;
  background-color: #c77dff;
  margin: 10px auto;
  opacity: 1;
}

.about-subtitle {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 10px;
  color: #f97316;
  margin-top: 15px;
}

.about-box {
  padding: 20px;
  border: 1px solid #b5b1b1; /* soft red */
  border-radius: 8px;
  color: #92278f; /* gray-700 */
  font-size: 1.05rem;
  text-align: justify;
}

.google-map {
  width: 100%;
  padding: 0;
  margin: 0;
}
.google-map iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.contact-form-section {
  background-color: #F26522; /* Orange */
  color: #fff;
}

.enquire-subtitle {
  color: #92278f;
  letter-spacing: 4px;
  font-weight: bold;
  font-size: 1rem;
}

.form-heading {
  font-weight: 900;
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 1px;
}

.input-style {
  border: none;
  border-radius: 0;
  padding: 12px 18px;
  font-size: 1rem;
  background: #fff;
  color: #92278f;
  letter-spacing: 1px;
}

.input-style::placeholder {
  color: #b15f9e;
  font-weight: bold;
}

.send-btn {
  background-color: #92278f;
  color: #fff;
  padding: 10px 30px;
  font-weight: bold;
  letter-spacing: 2px;
  border: none;
  border-radius: 5px;
}
.principal-section {
  background: #fff;
}

.border-purple {
  border-color: #92278f !important;
}

.principal-text {
  color: #92278f;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.principal-name {
  color: #f97316; /* Orange */
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-heading {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #561655; /* Deep purple */
  text-transform: uppercase;
}


.stats-section {
  background-color: #fff;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.stats-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
}

.text-purple {
  color: #92278f;
}

.text-orange {
  color: #f26522;
}

.text-blue {
  color: #0050b3;
}



.stats-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px; /* optional, for rounded corners */
  margin-bottom: 15px;
}

.stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}



 .feature-box {
    text-align: center;
    padding: 20px;
  }

  .feature-icon {
    font-size: 5rem;
    margin-bottom: 15px;
  }

  .feature-title {
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
  }

  .feature-text {
    color: #5a2b7d; /* adjust if needed */
    font-size: 1rem;
    text-align: justify;
  }

/*inner banner*/
.inner-banner {
  
  height: 300px;
  position: relative;
}

.inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
 
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.inner-banner h1 {
  font-size: 48px;
  letter-spacing: 1px; color: #4b2c5e;
}
.breadcrumb li {color: gray; font-weight: bold;}
.breadcrumb li a {color: gray; font-weight: bold;}

.breadcrumb-item + .breadcrumb-item::before {
  content: "»";
  color: gray;
  padding: 0 8px;
}

.tm_contact-form-section {
  background-color: #f8f9fa;
}

.tm_contact-form-section h4 {
  font-size: 24px;
  color: #003b4f;
}

.tm_contact-form-section i {
  font-size: 20px;
}

/*inner about */
 .about-section {
      padding: 60px 0;
      background-color: #f9f9f9;
    }

    .about-img {
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease-in-out;
    }

    .about-img img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.6s ease;
    }

    .about-img:hover img {
      transform: scale(1.05) rotate(1deg);
    }

    .about-content h2 {
      letter-spacing: 2px;
      font-weight: bold;
      color: #003049;
      margin-bottom: 20px;
    }

    .about-content p {
      text-align: justify;
      color: #333;
      line-height: 1.7;
    }
/*member*/
    .committee-section {
      padding: 60px 0;
      background-color: #f9f9f9;
    }

    .committee-title {
      font-size: 32px;
      font-weight: bold;
      letter-spacing: 2px;
      text-align: center;
      color: #003049;
      margin-bottom: 40px;
    }

    .member-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .member-card:hover {
      transform: translateY(-5px);
    }

    .member-photo {
      width: 200px;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .member-name {
      font-weight: 600;
      color: #222;
    }

    .member-role {
      color: #666;
      font-size: 14px;
    }

/*mission vison*/
    .section-title {
      font-size: 30px;
      font-weight: 700;
      color: #003049;
      margin-bottom: 15px;
      text-transform: uppercase;
    }

    .content-text p{
      font-size: 16px;
      line-height: 1.8;
      color: #333;
    }

    .mv-section {
      padding: 60px 0;
    }

    .mv-img {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .section-block {
      margin-bottom: 60px;
    }
/*photo gllery*/
    .gallery-section {
      padding: 60px 0;
      background-color: #f8f9fa;
    }

    .gallery-title {
      font-size: 32px;
      font-weight: bold;
      color: #003049;
      text-align: center;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

        .photo-gallery-title {
      font-size: 14px;
      font-weight: bold;
      color: #4b2c5e;
      text-align: center;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .gallery-img {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .gallery-img:hover img {
      transform: scale(1.05);
    }

    .gallery-img img {
      width: 100%;
      height: auto;
      display: block;
      transition: 0.3s ease;
    }
    .gallery-caption {
  font-size: 14px;
  color: #444;
  font-weight: 500;
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: #000; /* Optional: fallback background */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}


    .video-caption {
      margin-top: 10px;
      font-weight: 500;
      color: #444;
      font-size: 16px;
    }      

 @media (max-width: 400px) {
  .inner-banner {
  width: 100%;
  height: auto;
  position: relative;
  padding: 10px 0px;
}
.inner-banner h1 {
    font-size: 24px;
    letter-spacing: 1px;
    color: #4b2c5e;
}
}   