*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange-bright: #FFA500;
  --orange-deep:   #FF8000;
  --orange-hero:   #FF9500;
  --red-dark:      #CC3300;
  --brown-dark:    #4A1500;
  --brown-medium:  #7B3A10;
  --cream:         #FFF8EE;
  --cream-2:       #FFE8C0;
  --gold:          #D4A017;
  --gold-light:    #F0C040;
  --white:         #FFFFFF;
  --ff-hindi:      'Tiro Devanagari Hindi', serif;
  --ff-display:    'Baloo 2', cursive;
  --ff-body:       'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--white); overflow-x: hidden; color: #1F2937; }

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 160, 23, 0.28);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 3px rgba(212, 160, 23, 0.08);
  padding: 0 4%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(212, 160, 23, 0.4);
  box-shadow: 0 10px 30px rgba(74, 21, 0, 0.07);
}

.nav-inner {
  max-width: 1240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Left: Logo image */
.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.06));
  transition: transform 0.25s ease;
}

.nav-logo-img:hover {
  transform: scale(1.03);
}

/* Right: Navigation links */
.nav-links-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  list-style: none;
  margin-left: auto;
}

.nav-links-right a {
  text-decoration: none;
  color: var(--brown-dark);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid transparent;
}

.nav-links-right a:hover {
  color: #D97706;
  background: rgba(255, 232, 192, 0.5);
  border-color: rgba(212, 160, 23, 0.35);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.12);
  transform: translateY(-1px);
}

.nav-links-right a.active {
  color: #92400E;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 243, 208, 0.85), rgba(255, 232, 192, 0.95));
  border: 1px solid rgba(212, 160, 23, 0.5);
  box-shadow:
    0 4px 14px rgba(212, 160, 23, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ========================
   HERO SECTION
======================== */
#hero {
  position: relative;
  width: 100%;
  margin-top: 72px;
  background: #FFFFFF url('hero_bg.jpg') center top / cover no-repeat;
  overflow: hidden;
  min-height: 590px;
  display: flex;
  align-items: center;
  padding-top: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 0 40px 10px;
}

/* Left: Krishna image column */
.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.krishna-img {
  width: 700px;
  max-width: 58vw;
  height: auto;
  display: block;
  position: relative;
  left: -80px;
  filter: drop-shadow(0 18px 45px rgba(0,0,0,0.25));
  animation: krishnaFloat 5s ease-in-out infinite;
}

@keyframes krishnaFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

/* Right: Stacked Hindi text column + Course info */
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.8rem;
}

.hindi-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  position: relative;
  left: -110px;
}

.hindi-text-main {
  font-family: var(--ff-hindi);
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 0.98;
  text-shadow:
    3px 3px 0px rgba(255,255,255,0.85),
    0px 3px 14px rgba(212, 160, 23, 0.4);
  letter-spacing: 0.01em;
}

.hindi-text-sub {
  font-family: var(--ff-hindi);
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 0.98;
  text-shadow:
    3px 3px 0px rgba(255,255,255,0.85),
    0px 3px 14px rgba(212, 160, 23, 0.4);
  letter-spacing: 0.01em;
}

/* Big Modern Animated Digital Marketing Course Banner */
.hero-course-banner {
  margin-top: 0.8rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  width: 100%;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.35s ease;
  animation: bannerFloat 4.5s ease-in-out infinite alternate;
}

.hero-course-banner .course-banner-sub {
  margin-left: auto;
  margin-right: auto;
}

@keyframes bannerFloat {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-7px); }
}

.hero-course-banner:hover {
  transform: scale(1.05) translateY(-10px);
  filter: drop-shadow(0 12px 28px rgba(217, 119, 6, 0.45));
}

.course-banner-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #78350F 0%, #D97706 25%, #EA580C 50%, #4338CA 75%, #D97706 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 5s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(217, 119, 6, 0.2));
  transition: all 0.3s ease;
}

@keyframes textShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.course-banner-sub {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #4B5563;
  letter-spacing: 0.02em;
  max-width: 480px;
  line-height: 1.45;
}

