/* =========================================
   DOLPHIN SWIMMING COACHING INSTITUTE
   Custom Stylesheet
   ========================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Nunito:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary: #0a3d6b;
  --primary-light: #1565a0;
  --secondary: #00b4d8;
  --accent: #f0a500;
  --accent-light: #ffc107;
  --dark: #0d1b2a;
  --light: #f0f8ff;
  --white: #ffffff;
  --gray: #6c757d;
  --light-gray: #f5f5f5;
  --text: #2d2d2d;
  --border: rgba(0, 180, 216, 0.2);
  --shadow: 0 8px 32px rgba(10, 61, 107, 0.12);
  --shadow-hover: 0 16px 48px rgba(10, 61, 107, 0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Nunito', sans-serif;
}

/* ---- Base Styles ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---- Section Common ---- */
section {
  padding: 80px 0;
}

/* Hero section has no padding - carousel fills edge to edge */
#hero {
  padding: 0;
  margin: 0;
  line-height: 0;
  font-size: 0;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(10, 61, 107, 0.1));
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(0, 180, 216, 0.3);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 14px;
  position: relative;
}

.section-title span {
  color: var(--secondary);
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
  margin: 0 auto 20px;
}

.section-divider.left {
  margin: 0 0 20px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle.left {
  margin: 0;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--secondary), var(--primary-light));
  color: var(--white);
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 180, 216, 0.5);
  color: var(--white);
}

.btn-accent-custom {
  background: linear-gradient(135deg, var(--accent), #e69500);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(240, 165, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-accent-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 165, 0, 0.5);
  color: var(--white);
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 12px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ==============================
   TOP BAR
   ============================== */
#topbar {
  background: linear-gradient(135deg, var(--dark), var(--primary));
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  font-weight: 500;
}

#topbar a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

#topbar a:hover {
  color: var(--accent);
}

.topbar-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.topbar-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar-info i {
  color: var(--secondary);
  font-size: 0.9rem;
}

.topbar-social {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
}

.topbar-social a:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ==============================
   HEADER / NAVBAR
   ============================== */
#mainHeader {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10, 61, 107, 0.1);
  transition: var(--transition);
  z-index: 999;
}

#mainHeader.sticky-top {
  position: sticky;
  top: 0;
}

#mainHeader.scrolled {
  box-shadow: 0 4px 30px rgba(10, 61, 107, 0.18);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logos {
  width: 100%;
  height: 80px;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--secondary) !important;
  background: rgba(0, 180, 216, 0.07);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link.active {
  color: var(--secondary) !important;
}

.navbar-toggler {
  border: 2px solid var(--secondary);
  border-radius: 8px;
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230a3d6b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==============================
   HERO CAROUSEL
   ============================== */
#heroCarousel {
  position: relative;
  overflow: hidden;
  display: block;
  line-height: 0;
  font-size: 0;
}

.carousel-item {
  height: 620px;
  position: relative;
  line-height: 0;
  font-size: 0;
}

@media (max-width: 768px) {
  .carousel-item {
    height: 420px;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    height: 340px;
  }
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.78) 0%, rgba(1, 50, 59, 0.3));
}

.carousel-caption-custom {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 60px;
  max-width: 700px;
}

@media (max-width: 768px) {
  .carousel-caption-custom {
    padding: 0 24px;
  }
}

.carousel-caption-custom .badge-text {
  background: rgba(0, 180, 216, 0.25);
  border: 1px solid rgba(0, 180, 216, 0.5);
  color: var(--secondary);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 14px;
  display: inline-block;
  animation: fadeDown 0.7s ease both;
}

.carousel-caption-custom h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease 0.15s both;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.carousel-caption-custom h1 span {
  color: var(--accent);
}

.carousel-caption-custom p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.3s both;
  max-width: 500px;
}

.carousel-caption-custom .btn-group-hero {
  animation: fadeUp 0.8s ease 0.45s both;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: var(--transition);
}

.carousel-indicators .active {
  background: var(--accent);
  transform: scale(1.3);
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

/* ==============================
   MARQUEE
   ============================== */
.marquee-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0 32px;
  letter-spacing: 0.5px;
}

