:root {
  --theme-color: #cc1939;
  --theme-white: #fff;
  --theme-color-soft: #ffede6;
  --theme-color-light: #ffede6;
  --theme-font-color: #212529;
  --theme-font-liter: #6c757d;
  --theme-footer-background: #1f2933;
  --theme-section-background: #f7f7f7;
}

/* =====================
   Base
===================== */
body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  padding-top: 132px;
  color: var(--theme-font-color);
}

a {
  text-decoration: none;
}

/* =====================
   Header
===================== */
.logo-img {
  height: 100px;
  width: auto;
  transition: height 0.25s ease;
}

.phone-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  /* background: var(--theme-white); */
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 999px;
  font-weight: 600;
}

.phone-highlight:hover {
  border: 2px solid var(--theme-color);
}

.phone-highlight a {
  color: var(--theme-color);
}

.header-divider {
  height: 2px;
  background: var(--theme-color);
  opacity: 0.6;
}

/* Shrink on scroll */
#siteHeader.shrink .logo-img {
  height: 60px;
}

/* =====================
   Navigation
===================== */
.nav-link {
  font-weight: 500;
  color: var(--theme-font-color) !important;
}

.nav-link:hover {
  color: var(--theme-color) !important;
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  body {
    padding-top: 180px;
  }
  .doctor-info {
    text-align: center;
  }
  .phone-highlight {
    justify-content: center;
  }
}

/* Navbar Logo */

.navbar-brand img {
  height: 70px;
}

/* Mobile menu box */

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--theme-white);
    padding: 15px;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
}

/* ===== Hero Banner ===== */
.hero-section {
  width: 100%;
}

.heroSwiper {
  width: 100%;
  height: 70vh;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--theme-white);
  max-width: 800px;
  padding: 0 15px;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  margin-top: 50px;
}
.banner-features {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.banner-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(163, 5, 5, 0.75);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--theme-white);
  font-size: 16px;
  border: 1px solid var(--theme-white);
}

.banner-features .feature i {
  font-size: 20px;
  /* color: var(--theme-white);  */
  /* highlight color */
}

/* Mobile */
@media (max-width: 768px) {
  .logo-img {
    height: 70px;
  }
  #siteHeader.shrink .logo-img {
    height: 55px;
    padding-top: 5px;
  }

  .heroSwiper {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
    display: none;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .hero-content h1 {
    font-size: 1.2rem;
  }
}

/* ===== Doctor About Section ===== */
.about-section {
  background: var(--theme-color-light);
}

.doctor-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.doctor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-sign i {
  font-size: 32px;
  color: var(--theme-color);
}

/* ===== Doctor About Enhancements ===== */
.doctor-image-wrapper {
  border-radius: 14px;
  overflow: hidden;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.8s ease;
}

.doctor-image-wrapper.in-view {
  transform: translateY(0);
  opacity: 1;
}

.doctor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Read More */
.read-more-content {
  display: none;
}

.read-more-btn {
  color: var(--theme-color);
  font-weight: 600;
}

/* Signature */
.signature-img {
  height: 50px;
}

