:root {
  --primary-color: #FFF8F6;
  /*WHITE */
  --secondary-color: #F25435;
  /* RED TONE */
  --success-color: #DB2038;
  /* BLUE BLACK */
  --danger-color: #333333;
  /* BLACK */
  --warning-color: #FEECEE;
  /* LIGHT PINK */
  --info-color: #F14079;
  /* LOGO COLOR */
  --light-color: #F8F5ED;
  /* LIGHT WHITE */
  --dark-color: #72BE48;
  /* GREEN*/
  --text-color: #F4F5F3;
  /* GREY */
  --background-color: #1BBBB4;
  /* BLUE */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌟 Navbar */
.navbar {
  background-color: white;
  color: #F14079;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 8px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid black;
  font-size: 25px;
  font-weight: 600;
}

/* Logo */
.navbar-brand img {
  height: 60px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

/* Links */
.nav-link {
  color: var(--info-color) !important;
  font-weight: 500;
  padding: 10px 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
  color: yellow !important;
  transform: translateY(-2px);
}

/* 🔹 Dropdown (Show on Hover) */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dropdown-menu {
  background-color: #FEECEE;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  color: #333333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #F25435;
  color: #fff;
}

/* 🔹 Support Button */
.btn-danger {
  background-color: #F14079;
  border: none;
  /* transition: all 0.3s ease; */
}

.btn-danger a {
  color: #fff;
  text-decoration: none;
}

.btn-danger:hover {
  background-color: #DB2038;
  transform: scale(1.05);
}

/* 🔹 Fade Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  background-color: #FEECEE;
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
}

.about-title {
  color: #6E196E;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

.about-img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(110, 25, 110, 0.2);
}

.btn-custom {
  background-color: #F14079;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s;
  font-weight: 600;
}

.btn-custom:hover {
  background-color: #fff;
  color: #6E196E;
  transform: scale(1.05);
}

/* 🌤 Hero Section */
.hero {
  background-image: url(/image/about-img/about-background-copy.png);
  text-align: center;
  color: #F14079;
  padding: 80px 20px;
  font-size: 85px;
  font-weight: 900;
}

/* 🌤 About Hero Section */
.about-hero {
  background-image: url("/image/about-img/about-background.png");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.5s ease forwards;
}

.about-hero .overlay {
  background: rgba(110, 25, 110, 0.75);
  padding: 80px 20px;
  border-radius: 20px;
  display: inline-block;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
  animation: textPop 1.5s ease forwards;
}

.about-hero h1 span {
  color: #F14079;
}

.about-hero p {
  font-size: 1.3rem;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 2s ease 0.5s forwards;
}

/* 🌈 About Section with Cartoon Images */
.about-section {
  background-color: #fff8f6;
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Box layout */
.about-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-box.reverse {
  flex-direction: row-reverse;
  opacity: 0;
  transform: translateX(100px);
  animation: slideInRight 1.2s ease-out forwards;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 2rem;
  color: #6E196E;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  text-align: justify;
}

/* 🌀 Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textPop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.vision-mission-section .shadow-sm {
  position: relative;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.vision-mission-section .shadow-sm::before {
  content: "Vision & Mission";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, #F14079, #6E196E);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.vision-mission-section .shadow-sm:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(110, 25, 110, 0.15);
}

.vision-mission-section {
  background-color: #FFF8F6;
  font-family: 'Poppins', sans-serif;

}

.vision-mission-section .shadow-sm {
  transition: all 0.4s ease;
}

.vision-mission-section .shadow-sm:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(110, 25, 110, 0.15);
}

/* 🌙 Footer */
.footer {
  background: #333;
  color: #fff;
  padding: 60px 4% 20px;
  font-family: 'Poppins', sans-serif;
}

/* Grid layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

/* Logo */
.footer-logo {
  width: 280px;
  height: auto;
}

.footer-desc {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Headings */
.footer-column h3 {
  color: #F14079;
  margin-bottom: 18px;
  font-size: 1.3rem;
  position: relative;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #72BE48;
  left: 0;
  bottom: -8px;
  border-radius: 5px;
}

/* Links */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #F14079;
}

/* Contact text */
.footer-column p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Social icons */
.footer-social {
  margin-top: 10px;
}

.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 15px;
  transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover {
  color: #F14079;
  transform: scale(1.2);
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #ccc;
}

/* CONTACT-CSS */
.contact-info-section {
  background-color: #FFF8F6;
  font-weight: 600;
}

.contact-info-section .contact-details p {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-info-section .social-links a {
  color: #6E196E;
  transition: 0.3s;
}

.contact-info-section .social-links a:hover {
  color: #F14079;
}

/* 🌈 Contact Form Section */
.contact-section {
  background-color: #fdf9f9;
  padding: 60px 0;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.contact-lottie,
.contact-form {
  flex: 1;
}

.contact-form h2 {
  color: #6E196E;
  font-weight: 700;
  margin-bottom: 20px;
}

.btn-custom {
  background-color: #F14079;
  color: #fff;
  border: none;
  border-radius: 25px;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: #6E196E;
}

label {
  color: #6E196E;
  font-weight: 600;
  margin-bottom: 20px;
}

::placeholder {
  color: #F14079;
  font-weight: 600;
  margin-bottom: 20px;

}

.btn-custom {
  background-color: #6E196E;
  color: #F14079;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.9s ease;
  border-radius: 125px;

}

.btn-custom:hover {
  background-color: #F14079;
  border: 2px solid black;
  border-radius: 125px;
}


/* 📱 Responsive Styles */
@media (max-width: 992px) {

  /* Navbar collapse */
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }


  /* Dropdown menu */
  .dropdown-menu {
    background-color: #FEECEE;
    border-radius: 10px;
    border: none;
  }

  .dropdown-item:hover {
    background-color: var(--secondary-color);
    color: white;
  }

  /* Support button */
  .btn-danger {
    background-color: transparent;
    border: none;
    padding: 8px 22px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .navbar-nav {
    color: #222222;

  }

  .about-title {
    font-size: 2rem;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .btn-custom {
    display: block;
    margin: 20px auto;
  }

  /* About section */
  .about-box {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 350px;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .navbar-brand {
    flex: 1;
  }

  .navbar-toggler {
    border: none;
    color: black;
    font-size: 28px;
  }

  .navbar-collapse {
    width: 100%;
    background-color: #6E196E;
    border-radius: 0 0 15px 15px;
    margin-top: 10px;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .navbar-nav .nav-link {
    color: white !important;
    font-size: 1.1rem;
    padding: 10px;
  }

  /* Support button center */
  .navbar-support {
    display: none !important;
  }

  .navbar-collapse.show .btn-danger {
    display: block;
    margin: 15px auto;
    padding: 10px 80px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    width: auto;
    white-space: nowrap;
    border-radius: 25px;
    line-height: 1.4;
  }

  .navbar-nav {
    background-color: transparent;
    margin-right: 50%;
    /* flex-flow: column; */
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .about-section {
    padding: 60px 5%;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .about-title {
    text-align: center;
    font-size: 1.7rem;
  }

  .about-text {
    text-align: justify;
    /* lines evenly spread */
    max-width: 90%;
    /* paragraph width narrow */
    margin: 0 auto 15px;
    /* center the block itself */
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
  }

  .btn-custom {
    display: block;
    margin: 20px auto 0;
    /* button center align */
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .contact-box {
    flex-direction: column;
    text-align: center;
  }

  .contact-lottie,
  .contact-form {
    width: 100%;
  }

  .contact-info-section .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .contact-info-section .contact-details {
    margin-top: 20px;
  }

  .contact-info-section .social-links a {
    margin-right: 10px;
  }

  #contact-info-animation,
  #contact-animation {
    height: 300px !important;
  }

  .footer {
    text-align: center;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

}

@media (max-width: 576px) {
  .hero {
    font-size: 50px;
    padding: 60px 10px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 0.9rem;
  }

  .about-image img {
    max-width: 280px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-nav {
    background-color: transparent;
    margin-right: 50%;
    /* flex-flow: column; */
  }

  h2 {
    font-size: 1.6rem;
  }

  .contact-details p {
    font-size: 0.9rem;
  }

  .mb-3 {
    text-align: start;
  }
}

@media (max-width: 480px) {
  .about-text h2 {
    font-size: 1.4rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .navbar-nav {
    background-color: transparent;
    margin-right: 50%;
    /* flex-flow: column; */
  }

  .navbar {
    display: flex;
    flex-flow: column wrap;
    transition: all 0.4s;
  }

  .navbar-collapse.show .btn-danger {
    padding: 10px 80px;
    font-size: 17px;
    margin-left: -0%;
    margin-top: -5%;

  }

  .navbar-collapse.show .btn-danger #span {
    margin-left: -80px;
  }
}