﻿/* ═══════════════════════════════════════════════════════════════
   INTEGRAL COACHING CENTRE — Custom Stylesheet
   Font: Poppins + Playfair Display (local)
   Color Scheme: Deep Purple / Gold / White
═══════════════════════════════════════════════════════════════ */

/* ─── Local Fonts ───────────────────────────────────────────── */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/poppins-300.woff2') format('woff2'),
       url('fonts/poppins-300.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/poppins-400.woff2') format('woff2'),
       url('fonts/poppins-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/poppins-500.woff2') format('woff2'),
       url('fonts/poppins-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/poppins-600.woff2') format('woff2'),
       url('fonts/poppins-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/poppins-700.woff2') format('woff2'),
       url('fonts/poppins-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/poppins-800.woff2') format('woff2'),
       url('fonts/poppins-800.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfair-700.woff2') format('woff2'),
       url('fonts/playfair-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/playfair-800.woff2') format('woff2'),
       url('fonts/playfair-800.ttf') format('truetype');
}

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:     #1490b8;
  --primary-dark:#0e7494;
  --accent:      #2BAACC;
  --gold:        #ffd700;
  --gold-dark:   #e6b800;
  --white:       #ffffff;
  --light-bg:    #f0f9fc;
  --text-dark:   #0d2b35;
  --text-muted:  #6b7280;
  --border-soft: rgba(20,144,184,.12);
  --shadow-card: 0 8px 32px rgba(20,144,184,.10);
  --shadow-hover:0 16px 48px rgba(20,144,184,.20);
  --radius:      16px;
  --radius-sm:   10px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

/* ─── Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
  max-width: 100vw;
}

a { text-decoration: none; transition: var(--transition); }

img { max-width: 100%; }

.section-padding { padding: 90px 0; }

/* ─── Utilities ─────────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fw-600 { font-weight: 600; }

/* ─── Section Tags & Titles ─────────────────────────────────── */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #e0f7fc, #b2ebf7);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
#mainNav {
  background: #ffffff;
  padding: 14px 0;
  box-shadow: 0 2px 16px rgba(20,144,184,.10);
  transition: background .4s, padding .4s, box-shadow .4s;
  z-index: 1050;
}

#mainNav.scrolled {
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(20,144,184,.18);
}

.brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), #ffae00);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--primary-dark);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255,215,0,.35);
}

.brand-icon.sm { width: 36px; height: 36px; font-size: 1rem; border-radius: 9px; }

.brand-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
  letter-spacing: .3px;
}

.brand-sub {
  display: block;
  font-size: .65rem;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-size: .9rem;
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { 
  color: var(--primary) !important; 
  background: rgba(20,144,184,.08); 
}

.btn-enroll {
  background: linear-gradient(135deg, var(--gold), #ffae00);
  color: var(--primary-dark) !important;
  font-weight: 700;
  font-size: .85rem;
  padding: 8px 20px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 14px rgba(255,215,0,.35);
  transition: var(--transition);
}

.btn-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,215,0,.45);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  /* Hero background image with deep purple gradient overlay */
  background:
    linear-gradient(
      145deg,
      rgba(52,30,117,.88) 0%,
      rgba(20,144,184,.82) 50%,
      rgba(108,78,208,.78) 100%
    ),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
  min-height: 100vh;
}

.hero-overlay {
  position: absolute; inset: 0;
  /* Subtle grid pattern on top of image */
  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.04'%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");
  pointer-events: none;
}

/* Animated floating orbs — clipped inside hero */
.hero-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,170,204,.25) 0%, transparent 70%);
  top: -80px; right: -80px;
  animation: floatOrb 8s ease-in-out infinite alternate;
  /* Keep inside viewport */
  max-width: 60vw; max-height: 60vw;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,.12) 0%, transparent 70%);
  bottom: 50px; left: -60px;
  animation: floatOrb 10s ease-in-out infinite alternate-reverse;
  max-width: 50vw; max-height: 50vw;
}

@keyframes floatOrb {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 30px) scale(1.1); }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,215,0,.15);
  border: 1px solid rgba(255,215,0,.35);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: .5px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #ffae00 50%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  max-width: 540px;
}

/* Stats */
.hero-stats { border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; }