/* Awards */
.doctor-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.award-badge {
  background: var(--theme-color-light);
  color: var(--theme-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== CTA Belt ===== */
.cta-belt {
  background: var(--theme-color-soft);
}

.cta-item {
  padding: 60px 30px;
}

.cta-highlight {
  background: var(--theme-color);
  color: var(--theme-white);
}

/* Icons */
.cta-icon {
  font-size: 38px;
  /* color: var(--theme-color); */
  margin-bottom: 15px;
}

.cta-highlight .cta-icon {
  color: var(--theme-white);
}

/* Buttons */
.btn-outline-theme {
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 600;
}

.btn-outline-theme:hover {
  background: var(--theme-color);
  color: var(--theme-white);
}

.btn-whatsapp {
  background: var(--theme-white);
  color: var(--theme-color);
  border-radius: 50px;
  padding: 12px 26px;
  font-weight: 600;
  border: 1px solid var(--theme-color);
}
.btn-whatsapp:hover {
  border: 2px solid var(--theme-white);
}

/* Pulse Animation */
.pulse-cta {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(167, 208, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(167, 208, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(167, 208, 255, 0);
  }
}

/* Mobile */
@media (max-width: 991px) {
  .cta-item {
    padding: 40px 20px;
  }
}

/* ===== Clinic Services ===== */
.clinic-services {
  background: var(--theme-white);
}

.section-subtitle {
  color: var(--theme-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--theme-font-color);
}

.section-desc {
  max-width: 650px;
  margin: 12px auto 0;
  color: var(--theme-font-liter);
}

/* Service Card */
.service-card {
  background: var(--theme-color-light);
  border-radius: 14px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* Icon */
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--theme-color-soft);
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
}

.service-card h5 {
  font-weight: 600;
  color: var(--theme-font-color);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--theme-font-liter);
}

/* ===== Icon Color Morph on Hover ===== */
.service-card:hover .service-icon {
  background: var(--theme-color);
  color: var(--theme-white);
  transform: scale(1.08);
}

/* Smooth transitions */
.service-icon {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.service-card:hover .service-icon {
  box-shadow: 0 0 0 8px rgba(167, 208, 255, 0.15);
}

/* ===== Promise Belt ===== */
.promise-belt {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image: url("../images/promise-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--theme-white);
}

.promise-overlay {
  position: absolute;
  inset: 0;
  background: rgb(157 101 101 / 78%);
  z-index: 1;
}

.promise-belt .container {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

/* Title */
.promise-title {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

/* Signature underline */
.signature-underline {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--theme-white);
  transform: translateX(-50%);
  transition: width 1.2s ease;
}

.fade-in.visible .signature-underline {
  width: 80%;
}

/* Text */
.promise-text {
  font-size: 1.1rem;
  line-height: 1.7;
  /* max-width: 720px; */
  margin: 18px auto 0;
  opacity: 0.95;
}

/* WhatsApp Button */
.btn-whatsapp-lg {
  color: var(--theme-white);
  border: 1px solid var(--theme-white);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
}

.btn-whatsapp-lg i {
  margin-right: 8px;
}

.btn-whatsapp-lg:hover {
  /* background: var(--theme-color); */
  color: var(--theme-white);
  border: 2px solid var(--theme-white);
}

/* Stats */
.promise-stats h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.promise-stats span {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===== Fade In Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delays */
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.4s;
}
.delay-3 {
  transition-delay: 0.6s;
}
.delay-4 {
  transition-delay: 0.8s;
}
.delay-5 {
  transition-delay: 1s;
}

/* Mobile */
@media (max-width: 991px) {
  .promise-belt {
    background-attachment: scroll;
    padding: 80px 0;
  }
  .btn-whatsapp-lg {
    padding: 10px;
    font-size: 0.7rem;
  }
  .hero-content {
    padding: 0px;
  }
}

/* ===== Our Team ===== */
.team-section {
  background: var(--theme-color-light); /* same bg as services */
}

.team-card {
  background: var(--theme-white);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--theme-color-light);
  transition: all 0.35s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.team-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.team-content {
  padding: 22px 20px;
  text-align: center;
}

.team-content h6 {
  font-weight: 600;
  color: var(--theme-font-color);
  margin-bottom: 6px;
}

.team-desc {
  font-size: 0.9rem;
  color: var(--theme-font-liter);
  margin-bottom: 10px;
}

.team-designation {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--theme-color);
  margin-bottom: 8px;
}

.team-rating {
  font-size: 1rem;
  color: #f4c150; /* same star color used earlier */
}

/* Mobile scroll */
@media (max-width: 991px) {
  .team-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .team-row > div {
    min-width: 260px;
    scroll-snap-align: center;
  }
}
#testimonials{
position:relative;
overflow:hidden;
padding-top: 80px;
}
.testimonialSwiper {
  padding: 40px 10px !important;
}

.testimonial-card{
  background:#fffef8;
  padding:35px 28px 32px;
  border-radius:4px;

  font-family:"Caveat", cursive;
  font-size:1.25rem;

  position:relative;

  border:1px solid #eee;

  box-shadow:
    0 12px 25px rgba(0,0,0,0.15),
    0 2px 6px rgba(0,0,0,0.08);

  transition:all .35s ease;
}
.testimonial-card::before{
  content:"";
  position:absolute;
  inset:0;

  background-image:
    linear-gradient(#eaeaea 1px, transparent 1px);

  background-size:100% 26px;

  opacity:.5;
  pointer-events:none;
}
.testimonial-card::after{
  content:"";
  position:absolute;
  top:0;
  right:0;

  width:0;
  height:0;

  border-top:22px solid #f3f3f3;
  border-left:22px solid transparent;
}
.paper-clip{
position:absolute;
top:-10px;
left:20px;

font-size:26px;
color:#666;

transform:rotate(-20deg);
}
.swiper-slide:nth-child(odd) .testimonial-card{
transform:rotate(-2deg);
}

.swiper-slide:nth-child(even) .testimonial-card{
transform:rotate(1.5deg);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--theme-font-liter);
  margin-bottom: 12px;
  /* min-height: 220px; */
}

.testimonial-card h6 {
  margin-bottom: 2px;
  font-weight: 600;
  color: var(--theme-font-color);
}

.testimonial-card span {
  font-size: 0.85rem;
  color: var(--theme-color);
}

.testimonial-card p{
  font-size:1.35rem;
  line-height:1.6;
  color:#333;
}

.testimonial-card h6{
  font-family:"Caveat", cursive;
  font-size:1.5rem;
  margin-top:10px;
}

.testimonial-card span{
  font-size:1.1rem;
  opacity:0.7;
}

.stars {
  color: #f4c150;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Center slide focus */
.swiper-slide-active .testimonial-card,
.swiper-slide-next .testimonial-card,
.swiper-slide-prev .testimonial-card {
  opacity: 0.7;
  transform: scale(0.95);
}

.swiper-slide-next .testimonial-card,
.swiper-slide-prev .testimonial-card {
  padding: 20px 15px;
  margin-top: 10px;
}
.swiper-slide-active .testimonial-card{
transform:rotate(0deg) scale(1.02);
box-shadow:0 20px 40px rgba(235, 143, 143, 0.2);
}
.testimonial-card:hover{
transform:translateY(-6px) rotate(0deg);
box-shadow:0 22px 45px rgba(235, 143, 143,0.22);
}
/* Mobile */
@media (max-width: 767px) {
  .testimonial-card {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== Testimonials Theme Polish ===== */

.testimonial-card {
  background: rgba(248, 78, 78, 0.08); /* light theme tint */
  border: 2px solid rgba(216, 71, 71, 0.25); /* dark theme border */
  padding: 32px 26px;
  border-radius: 16px;
  text-align: center;
  opacity: 0.6;
  transform: scale(0.92);
  transition: all 0.4s ease;
}

/* Hover effect */
.testimonial-card:hover {
  background: rgba(190, 82, 82, 0.14);
  transform: translateY(-6px) scale(0.98);
  box-shadow: 0 16px 40px rgba(74, 45, 45, 0.15);
}

.testimonial-card {
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* Gentle magnetic pull */
.testimonial-card:hover {
  transform: translateY(-4px) scale(0.985);
  box-shadow: 0 18px 38px rgba(74, 45, 45, 0.16);
}

/* Focused center testimonial */
.swiper-slide-active .testimonial-card {
  background: rgba(247, 209, 209, 0.18);
  border-color: var(--theme-font-color);
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 22px 45px rgba(74, 45, 45, 0.2);
}

/* Image */
.testimonial-card img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 3px solid var(--theme-white);
  margin-bottom: 16px;
}

/* Text */
.testimonial-card p {
  font-size: 1.5rem;
  color: var(--theme-font-color);
  margin-bottom: 14px;
  line-height: 1.6;
}

.testimonial-card h6 {
  font-weight: 600;
  color: var(--theme-font-color);
}

.testimonial-card span {
  font-size: 0.85rem;
  color: var(--theme-font-liter);
}

/* Stars */
.stars i.filled {
  color: #f4c150;
}

.testimonial-card:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

@media (max-width: 767px) {
  .testimonial-card {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes softGlow {
  0% {
    box-shadow: 0 0 0 rgba(143, 181, 95, 0.25);
  }
  50% {
    box-shadow: 0 0 26px rgba(143, 181, 95, 0.35);
  }
  100% {
    box-shadow: 0 0 0 rgba(143, 181, 95, 0.25);
  }
}

.swiper-slide-active .testimonial-card {
  animation: softGlow 4.5s ease-in-out infinite;
}

.testimonial-card {
  opacity: 0.75;
  transform: scale(0.96);
}

.swiper-slide-active .testimonial-card {
  opacity: 1;
  transform: scale(1);
}

.testimonial-card {
  background: linear-gradient(
    180deg,
    rgba(250, 241, 241, 0.1),
    rgba(250, 241, 241, 0.04)
  );
  border: 1.5px solid rgba(74, 45, 45, 0.28);
}

.testimonial-card img {
  transition: transform 0.4s ease;
}

.testimonial-card:hover img {
  transform: scale(1.04);
}

.testimonial-card {
  border: 5px solid rgba(237, 69, 69, 0.45);
  border-radius: 0px; /* sharp, not round */
  padding: 34px 28px;
  text-align: center;
  opacity: 0.65;
  transform: scale(0.96);
  transition: all 0.45s ease;
}

@keyframes centerAOS {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.swiper-slide-active .testimonial-card {
  opacity: 1;
  transform: scale(1);
  border-color: var(--theme-color);
  box-shadow: 0 18px 42px rgb(207, 84, 84);
  animation: centerAOS 0.7s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(167, 208, 255, 0.18);
}
.swiper-slide {
  cursor: pointer;
}
.testimonial-floating i{
position:absolute;
font-size:80px;
opacity:0.08;
color:var(--theme-color);
z-index:1;
animation:floatSchool 7s ease-in-out infinite;
}

/* positions */

.testimonial-floating i:nth-child(1){
top:80px;
left:6%;
}

.testimonial-floating i:nth-child(2){
bottom:120px;
left:12%;
animation-delay:2s;
}

.testimonial-floating i:nth-child(3){
top:120px;
right:8%;
animation-delay:3s;
}

.testimonial-floating i:nth-child(4){
bottom:100px;
right:14%;
animation-delay:1s;
}

/* animation */

@keyframes floatSchool{
0%{transform:translateY(0)}
50%{transform:translateY(-22px)}
100%{transform:translateY(0)}
}
/* ===== Footer ===== */
.site-footer {
  background: var(--theme-footer-background);
  padding: 70px 0 30px;
  color: var(--theme-color-light);
}

.footer-title {
  color: var(--theme-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--theme-color);
  display: block;
  margin-top: 8px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--theme-color-light);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--theme-color-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--theme-color);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--theme-white);
  margin-top: 4px;
}

.footer-contact a {
  color: var(--theme-color-light);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--theme-color);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
  color: var(--theme-color-light);
}

/* Offset anchor scroll for fixed header */
section {
  scroll-margin-top: 80px; /* adjust to your header height */
}

.contact-section {
  background: var(----theme-section-background);
}

/* Map */
.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 14px;
}

/* Card */
.contact-card {
  background: var(--theme-white);
  padding: 30px;
  border-radius: 14px;
  border-left: 6px solid var(--theme-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Title */
.section-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f172a;
}

/* Doctor */
.doctor-name {
  font-weight: 700;
  color: var(--theme-color);
}

.designation {
  color: #64748b;
  margin-bottom: 20px;
}

/* Info */
.contact-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
}

.contact-info i {
  color: var(--theme-color);
  font-size: 18px;
  padding-top: 3px;
}

.contact-info a {
  text-decoration: none;
  color: inherit;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 24px;
  background: var(--theme-white);
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(51, 134, 243, 0.6);
}

.map-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.map-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 16px;
  background: linear-gradient(
    120deg,
    var(--theme-color),
    var(--theme-font-liter),
    var(--theme-color)
  );
  animation: glowMove 4s linear infinite;
  -webkit-mask:
    linear-gradient(var(--theme-white) 0 0) content-box,
    linear-gradient(var(--theme-white) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes glowMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--theme-color);
  color: var(--theme-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 0 0 rgba(167, 208, 255, 0.6);
  animation: pulseGlow 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12) rotate(5deg);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(167, 208, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(167, 208, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(167, 208, 255, 0);
  }
}

.section-heading {
  margin-bottom: 48px;
}

.section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--theme-color);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #1f2937; /* dark gray, eye-friendly */
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

/* Hide top header row on mobile */
@media (max-width: 991px) {
  .header-row-1 {
    display: none;
  }

  section {
    scroll-margin-top: 50px; /* adjust to your header height */
  }

  .mobile-logo {
    height: 55px;
  }

  body {
    padding-top: 90px; /* adjust for smaller header */
  }
}

.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 25px; /* stacked above WhatsApp */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--theme-color);
  color: var(--theme-white);
  border: none;
  box-shadow: 0 10px 25px rgb(66 154 245 / 56%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s ease;
  z-index: 9999;
}

/* Show state */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover */
.back-to-top:hover {
  /* background: #6eaffa; */
  box-shadow: 0 15px 35px rgb(66 154 245 / 56%);
  transform: translateY(-4px);
}

/* Mobile fine-tune */
@media (max-width: 768px) {
  .back-to-top {
    left: 14px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

/* FAQ Section */
.faq-section {
  background: var(--theme-color-light);
}

.faq-accordion .accordion-item {
  background: var(--theme-white);
  border: 1px solid rgba(47, 191, 113, 0.2);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--theme-font-color);
  background: var(--theme-white);
  padding: 18px 22px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--theme-color);
  color: var(--theme-white);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--theme-color);
}