/* Janmashtami 50% OFF Offer Badge & Context */
.course-offer-badge {
  display: inline-flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.15rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #4B5563;
  max-width: 480px;
  line-height: 1.45;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.offer-discount-tag {
  background: linear-gradient(135deg, #DC2626 0%, #EA580C 100%);
  color: #FFFFFF;
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
  animation: pulseDiscount 2.2s infinite ease-in-out;
}

@keyframes pulseDiscount {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35); }
  50%      { transform: scale(1.05); box-shadow: 0 6px 20px rgba(220, 38, 38, 0.55); }
}

.offer-occasion-text {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #92400E;
  letter-spacing: 0.04em;
}

.course-offer-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
  width: 100%;
}

.offer-price {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #15803D;
}

.offer-price .original-price {
  font-size: 0.65em;
  color: #9CA3AF;
  text-decoration: line-through;
  margin-right: 0.35rem;
  font-weight: 500;
}

.offer-validity {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: #B45309;
  background: rgba(254, 243, 199, 0.75);
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

/* ========================
   DIGITAL MARKETING COURSE DETAILS SECTION
======================== */
#courses {
  background: linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 50%, #FFFDF8 100%);
  padding: 5.5rem 5% 6rem;
  border-top: 2px solid rgba(212, 160, 23, 0.35);
  position: relative;
  overflow: hidden;
}

.courses-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.courses-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.curriculum-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFE8C0;
  color: #92400E;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 160, 23, 0.4);
}

.curriculum-main-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  color: var(--brown-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.curriculum-main-title span {
  background: linear-gradient(135deg, #D97706 0%, #EA580C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.curriculum-sub-text {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: #4B5563;
  max-width: 720px;
  line-height: 1.6;
}

/* 4-Section Grid */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.module-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 160, 23, 0.28);
  border-radius: 1.25rem;
  padding: 2.4rem 2.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D97706, #EA580C);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.module-card:hover {
  transform: translateY(-8px);
  border-color: #D97706;
  box-shadow: 0 20px 45px rgba(217, 119, 6, 0.14);
}

.module-card:hover::before {
  opacity: 1;
}

.module-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.module-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FFF3D0 0%, #FFE8C0 100%);
  border: 1px solid rgba(212, 160, 23, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.15);
}

.module-number {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(212, 160, 23, 0.3);
  line-height: 1;
  letter-spacing: -0.04em;
}

.module-title {
  font-family: var(--ff-display);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: var(--brown-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.module-desc {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: #4B5563;
  line-height: 1.65;
}

.module-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.module-features-list li {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1F2937;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.module-features-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FEF3C7;
  color: #D97706;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

.curriculum-bottom-cta {
  background: linear-gradient(135deg, #4A1500 0%, #7B3A10 100%);
  border-radius: 1.5rem;
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.6rem;
  width: 100%;
  box-shadow: 0 15px 40px rgba(74, 21, 0, 0.25);
}

.cta-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 680px;
}

.cta-text-wrap h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
}

.cta-text-wrap p {
  font-family: var(--ff-body);
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
}

.cta-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

.btn-enroll-now {
  background: linear-gradient(135deg, #FFA500 0%, #FF8000 100%);
  color: #FFFFFF;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  padding: 1.15rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 128, 0, 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
  display: inline-block;
}

.btn-enroll-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 128, 0, 0.6);
  background: linear-gradient(135deg, #FFB320 0%, #FF9010 100%);
}

/* ========================
   ABOUT US SECTION (HUNAR - THE SKILL HOUSE)
======================== */
#about {
  background: #FFFFFF;
  padding: 5.5rem 5% 6rem;
  border-top: 1px solid rgba(212, 160, 23, 0.25);
  position: relative;
}

.about-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.about-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFE8C0;
  color: #92400E;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 160, 23, 0.4);
}