.stat-item {
  display: flex; flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

/* Hero Buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), #ffae00);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  font-size: .95rem;
  box-shadow: 0 6px 20px rgba(255,215,0,.4);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255,215,0,.5);
  color: var(--primary-dark);
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.5);
  font-size: .95rem;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Floating Cards */
.hero-card-group {
  position: relative;
  width: 360px; height: 360px;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex; align-items: center; gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  white-space: nowrap;
  animation: cardFloat 3s ease-in-out infinite;
}

.floating-card i { font-size: 1.4rem; color: var(--gold); }
.floating-card.card-1 { top: 20px; left: 0; animation-delay: 0s; }
.floating-card.card-2 { top: 130px; right: 0; animation-delay: .5s; }
.floating-card.card-3 { bottom: 60px; left: 20px; animation-delay: 1s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-circle-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ffae00);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(255,215,0,.45);
  z-index: 2;
  text-align: center;
}

.circle-text {
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--primary-dark);
  line-height: 1.1;
}

.circle-sub {
  font-size: .6rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: .7px;
  margin-top: 4px;
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  line-height: 0;
  z-index: 3;
}

.hero-wave svg { display: block; width: 100%; }

/* ═══════════════════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════════════════ */
.ticker-wrap {
  width: 100%;
  max-width: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  overflow: hidden;
  padding: 12px 0;
  position: relative;
}

.ticker {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  gap: 60px;
}