.faq-accordion .accordion-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  padding: 20px 22px;
}

/* ================= GALLERY ================= */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover zoom */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay icon */
.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  background: rgba(165, 72, 72, 0.8);
  color: var(--theme-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;

  /* IMPORTANT */
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ================= LIGHTBOX ================= */

#galleryLightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

#galleryLightbox.show {
  opacity: 1;
  visibility: visible;
}

#galleryLightbox img {
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Close button */
.close-lightbox {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  color: var(--theme-white);
  cursor: pointer;
}

/* ===== Top Bar ===== */
#topBar {
  background: var(--theme-color);
  color: var(--theme-white);
  font-size: 14px;
  padding: 6px 0;
  /* position: fixed; */
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: transform 0.4s ease;
}

/* Hide on scroll */
#topBar.hide {
  transform: translateY(-100%);
}

#topBar a {
  color: var(--theme-white);
  text-decoration: none;
  margin-right: 12px;
  transition: 0.3s;
}

#topBar a:hover {
  color: var(--theme-color-soft);
}

.top-right a {
  margin-left: 12px;
  font-size: 15px;
}

#siteHeader.shrink > #topBar {
  display: none;
}

/* Mobile Adjust */
@media (max-width: 768px) {
  #topBar {
    font-size: 12px;
    display: none;
  }

  .top-left span {
    display: none;
  }
}