.marquee-item i {
  color: var(--accent);
  font-size: 1rem;
}

.marquee-item .sep {
  color: var(--secondary);
  margin-left: 10px;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ==============================
   ABOUT US
   ============================== */
#about {
  background: var(--light);
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.about-img-wrap:hover img {
  transform: scale(1.04);
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 120px;
}

.about-badge-float .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.about-badge-float .lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(10, 61, 107, 0.06);
  margin-bottom: 14px;
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: var(--secondary);
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(10, 61, 107, 0.1));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.1rem;
}

.about-feature-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--primary);
}

.about-feature-text p {
  font-size: 0.82rem;
  color: var(--gray);
  margin: 0;
}

/* ==============================
   FEE & TIMING SECTION
   ============================== */
#fee-timing {
  background: linear-gradient(135deg, var(--primary) 0%, #0d2b4e 100%);
}

.fee-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.fee-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.fee-card h4 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fee-card h4 i {
  color: var(--secondary);
}

.fee-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.fee-table td {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  padding: 10px 14px;
}

.fee-table tr td:first-child {
  font-weight: 600;
}

.fee-table tr td:last-child {
  color: var(--accent);
  font-weight: 700;
  text-align: right;
}

.fee-table tr {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.fee-table td:first-child {
  border-radius: 8px 0 0 8px;
}

.fee-table td:last-child {
  border-radius: 0 8px 8px 0;
}

.timing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-left: 3px solid var(--secondary);
}

.timing-row .t-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 600;
}

.timing-row .t-time {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.fee-note {
  background: rgba(240, 165, 0, 0.12);
  border: 1px solid rgba(240, 165, 0, 0.3);
  border-radius: 10px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  margin-top: 16px;
  line-height: 1.6;
}

.fee-note strong {
  color: var(--accent);
}

/* ==============================
   SERVICES
   ============================== */
#services {
  background: var(--white);
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.13);
}

.service-num {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--white);
}

.service-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(10, 61, 107, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 14px;
  border: 1px solid var(--border);
}

.service-body h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.service-body p {
  color: var(--gray);
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: 16px;
}

/* ==============================
   COUNTER SECTION
   ============================== */
#counter {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

#counter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-item {
  text-align: center;
  position: relative;
  padding: 24px 16px;
}

.counter-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.counter-item:last-child::after {
  display: none;
}

.counter-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.counter-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.counter-num .suffix {
  font-size: 2rem;
}

.counter-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 6px;
}

/* ==============================
   POPULAR COURSES
   ============================== */
#courses {
  background: var(--light);
}

.course-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
  height: 100%;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.course-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.course-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-img-wrap img {
  transform: scale(1.07);
}

.course-level-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
}

.course-body {
  padding: 22px;
}

.course-body h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.course-instructor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.instructor-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.instructor-info {
  line-height: 1.2;
}

.instructor-info .name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.instructor-info .role {
  font-size: 0.75rem;
  color: var(--gray);
}

.course-meta {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 600;
}

.course-meta-item i {
  color: var(--secondary);
}

/* ==============================
   COACHES
   ============================== */

   /* Card */
.coach-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  border: 1px solid #cce7f0;
}

/* Top Area (Image Replace Area) */
.coach-img-wrap {
  position: relative;
  height: 260px;
  background: linear-gradient(to bottom, #eaeaea, #2c5d85);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON PERFECT CENTER */
.coach-icon {
  font-size: 70px;
  color: #333;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}

/* Overlay Text */
.coach-overlay {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.coach-overlay h4 {
  margin: 0;
  font-weight: 600;
}

.coach-overlay span {
  font-size: 14px;
  color: #00d1ff;
}




#coaches {
  background: var(--white);
}

.coach-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
  text-align: center;
}

.coach-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.coach-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.coach-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.coach-card:hover .coach-img-wrap img {
  transform: scale(1.06);
}

.coach-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 61, 107, 0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.coach-overlay h4 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
}

.coach-overlay span {
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 600;
}

.coach-body {
  padding: 18px 20px;
}

.coach-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.coach-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.85rem;
  transition: var(--transition);
}