.ticker span {
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  padding: 0 15px;
  white-space: nowrap;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════════ */
.about-img-section {
  position: relative;
  padding: 20px 20px 60px 20px;
  overflow: hidden;
}

/* Decorative background blobs */
.abt-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.abt-blob-1 {
  width: 320px; height: 320px;
  background: linear-gradient(135deg, #e0f7fc, #b2ebf7);
  top: 0; left: 0;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.abt-blob-2 {
  width: 180px; height: 180px;
  background: linear-gradient(135deg, #fff9e0, #ffedb0);
  bottom: 10px; right: 0;
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

/* Main photo frame */
.abt-photo-frame {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(20,144,184,.22);
  border: 5px solid #fff;
  /* slight tilt for style */
  transform: rotate(-1.5deg);
  transition: var(--transition);
}

.abt-photo-frame:hover {
  transform: rotate(0deg) scale(1.01);
  box-shadow: 0 28px 70px rgba(20,144,184,.28);
}

.abt-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Floating students-mentored badge (bottom-left) */
.abt-badge {
  position: absolute;
  bottom: 10px; left: 0;
  z-index: 4;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(20,144,184,.18);
  border: 1px solid var(--border-soft);
  animation: floatBadge 3s ease-in-out infinite;
}

.abt-badge i {
  font-size: 1.8rem;
  color: var(--primary);
  background: var(--light-bg);
  padding: 8px;
  border-radius: 10px;
  flex-shrink: 0;
}

.abt-badge-num {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.abt-badge-lbl {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Experience tag (top-right) */
.abt-exp-tag {
  position: absolute;
  top: 5px; right: 0;
  z-index: 4;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(20,144,184,.35);
  animation: floatBadge 3.5s ease-in-out infinite reverse;
}

.abt-exp-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.abt-exp-lbl {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin-top: 3px;
  line-height: 1.3;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Vision / Mission Cards */
.vision-card {
  background: var(--light-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px;
  height: 100%;
  transition: var(--transition);
}

.vision-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.vc-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.vc-icon.vision  { background: #e0f7fc; color: var(--primary); }
.vc-icon.mission { background: #d4f1f9; color: #0e7494; }

.vision-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.vision-card p  { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   PHILOSOPHY SECTION
═══════════════════════════════════════════════════════════════ */
.philosophy-section {
  background: linear-gradient(135deg, #f0f9fc 0%, #fff 100%);
}

.philosophy-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  height: 100%;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(20,144,184,.2);
}

.phi-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.phi-icon.phi-yellow { background: #fff9e0; color: #d97706; }
.phi-icon.phi-blue   { background: #e0f7fc; color: #1490b8; }
.phi-icon.phi-green  { background: #d4f1f9; color: #0e7494; }
.phi-icon.phi-purple { background: #e0f7fc; color: var(--primary); }

.philosophy-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.philosophy-card p  { font-size: .87rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════════════ */
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  /* Prevent ribbon from causing side scroll */
  contain: layout paint;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card-featured {
  border: 2px solid var(--primary);
  background: linear-gradient(160deg, #f0f9fc 0%, #fff 100%);
}

.featured-ribbon {
  position: absolute;
  top: 20px; right: -28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(45deg);
  letter-spacing: .5px;
  box-shadow: 0 2px 8px rgba(20,144,184,.3);
  overflow: hidden;
}

/* SC Header */
.sc-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}

.sc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.sc-school   .sc-icon { background: #e0f7fc; color: #1490b8; }
.sc-secondary .sc-icon { background: #e0f7fc; color: var(--primary); }
.sc-higher   .sc-icon { background: #fff8e0; color: #c8910a; }

.sc-header h4 { font-size: 1.1rem; font-weight: 700; margin: 0 0 3px; }
.sc-class { font-size: .8rem; color: var(--text-muted); font-weight: 500; }

/* Board Tags */
.sc-boards { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }

.board-tag {
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: .5px;
}

.board-tag.cbse  { background: #e0f7fc; color: #0e7494; }
.board-tag.icse  { background: #fff8e0; color: #b07800; }
.board-tag.ssc   { background: #d4f1f9; color: #1490b8; }
.board-tag.jee   { background: #e0f7fc; color: #1490b8; }
.board-tag.neet  { background: #fef3e0; color: #c8910a; }
.board-tag.cet   { background: #e0f7fc; color: #0e7494; }

/* Features */
.sc-features {
  list-style: none;
  padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 9px;
}

.sc-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .88rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.sc-features li .bi { color: #10b981; font-size: .9rem; margin-top: 2px; flex-shrink: 0; }

/* Enroll Buttons */
.btn-sc-enroll {
  display: block; width: 100%;
  background: var(--light-bg);
  color: var(--primary);
  font-weight: 600;
  font-size: .88rem;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid var(--border-soft);
  text-align: center;
  transition: var(--transition);
  margin-top: auto;
}

.btn-sc-enroll:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-featured-enroll {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff !important;
  border: none;
  box-shadow: 0 6px 20px rgba(20,144,184,.3);
}

.btn-featured-enroll:hover {
  box-shadow: 0 10px 28px rgba(20,144,184,.4);
  color: #fff;
}

/* Subject Pills */
.subject-pill {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--light-bg);
  border: 1px solid var(--border-soft);
  border-radius: 50px;
  padding: 10px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.subject-pill:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20,144,184,.25);
}

.subject-pill i { font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   WHY US SECTION
═══════════════════════════════════════════════════════════════ */
.why-section {
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 60%, #3bbdd8 100%);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.why-section::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'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.why-features { display: flex; flex-direction: column; gap: 14px; }

.why-item {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  font-weight: 500;
}

.why-check {
  width: 32px; height: 32px;
  background: rgba(255,215,0,.2);
  border: 2px solid rgba(255,215,0,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .95rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-item:hover .why-check {
  background: var(--gold);
  color: var(--primary-dark);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary-dark);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  font-size: .95rem;
  box-shadow: 0 6px 20px rgba(255,215,0,.4);
  transition: var(--transition);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255,215,0,.5);
  color: var(--primary-dark);
}

/* Stat Cards */
.why-stat-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: var(--transition);
}

.why-stat-card:hover {
  background: rgba(255,255,255,.17);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
}

.wsc-icon { font-size: 2rem; margin-bottom: 10px; }

.why-stat-card h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1;
}

.why-stat-card p {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 500;
  margin: 6px 0 0;
}

/* ═══════════════════════════════════════════════════════════════
   STUDENT REVIEWS
═══════════════════════════════════════════════════════════════ */
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #ffd700;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.13);
}
.review-stars {
  color: #ffd700;
  font-size: 1rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.7;
  flex-grow: 1;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c63ff, #a29bfe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.review-name {
  margin: 0 0 2px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
}
.review-meta {
  font-size: 0.8rem;
  color: #6c63ff;
  font-weight: 600;
}
.review-school {
  font-size: 0.78rem;
  color: #888;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #fff9e0 0%, #fff3b0 50%, #fff9e0 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content:'';
  position:absolute; top:-60px; right:-60px;
  width:300px; height:300px; border-radius:50%;
  background: radial-gradient(circle, rgba(20,144,184,.08) 0%, transparent 70%);
  pointer-events:none;
  overflow:hidden;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
}

.cta-title span { color: var(--primary); }

.cta-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 10px auto 0;
  line-height: 1.75;
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  font-size: .95rem;
  box-shadow: 0 6px 20px rgba(20,144,184,.35);
  transition: var(--transition);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(20,144,184,.45);
  color: #fff;
}

.btn-cta-secondary {
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  font-size: .95rem;
  transition: var(--transition);
}

.btn-cta-secondary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* YouTube Series Banner inside CTA */
.cta-yt-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(255,255,255,0.85);
  border: 2px solid #ff0000;
  border-radius: 16px;
  padding: 18px 28px;
  margin: 28px auto 0;
  max-width: 700px;
  box-shadow: 0 6px 24px rgba(255,0,0,0.12);
}
.cta-yt-icon {
  font-size: 2.4rem;
  color: #ff0000;
  line-height: 1;
  flex-shrink: 0;
}
.cta-yt-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
  min-width: 160px;
}
.cta-yt-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ff0000;
}
.cta-yt-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}
.cta-yt-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.btn-cta-yt {
  background: #ff0000;
  color: #fff !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-cta-yt:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255,0,0,0.35);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════════ */
.contact-info-card {
  background: var(--light-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px 30px;
  height: 100%;
}

.contact-info-card h4 { font-weight: 700; color: var(--text-dark); }

.ci-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 22px;
}

.ci-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-icon.phone   { background: #e0f7fc; color: var(--primary); }
.ci-icon.email   { background: #d4f1f9; color: #0e7494; }
.ci-icon.address { background: #e0f7fc; color: #1490b8; }

.ci-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.ci-value {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.6;
}

a.ci-value:hover { color: var(--primary); }

/* Social Buttons */
.ci-social { display: flex; gap: 10px; }

.social-btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  color: #fff;
  transition: var(--transition);
}

.social-btn.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.youtube   { background: #ff0000; }
.social-btn.whatsapp  { background: #25d366; }

.social-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 6px 16px rgba(0,0,0,.2); }

.btn-call-quick {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  padding: 9px 18px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
}

.btn-call-quick:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 6px 16px rgba(20,144,184,.3); }

.btn-wa-quick {
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  padding: 9px 18px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
}

.btn-wa-quick:hover { transform: translateY(-2px); color: #fff; background: #20ba5a; }

/* Map */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  height: 100%;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   COPYRIGHT BAR
═══════════════════════════════════════════════════════════════ */
.copyright-bar {
  background: var(--text-dark);
  padding: 16px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════════════════════════ */

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
  color: #fff;
}

/* Pulse animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: .5;
  animation: pulse 2.5s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: .5; }
  80%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 68px; top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* Call Sticky (mobile only) */
.call-sticky {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 13px 32px;
  border-radius: 50px;
  z-index: 9998;
  box-shadow: 0 6px 24px rgba(20,144,184,.45);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.call-sticky:hover { transform: translateX(-50%) translateY(-2px); color: #fff; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 9997;
  box-shadow: 0 4px 16px rgba(20,144,184,.35);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Offset back-to-top to be above WhatsApp on desktop */
@media (min-width: 992px) {
  .back-to-top { bottom: 160px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
═══════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .hero-section { min-height: auto; padding: 120px 0 80px; }
  .hero-title { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .section-padding { padding: 65px 0; }
  .philosophy-card { text-align: left; }
  .phi-icon { display: flex; }
  /* About image responsive */
  .abt-photo { height: 300px; }
  .abt-blob-1 { width: 220px; height: 220px; }
  .abt-exp-tag { right: 10px; }
  .abt-badge  { left: 0; }
}

@media (max-width: 767.98px) {
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.6rem; }
  .contact-info-card,
  .contact-form-card { padding: 24px 20px; }
  .cta-section { padding: 50px 0; }
  /* About image on small screens */
  .about-img-section { padding: 10px 10px 50px 10px; }
  .abt-photo { height: 260px; }
  .abt-photo-frame { transform: rotate(0deg); }
  .abt-badge  { bottom: -5px; left: 10px; }
  .abt-exp-tag { top: -5px; right: 10px; }
}

@media (max-width: 575.98px) {
  .hero-badge { font-size: .72rem; }
  .btn-hero-primary, .btn-hero-secondary { padding: 11px 20px; font-size: .88rem; }
  .whatsapp-float { bottom: 80px; }
}