/* ===== Dental Focus Section ===== */

.dental-focus-section {
  background: var(--theme-color-light);
  padding: 80px 0;
}

.dental-focus-section .section-title h2 {
  font-weight: 700;
  color: var(--theme-color);
}

.dental-focus-section .section-title p {
  color: #555;
  max-width: 600px;
  margin: auto;
}

/* Center Image */

.focus-image {
  width: 350px;
  height: 350px;
  margin: auto;
  background: var(--theme-white);
  border-radius: 50%;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.focus-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Points */

.focus-point {
  background: var(--theme-white);
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.focus-point:hover {
  transform: translateY(-5px);
}

.focus-point i {
  font-size: 26px;
  color: var(--theme-color);
  margin-bottom: 8px;
}

.focus-point h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--theme-color);
}

.focus-point p {
  font-size: 14px;
  margin: 0;
  color: #666;
}

/* Alignments */

.focus-point.left {
  text-align: right;
}

.focus-point.right {
  text-align: left;
}

/* Mobile */

@media (max-width: 768px) {
  .focus-point.left,
  .focus-point.right {
    text-align: center;
  }

  .focus-image {
    width: 220px;
    height: 220px;
    margin: 40px auto;
  }
}

/* ------------------------------------------------- */
/* =========================
   BENEFITS SECTION
========================= */