.coach-social a:hover {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.1);
}

.coach-stat {
  font-size: 0.82rem;
  color: var(--gray);
}

.coach-stat strong {
  color: var(--primary);
}

/* ==============================
   WHY CHOOSE US
   ============================== */
#why-us {
  background: var(--light);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(10, 61, 107, 0.07);
  transition: var(--transition);
  height: 100%;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  position: relative;
}

.why-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.18), rgba(10, 61, 107, 0.08));
  border: 2px solid rgba(0, 180, 216, 0.25);
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* ==============================
   GALLERY
   ============================== */
#gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(10, 61, 107, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 61, 107, 0.75), rgba(0, 180, 216, 0.5));
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Lightbox */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

/* ==============================
   TESTIMONIALS
   ============================== */
#testimonials {
  background: var(--light);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(0, 180, 216, 0.12);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.star-rating {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.author-info .name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
}

.author-info .batch {
  font-size: 0.78rem;
  color: var(--secondary);
  font-weight: 600;
}

/* ==============================
   CONTACT
   ============================== */
#contact {
  background: var(--white);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  height: 100%;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  font-size: 0.9rem;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-text .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-text .value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

.contact-info-text .value a {
  color: var(--accent);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
  outline: none;
}

.form-control::placeholder {
  color: #aaa;
}

/* ==============================
   FOOTER
   ============================== */

   .footer-logo{
    width: 70%;
    height: 120px;
    margin-bottom: 10px;
    border-radius: 12px;
   }

#footer {
  background: linear-gradient(180deg, var(--dark) 0%, #050e1a 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}

.footer-brand img {
  width: 70px;
  border-radius: 50%;
  border: 3px solid var(--secondary);
  margin-bottom: 14px;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0, 180, 216, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-heading i {
  color: var(--secondary);
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 6px;
  height: 2px;
  background: var(--secondary);
  border-radius: 1px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-links a:hover::before {
  width: 12px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  margin-top: 50px;
  padding: 18px 0;
  text-align: center;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom a {
  color: var(--secondary);
}

/* ==============================
   FLOATING BUTTONS
   ============================== */
.floating-btns {
  position: fixed;
  bottom: 30px;
  left: 22px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
}

.float-btn.whatsapp {
  background: #25d366;
  color: var(--white);
}

.float-btn.phone {
  background: var(--primary);
  color: var(--white);
}

.float-tooltip {
  position: absolute;
  right: 62px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: var(--transition);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==============================
   SCROLL TO TOP
   ============================== */
#scrollTop {
  position: fixed;
  bottom: 100px;
  right: 22px;
  z-index: 9991;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: none;
}

#scrollTop.visible {
  opacity: 1;
  pointer-events: all;
}

#scrollTop:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* ==============================
   ANIMATIONS
   ============================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

/* ==============================
   RESPONSIVE OVERRIDES
   ============================== */
@media (max-width: 991px) {
  section {
    padding: 60px 0;
	        overflow-x: hidden;
  }

  .navbar-collapse {
    background: var(--white);
    border-radius: var(--radius);
    padding: 10px;
    margin-top: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
  }

  .counter-item::after {
    display: none;
  }
}
@media (max-width: 768px) {
	.cu-mb-ds-nn{
		display:none!important
	}
	.cutx-cntr{
		text-align:CENTER;
		justify-content:CENTER!important;
	}
}
@media (max-width: 767px) {
  section {
    padding: 50px 0;
  }

  .topbar-info {
    gap: 10px;
    font-size: 0.78rem;
  }

  .topbar-social {
    justify-content: flex-start;
    margin-top: 6px;
  }

  .carousel-caption-custom {
    padding: 0 18px;
  }

  .gallery-grid {
    gap: 10px;
  }

  .contact-form-card {
    padding: 22px;
  }

  .contact-info-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .brand-text .brand-name {
    font-size: 0.88rem;
  }

  .carousel-caption-custom h1 {
    font-size: 1.5rem;
  }

  .btn-group-hero {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    width: fit-content;
  }
}