.about-main-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  color: var(--brown-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about-main-title span {
  background: linear-gradient(135deg, #D97706 0%, #EA580C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-accreditation-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.accred-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 248, 238, 0.9);
  border: 1px solid rgba(212, 160, 23, 0.35);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: #7B3A10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

/* Left Column: Story & Mission */
.about-story-card {
  background: linear-gradient(145deg, #FFFDF8 0%, #FFF8EE 100%);
  border: 1.5px solid rgba(212, 160, 23, 0.3);
  border-radius: 1.25rem;
  padding: 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-story-content h3 {
  font-family: var(--ff-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.about-story-content p {
  font-family: var(--ff-body);
  font-size: 1.02rem;
  color: #4B5563;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(212, 160, 23, 0.25);
  padding-top: 1.5rem;
}

.about-stat-box {
  text-align: center;
}

.about-stat-number {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: #D97706;
  line-height: 1;
}

.about-stat-label {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  color: #6B7280;
  font-weight: 600;
  margin-top: 0.35rem;
}

/* Right Column: Why Choose Hunar Cards */
.why-hunar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.why-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 160, 23, 0.25);
  border-radius: 1rem;
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.why-card:hover {
  transform: translateX(6px);
  border-color: #D97706;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.12);
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFF3D0 0%, #FFE8C0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid rgba(212, 160, 23, 0.35);
}

.why-content h4 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 0.25rem;
}

.why-content p {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: #4B5563;
  line-height: 1.55;
}

/* ========================
   CONTACT US SECTION (TALK TO A COUNSELOR)
======================== */
#contact {
  background: linear-gradient(180deg, #FFFDF8 0%, #FFF8EE 100%);
  padding: 5.5rem 5% 6.5rem;
  border-top: 1px solid rgba(212, 160, 23, 0.28);
  position: relative;
}

.contact-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.contact-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFE8C0;
  color: #92400E;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 160, 23, 0.4);
}

.contact-main-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  color: var(--brown-dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.contact-main-title span {
  background: linear-gradient(135deg, #D97706 0%, #EA580C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-sub-text {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: #4B5563;
  max-width: 720px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.8rem;
  align-items: stretch;
}

/* Left Column: Contact Cards */
.contact-info-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 160, 23, 0.3);
  border-radius: 1.25rem;
  padding: 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.contact-info-card h3 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.contact-item-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.contact-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #FFF3D0 0%, #FFE8C0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(212, 160, 23, 0.35);
}

.contact-item-text h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 0.15rem;
}

.contact-item-text p,
.contact-item-text a {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: #4B5563;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.contact-item-text a:hover {
  color: #D97706;
}

.office-hours-box {
  background: rgba(255, 248, 238, 0.9);
  border: 1px solid rgba(212, 160, 23, 0.3);
  padding: 1.1rem 1.3rem;
  border-radius: 12px;
}

.office-hours-box h5 {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #92400E;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.office-hours-box p {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: #4B5563;
}

/* Right Column: Contact Form */
.contact-form-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 160, 23, 0.35);
  border-radius: 1.25rem;
  padding: 2.5rem 2.2rem;
  box-shadow: 0 12px 35px rgba(217, 119, 6, 0.08);
  position: relative;
}

.contact-form-card h3 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 0.35rem;
}

.contact-form-card p {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1.5px solid #E5E7EB;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: #1F2937;
  background: #FAFAFA;
  transition: all 0.25s ease;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #D97706;
  background: #FFFFFF;
  box-shadow: 0 0 0 3.5px rgba(217, 119, 6, 0.15);
}

.form-btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #FFA500 0%, #FF8000 100%);
  color: #FFFFFF;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.95rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(255, 128, 0, 0.4);
  transition: all 0.25s ease;
  margin-top: 0.5rem;
}

.form-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 128, 0, 0.6);
  background: linear-gradient(135deg, #FFB320 0%, #FF9010 100%);
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}

.form-feedback.success {
  display: block;
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
}

.form-feedback.error {
  display: block;
  background: #FEE2E2;
  color: #B91C1C;
  border: 1px solid #FCA5A5;
}

.form-feedback.error a {
  color: #B91C1C;
  text-decoration: underline;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.65);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