.benefits-section {
  padding: 80px 0 0 0;
  background: var(--theme-white);
}

.section-head {
  margin-bottom: 50px;
}

.section-subtitle {
  color: var(--theme-color);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--theme-font-color);
}

/* card */

.benefit-card {
  height: 260px;
  border-radius: 14px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  overflow: hidden;

  display: flex;
  align-items: flex-end;

  transition: 0.4s;

  opacity: 0;
  transform: translateY(40px);
}

/* scroll animation */

.benefit-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* overlay */

.benefit-overlay {
  width: 100%;
  padding: 20px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));

  color: var(--theme-white);
}

/* title */

.benefit-overlay h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

/* hover */

.benefit-card:hover {
  transform: scale(1.05);
}

/* responsive */

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .benefit-card {
    height: 220px;
  }
}
/* =========================
   FLOATING SYMBOLS
========================= */
/* 

.floating-symbols {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99;
}


.floating-symbols span {
  position: absolute;
  font-size: 48px;
  font-weight: bold;
  color: var(--theme-color);
  opacity: 0.25;
  animation: floatUp linear infinite;
}

.left:nth-child(1) {
  left: 5%;
  top: 10%;
  animation-duration: 20s;
}
.left:nth-child(2) {
  left: 8%;
  top: 20%;
  animation-duration: 24s;
}
.left:nth-child(3) {
  left: 2%;
  top: 30%;
  animation-duration: 18s;
}
.left:nth-child(4) {
  left: 5%;
  top: 40%;
  animation-duration: 22s;
}
.left:nth-child(5) {
  left: 8%;
  top: 50%;
  animation-duration: 21s;
}
.left:nth-child(6) {
  left: 10%;
  top: 60%;
  animation-duration: 23s;
}
.left:nth-child(7) {
  left: 11%;
  top: 70%;
  animation-duration: 19s;
}
.left:nth-child(8) {
  left: 10%;
  top: 80%;
  animation-duration: 25s;
}
.left:nth-child(9) {
  left: 6%;
  top: 85%;
  animation-duration: 20s;
}
.left:nth-child(10) {
  left: 10%;
  top: 90%;
  animation-duration: 22s;
}


.right:nth-child(11) {
  left: 88%;
  top: 10%;
  animation-duration: 21s;
}
.right:nth-child(12) {
  left: 92%;
  top: 20%;
  animation-duration: 24s;
}
.right:nth-child(13) {
  left: 95%;
  top: 30%;
  animation-duration: 19s;
}
.right:nth-child(14) {
  left: 98%;
  top: 40%;
  animation-duration: 23s;
}
.right:nth-child(15) {
  left: 90%;
  top: 50%;
  animation-duration: 20s;
}
.right:nth-child(16) {
  left: 93%;
  top: 60%;
  animation-duration: 22s;
}
.right:nth-child(17) {
  left: 96%;
  top: 70%;
  animation-duration: 25s;
}
.right:nth-child(18) {
  left: 85%;
  top: 80%;
  animation-duration: 18s;
}
.right:nth-child(19) {
  left: 87%;
  top: 85%;
  animation-duration: 21s;
}
.right:nth-child(20) {
  left: 92%;
  top: 90%;
  animation-duration: 24s;
}


@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-120vh) rotate(360deg);
  }
} */
/* ======================
DIRECTOR SECTION
====================== */

.director-section {
  background: var(--theme-color-light);
  padding: 60px 20px 200px;
  position: relative;
  overflow: hidden;
}

/* Glass Card */