/* ========================
   FOOTER
======================== */
footer {
  background: var(--brown-medium);
  padding: 1.4rem 5%;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-copy {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ========================
   ENROLLMENT POPUP MODAL
======================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(20, 10, 0, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.25s ease;
}

.modal-overlay[hidden] { display: none; }

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  position: relative;
  background: #FFFFFF;
  border-radius: 1.25rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem 2rem 1.8rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  animation: modalPopIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPopIn {
  from { transform: scale(0.92) translateY(12px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: #F3F4F6;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: #4B5563;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: #FEE2E2;
  color: #B91C1C;
}

.modal-title {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  color: var(--brown-dark);
  text-align: center;
  margin-bottom: 0.35rem;
  padding-right: 1.5rem;
}

.modal-box .form-offer-subtext {
  text-align: center;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: #6B7280;
  margin-bottom: 1.4rem;
}

/* ========================
   RESPONSIVE
======================== */

/* Hamburger + mobile menu — hidden on desktop by default */
.nav-hamburger { display: none; }
.mobile-menu { display: none; }

/* ---- Tablet / mid-size screens ---- */
@media (max-width: 1024px) {
  .hero-content { gap: 1.5rem; padding: 10px; }
  .krishna-img { width: 460px; }
  .hindi-title-wrap { left: -40px; }
  .hero-course-banner { left: 0; }
  .courses-container, .about-container, .contact-container { padding-left: 0; padding-right: 0; }
  .modules-grid { gap: 1.5rem; }
  .curriculum-bottom-cta { padding: 2.4rem 2rem; }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; padding: 5px; gap: 1rem; text-align: center; }
  .hero-image-col { justify-content: center; }
  .hero-text-col { align-items: center; text-align: center; left: 0; }
  .hindi-title-wrap { left: 0; }
  .hero-course-banner { left: 0; }
  .krishna-img { width: 320px; max-width: 85vw; left: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats-row { grid-template-columns: 1fr; gap: 1rem; }
  .modules-grid { grid-template-columns: 1fr; }
  .curriculum-bottom-cta { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-group-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nav-links-right { display: none; }

  /* ---- Hamburger button ---- */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
  }
  .nav-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #1F2937;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-hamburger.active span:nth-child(2) { opacity: 0; }
  .nav-hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* ---- Mobile dropdown menu ---- */
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.25rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 9999;
  }
  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu a {
    padding: 0.85rem 0.5rem;
    font-family: var(--ff-body);
    font-weight: 600;
    color: #1F2937;
    text-decoration: none;
    border-bottom: 1px solid #F3F4F6;
  }
  .mobile-menu a.mobile-menu-cta {
    margin-top: 0.6rem;
    text-align: center;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    border-radius: 50px;
    border-bottom: none;
  }

  /* ---- Popup modal on tablets/phones ---- */
  .modal-box { padding: 1.8rem 1.4rem 1.4rem; border-radius: 1rem; max-width: 92vw; }

  /* ---- Curriculum bottom CTA ---- */
  .curriculum-bottom-cta { padding: 2.2rem 1.5rem; border-radius: 1.1rem; }

  /* ---- Course offer meta wraps cleanly on small screens ---- */
  .course-offer-meta { gap: 0.6rem; }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
  #hero { min-height: unset; }
  .hero-content { padding: 10px 16px 8px; }
  .krishna-img { width: 280px; }
  .hindi-text-main, .hindi-text-sub { font-size: clamp(2.4rem, 14vw, 3.4rem); }
  .course-banner-title { font-size: clamp(1.7rem, 9vw, 2.4rem); }
  .course-banner-sub { font-size: 0.85rem; max-width: 90vw; }
  .offer-discount-tag, .offer-occasion-text { font-size: 0.72rem; }
  .offer-price { font-size: 1.5rem; }
  .offer-validity { font-size: 0.7rem; }

  .curriculum-bottom-cta { padding: 1.8rem 1.1rem; gap: 1.1rem; }
  .cta-text-wrap h3 { font-size: 1.4rem; }
  .cta-text-wrap p { font-size: 0.88rem; }
  .btn-enroll-now { width: 100%; text-align: center; padding: 1rem 1.5rem; }
  .cta-btn-group { width: 100%; }

  .modal-box { padding: 1.5rem 1.1rem 1.2rem; max-height: 94vh; }
  .modal-title { font-size: 1.2rem; }

  .contact-form-card, .contact-info-card { padding: 1.5rem 1.25rem; }
  .about-story-card { padding: 1.5rem; }
  .module-card { padding: 1.5rem; }
}