.director-card {
  position: relative;
  max-width: 1000px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Circular Image */

.director-image {
  flex-shrink: 0;
}

.director-image img {
  width: 220px;
  /* height:220px; */
  object-fit: cover;
  /* border-radius:50%; */
  border: 6px solid white;

  box-shadow:
    0 0 0 6px rgba(255, 123, 84, 0.2),
    0 0 25px rgba(255, 123, 84, 0.5);
}

/* Content */

.director-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.director-content p {
  line-height: 1.7;
}

/* Quote */

.director-quote {
  font-style: italic;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.director-quote::before {
  content: "“";
  font-size: 40px;
  color: #ff7b54;
  position: absolute;
  left: -10px;
  top: -10px;
}

/* Signature */

.director-signature {
  margin-top: 25px;
}

.director-signature img {
  height: 50px;
}

.director-signature p {
  font-weight: 600;
  margin-top: 5px;
}

/* Floating Icons */

.edu-icon {
  position: absolute;
  font-size: 40px;
  opacity: 0.6;
  animation: floatIcon 6s ease-in-out infinite;
}

.icon-book {
  top: -20px;
  left: 40px;
}

.icon-cap {
  top: 30px;
  right: -20px;
}

.icon-pencil {
  bottom: -20px;
  left: 60%;
}

/* Floating Animation */

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Wave Divider */

.director-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.director-wave svg {
  width: 100%;
  height: 100px;
  display: block;
  transform: rotate(180deg);
}
.director-wave-white svg {
  margin-top: 60px;
  width: 100%;
  height: 100px;
  display: block;
  transform: rotate(180deg);
}
/* Mobile */

@media (max-width: 900px) {
  .director-card {
    flex-direction: column;
    text-align: center;
  }

  .director-image img {
    width: 180px;
  }
}

.programs-section {
  background: white;
  padding: 60px 0 0 0;
  position: relative;
  overflow: hidden;
}

/* floating shapes */

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.shape1 {
  width: 120px;
  height: 120px;
  background: #ff7b54;
  top: 40px;
  left: 80px;
}

.shape2 {
  width: 90px;
  height: 90px;
  background: #4dabf7;
  bottom: 70px;
  right: 120px;
}

.shape3 {
  width: 70px;
  height: 70px;
  background: #ffd43b;
  top: 200px;
  right: 200px;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* header */

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 36px;
}

/* slider */
.program-slider-wrapper {
  position: relative;
}

.program-slider {
  padding: 0 10px;
  overflow: hidden;
}

.program-track {
  padding-top: 20px;
  display: flex;
  gap: 30px;
  cursor: grab;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* card */

.program-card {
  min-width: calc(25% - 22px);
  padding: 0 0 30px 0;
  border-radius: 20px;
  text-align: center;
  /* background:linear-gradient(180deg,#ffffff,#f8f8f8); */
  background: linear-gradient(180deg, #ffede6, #fff);
  border: 2px solid #eee;
  position: relative;
  transition: 0.3s;
}

.program-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(180deg, #fff, #ffede6);
  border-color: var(--theme-color-light);
}

/* icon */

.program-icon {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 100%;
  height: 160px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  box-shadow: none;
  margin-bottom: 20px;
}

.program-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* text */

.program-card h3 {
  margin-top: 20px;
  font-size: 20px;
}

.program-card span {
  color: #777;
  display: block;
  margin-bottom: 10px;
}

.program-card p {
  font-size: 14px;
  line-height: 1.6;
}
.program-card h3,
.program-card span,
.program-card p {
  padding: 0 20px;
}

/* arrows */

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--theme-color-light);
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: -70px;
}
.next {
  right: -70px;
}

/* responsive */

@media (max-width: 1000px) {
  .program-card {
    min-width: 50%;
  }
}

@media (max-width: 600px) {
  .program-card {
    min-width: 100%;
  }
}

.stats-section {
  background: var(--theme-color-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* stat layout */

.stat-box {
  text-align: center;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 1px;
  height: 60%;
  background: rgba(0, 0, 0, 0.15);
}

/* icon */

.stat-icon {
  font-size: 60px;
  margin-bottom: 10px;
  transition: 0.6s;
}

.stat-inner:hover .stat-icon {
  transform: rotateY(180deg);
}

/* numbers */

.stat-box h2 {
  font-size: 60px;
  font-weight: 700;
  margin: 10px 0;
}

.stat-box p {
  font-size: 18px;
  margin: 0;
}

/* floating icons */

.floating-icon {
  position: absolute;
  font-size: 70px;
  opacity: 0.15;
  animation: floatIcon 6s ease-in-out infinite;
}

.icon1 {
  top: 40px;
  left: 100px;
}
.icon2 {
  bottom: 60px;
  right: 120px;
}
.icon3 {
  top: 120px;
  right: 200px;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* responsive */

@media (max-width: 992px) {
  .stat-box::after {
    display: none;
  }

  .stat-box {
    margin-bottom: 40px;
  }
}



/* GRID */

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* GLASS CARD */

.pdf-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);

  color:var(--theme-font-color);
  text-decoration: none;

  position: relative;
  overflow: hidden;
  transition: 0.35s;
}

/* ripple effect */

.pdf-card::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.6s;
}

.pdf-card:hover::before {
  width: 500px;
  height: 500px;
}

/* hover */

.pdf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* icon */

.pdf-icon i {
  font-size: 42px;
  color: #ff4b4b;
}

/* info */
.pdf-info {
    text-align: left;
}
.pdf-info h4 {
  margin: 0;
  font-size: 18px;
}

.file-size {
  font-size: 13px;
  opacity: 0.8;
}

/* download button */

.download-btn {
  margin-left: auto;
  font-size: 20px;
  background: white;
  color: #444;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.pdf-card:hover .download-btn {
  background: var(--theme-color);
  color: white;
  transform: scale(1.15);
}

/* floating paper planes */

.plane {
  position: absolute;
  font-size: 80px;
  opacity: 0.2;
  animation: planeFloat 8s linear infinite;
  z-index: 1;
}

.plane1 {
  top: 120px;
  left: 10px;
}

.plane2 {
  bottom: 120px;
  right: 0px;
  animation-delay: 2s;
}

.plane3 {
  top: 150px;
  right: 200px;
  animation-delay: 4s;
}

@keyframes planeFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(10deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* wave */




.promise-belt .section-subtitle {
  color: var(--theme-white);
}

.promise-belt .section-title {
  color: var(--theme-white);
}

.promise-belt .section-desc {
  color: var(--theme-white);
}


/* waves */

.wave-top,
.wave-bottom{
position:absolute;
left:0;
width:100%;
line-height:0;
z-index:2;
}

.wave-top{
top:-1px;
}

.wave-bottom{
  bottom:-1px;
  transform: rotate(180deg);
}

.wave-top svg,
.wave-bottom svg{
width:100%;
height:100px;
display:block;
}

.faq-section{
position:relative;
padding:60px 0 160px 0;
background:var(--theme-color-light);
overflow:hidden;
}

/* floating icons */

.faq-bg-icons i{
position:absolute;
font-size:80px;
opacity:0.05;
animation:floatIcon 8s ease-in-out infinite;
}

.faq-bg-icons i:nth-child(1){top:80px; left:8%;}
.faq-bg-icons i:nth-child(2){bottom:120px; left:12%;}
.faq-bg-icons i:nth-child(3){top:120px; right:10%;}
.faq-bg-icons i:nth-child(4){bottom:80px; right:15%;}

@keyframes floatIcon{
0%{transform:translateY(0)}
50%{transform:translateY(-25px)}
100%{transform:translateY(0)}
}

/* accordion */

.faq-accordion .accordion-item{
border:none;
margin-bottom:15px;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* question */

.faq-accordion .accordion-button{
font-weight:600;
padding:18px 20px;
background:white;
transition:.3s;
}

.faq-accordion .accordion-button:not(.collapsed){
background:var(--theme-color);
color:white;
}

/* icon */

.faq-icon{
margin-right:10px;
font-size:18px;
color:var(--theme-color);
}

.accordion-button:not(.collapsed) .faq-icon{
color:white;
}

/* answer */

.faq-accordion .accordion-body{
background:#fff;
padding:20px;
line-height:1.6;
}

/* CTA */

.faq-contact h4{
font-weight:700;
margin-bottom:10px;
}

.faq-btn{
background:var(--theme-color);
color:white;
padding:12px 30px;
border-radius:30px;
font-weight:600;
transition:.3s;
}

.faq-btn:hover{
background:#333;
color:white;
}


.admission-btn{
background:var(--theme-color);
color:#fff;
padding:8px 20px;
border-radius:25px;
font-weight:600;
transition:all .3s ease;
position:relative;
}

/* Glow animation */

@keyframes admissionPulse{
0%{
box-shadow:0 0 0 0 rgba(255, 90, 90, 0.6);
}

70%{
box-shadow:0 0 0 14px rgba(255, 90, 90, 0);
}

100%{
box-shadow:0 0 0 0 rgba(255, 90, 90, 0);
}
}

/* Active glowing state */

.admission-btn.glow{
animation:admissionPulse 2s infinite;
}

/* hover */

.admission-btn:hover{
background:var(--theme-color-light);
color:var(--theme-font-color);
border: 1px solid var(--theme-color);
}

.site-footer{
position:relative;
overflow:hidden;
}

.footer-floating-icons i{
position:absolute;
font-size:70px;
color:rgba(255,255,255,0.08);
animation:footerFloat 14s linear infinite;
}

.footer-floating-icons i:nth-child(1){ left:10%; top:80%; animation-delay:0s;}
.footer-floating-icons i:nth-child(2){ left:30%; top:90%; animation-delay:3s;}
.footer-floating-icons i:nth-child(3){ left:55%; top:85%; animation-delay:6s;}
.footer-floating-icons i:nth-child(4){ left:75%; top:95%; animation-delay:2s;}
.footer-floating-icons i:nth-child(5){ left:90%; top:88%; animation-delay:4s;}

@keyframes footerFloat{
0%{ transform:translateY(0); opacity:0;}
20%{ opacity:1;}
100%{ transform:translateY(-200px); opacity:0;}
}

.footer-social a{
display:inline-flex;
align-items:center;
justify-content:center;
width:38px;
height:38px;
border-radius:50%;
background:#ffffff10;
color:#fff;
margin-right:10px;
transition:.4s;
}
.footer-social a i{
margin: 0px;
}

.footer-social a:hover{
background:var(--theme-color);
box-shadow:0 0 15px var(--theme-color);
transform:translateY(-4px);
}



/* PAGE BANNER */

.page-banner{
position:relative;
background:url('../images/contact-banner.jpg') center/cover no-repeat;
height:300px;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
}

.banner-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.55);
}

.banner-content{
position:relative;
z-index:2;
}

.banner-content h1{
font-size:42px;
font-weight:700;
}

.banner-content p{
max-width:600px;
margin:auto;
font-size:16px;
}


/* CONTACT PAGE */

.contact-page{
padding:70px 0;
}

.contact-details h3{
font-size:28px;
margin-bottom:10px;
}

.contact-details h5{
font-weight:600;
margin-bottom:5px;
}

.contact-details ul{
list-style:none;
padding:0;
margin-top:20px;
}

.contact-details ul li{
margin-bottom:15px;
display:flex;
gap:12px;
align-items:flex-start;
font-size:15px;
}

.contact-details i{
color:var(--theme-color);
font-size:18px;
margin-top:4px;
}

.banner-floating-icons i{
position:absolute;
font-size:60px;
color:rgba(255,255,255,0.15);
animation:bannerFloat 12s linear infinite;
}

.banner-floating-icons i:nth-child(1){left:15%; top:80%; animation-delay:0s;}
.banner-floating-icons i:nth-child(2){left:35%; top:85%; animation-delay:3s;}
.banner-floating-icons i:nth-child(3){left:65%; top:75%; animation-delay:5s;}
.banner-floating-icons i:nth-child(4){left:85%; top:90%; animation-delay:2s;}

@keyframes bannerFloat{
0%{transform:translateY(0); opacity:0;}
20%{opacity:1;}
100%{transform:translateY(-180px); opacity:0;}
}

.contact-cards{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.contact-card{
background:rgba(255,255,255,0.15);
backdrop-filter:blur(10px);
border-radius:12px;
padding:25px;
text-align:center;
transition:.3s;
}

.contact-card i{
font-size:32px;
color:var(--theme-color);
margin-bottom:10px;
}

.contact-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}
.map-pin{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
font-size:40px;
color:red;
animation:pinBounce 1.5s infinite;
}

@keyframes pinBounce{
0%,100%{transform:translate(-50%,-50%);}
50%{transform:translate(-50%,-60%);}
}
.map-wrapper{
position:relative;
}
.contact-intro{
padding:70px 0 40px;
}

.contact-section-title{
font-size:36px;
font-weight:700;
margin-bottom:15px;
color:#222;
}

.contact-section-description{
max-width:750px;
margin:auto;
font-size:16px;
line-height:1.7;
color:#555;
}


.banner-title{
font-size:42px;
font-weight:700;
margin-bottom:10px;
}

.banner-description{
max-width:600px;
margin:auto;
font-size:16px;
opacity:0.9;
}

.banner-breadcrumb{
margin-top:12px;
font-size:14px;
}

.banner-breadcrumb a{
color:#fff;
text-decoration:none;
}

.banner-breadcrumb span{
opacity:0.8;
}

.section-title{
font-size:34px;
font-weight:700;
margin-bottom:15px;
}

.section-description{
max-width:720px;
margin:auto;
line-height:1.7;
color:#555;
}

.admission-form-section{
background:#f9f9f9;
padding:80px 0;
}

.admission-form-box{
background:rgba(255,255,255,0.6);
backdrop-filter:blur(10px);
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
text-align:center;
}

.form-title{
font-size:30px;
font-weight:700;
margin-bottom:10px;
}

.form-subtitle{
font-size:15px;
color:#666;
margin-bottom:30px;
}

.form-group{
margin-bottom:15px;
}

.form-group input,
.form-group textarea{
width:100%;
padding:12px 14px;
border-radius:6px;
border:1px solid #ddd;
outline:none;
font-size:14px;
}

.connect-btn{
background:#25D366;
color:#fff;
padding:12px 25px;
border:none;
border-radius:30px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.connect-btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}
.admission-badge{
display:inline-block;
background:var(--theme-color);
color:#fff;
padding:6px 16px;
border-radius:20px;
font-size:14px;
margin-bottom:15px;
animation:badgePulse 2s infinite;
}

@keyframes badgePulse{
0%{box-shadow:0 0 0 0 rgba(0,0,0,0.2);}
70%{box-shadow:0 0 0 12px rgba(0,0,0,0);}
100%{box-shadow:0 0 0 0 rgba(0,0,0,0);}
}