/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: #fff;
  color: #0f172a;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff7ed;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

/* LOGO SECTION */
.logo {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}

/* Logo Image Bigger */
.logo img {
  width: 100px;        /* 🔥 bada kar diya */
  height: 70px;
  object-fit: contain;
}

.logo span {
  font-size: 20px;
  font-weight: 800;
  color: #1e3a8a;
  transition: 0.3s;
}

.logo:hover span {
  color: #0f172a;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #1e3a8a;
}


/* MOBILE */
@media (max-width: 900px) {

  .nav-links {
    position: absolute;
    top: 75px;
    right: 20px;
    background: white;
    flex-direction: column;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .logo span {
    font-size: 16px;
  }
}


/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #0f172a;
  border-radius: 2px;
}

/* MOBILE MENU */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    margin-right: 15px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff7ed;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 24px 0;

    display: none;          /* hidden by default */
  }

  .nav-links.active {
    display: flex;          /* open on click */
  }
}

/* ================= BIG TITLE SECTION ================= */

.program-title-section {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  background: #f4f1e8;   /* soft cream premium background */
  overflow: hidden;
}

.program-title-section h1 {
  font-size: 70px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1px;
}

/* ================= Decorative Shapes ================= */

.shape-circle {
  position: absolute;
  top: 40px;
  left: 60px;
  width: 22px;
  height: 22px;
  border: 4px solid #16a34a;
  border-radius: 50%;
}

.shape-dots {
  position: absolute;
  right: 60px;
  top: 80px;
  width: 70px;
  height: 70px;
  background-image: radial-gradient(#2563eb 4px, transparent 4px);
  background-size: 18px 18px;
}

.shape-star {
  position: absolute;
  right: 140px;
  top: 50px;
  width: 18px;
  height: 18px;
  background: #facc15;
  transform: rotate(45deg);
  border-radius: 4px;
}

/* ================= Responsive ================= */

@media (max-width: 900px) {
  .program-title-section h1 {
    font-size: 48px;
  }

  .shape-dots{
    width: 50px;
    height: 50px;
    margin-right: -45px;
  }
}

@media (max-width: 600px) {
  .program-title-section {
    padding: 80px 20px;
  }

  .program-title-section h1 {
    font-size: 34px;
  }
}

/* ================= PROGRAM HERO ================= */

.program-hero {
  padding: 100px 40px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.program-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

/* LEFT TEXT */

.program-left h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 10px;
}

.program-left h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.program-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 40px;
  max-width: 520px;
}

/* TIMING BOX */

.timing-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.time-card {
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  min-width: 180px;
}

.time-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 8px;
}

.time-card p {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a;
}

.time-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(37,99,235,0.15);
}

/* RIGHT IMAGE FIX */

.program-right img {
  width: 100%;
  height: auto;          /* 🔥 FIX */
  display: block;        /* 🔥 FIX (white gap remove) */
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.program-right img:hover {
  transform: scale(1.03);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

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

  .program-left p {
    margin: auto auto 40px;
  }

  .timing-box {
    justify-content: center;
  }
}

@media (max-width: 600px) {

  .program-left h2 {
    font-size: 30px;
  }

  .time-card {
    min-width: 140px;
    padding: 18px;
  }
}

/* ================= CALENDAR SECTION ================= */

.calendar-area {
  width: 100%;
  padding: 120px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

  background:
    radial-gradient(circle at 20% 20%, #1f3c88, transparent 50%),
    radial-gradient(circle at 80% 80%, #0f2027, transparent 50%),
    linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}


/* ================= GLASS WRAPPER ================= */

.calendar-wrapper {
  width: 100%;
  max-width: 1400px;   /* 🔥 Desktop bigger */
  padding: 80px;       /* 🔥 More premium spacing */
  margin: 0 auto;

  border-radius: 40px;
  box-sizing: border-box;
  transition: 0.3s ease;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px);

  border: 1px solid rgba(255, 255, 255, 0.25);

  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}


/* ================= HEADER ================= */

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.calendar-header h2 {
  font-size: 50px;   /* 🔥 Bigger title */
  font-weight: 700;
  color: #ffffff;
}

.nav-buttons {
  display: flex;
  gap: 16px;
}

.calendar-header button {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 14px 22px;
  border-radius: 16px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.calendar-header button:hover {
  background: rgba(255,255,255,0.25);
}


/* ================= GRID ================= */

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;  /* 🔥 Bigger spacing */
}


/* Day Names */

.day-name {
  text-align: center;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  font-size: 16px;
  margin-bottom: 16px;
}


/* ================= DATE BOX ================= */

.date-box {
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 24px;   /* 🔥 Bigger numbers */
  font-weight: 600;
  color: #fff;

  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);

  transition: 0.3s ease;
  cursor: pointer;
}

.date-box:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.18);
}

/* Empty */

.date-box.empty {
  background: transparent;
  border: none;
  cursor: default;
}

.date-box.empty:hover {
  transform: none;
}

/* Holiday */

.date-box.holiday {
  background: linear-gradient(135deg,#ff0844,#ff4566);
  box-shadow: 0 0 25px rgba(255,50,80,0.6);
}

/* Range Holiday */

.date-box.range-holiday {
  background: linear-gradient(135deg,#00e5ff,#00bcd4);
  color: #001f2f;
  box-shadow: 0 0 25px rgba(0,200,255,0.6);
}

/* Today */

.date-box.today {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.9);
  animation: pulseToday 2s infinite;
}

@keyframes pulseToday {
  0% { box-shadow: 0 0 15px rgba(0,200,255,0.5); }
  50% { box-shadow: 0 0 35px rgba(0,200,255,1); }
  100% { box-shadow: 0 0 15px rgba(0,200,255,0.5); }
}


/* ================= POPUP ================= */

.holiday-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(25px);

  padding: 22px;
  border-radius: 18px;
  width: 280px;

  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);

  box-shadow: 0 20px 50px rgba(0,0,0,0.6);

  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease;

  pointer-events: none;
  z-index: 999;
}

.holiday-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}



/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px) {

    .calendar-area {
    padding: 60px 15px;
  }

  .calendar-wrapper {
    padding: 25px;
  }

  .calendar-header h2 {
    font-size: 22px;
  }

  .calendar-grid {
    gap: 6px;
  }

  .date-box {
    font-size: 13px;
  }

  .holiday-popup {
    width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {

  .calendar-area {
    min-height: auto;      /* 100vh remove */
    padding: 50px 15px;    /* top-bottom kam */
  }

  .calendar-wrapper {
    padding: 30px 20px;    /* inner spacing kam */
  }
   
  .calendar-header {
    flex-direction: column;
    gap: 12px;
  }

  .calendar-header h2 {
    font-size: 18px;
  }

  .nav-buttons {
    gap: 8px;
  }

  .calendar-header button {
    padding: 6px 12px;
  }
}



/* ================= CTA SECTION ================= */

.cta-wrap {
  padding: 100px 20px;
  background: transparent;   /* ❗ white hatao */
  position: relative;
  z-index: 5;
}

.cta-card {
  max-width: 1200px;
  margin: auto;
  background: #facc15;
  border-radius: 48px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* TEXT */
.cta-text h4 {
  font-size: 20px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 8px;
}

.cta-text h2 {
  font-size: 44px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 18px;
}

.cta-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #1e293b;
  max-width: 520px;
  margin-bottom: 28px;
}

/* BUTTONS */
.cta-btns {
  display: flex;
  gap: 16px;
}

.btn-white {
  background: #ffffff;
  color: #0f172a;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline-yellow {
  background: transparent;
  color: #0f172a;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  border: 2px solid #0f172a;
  cursor: pointer;
}

/* IMAGE */
.cta-img {
  position: relative;
  text-align: right;
}

.cta-img img {
  width: 100%;
  max-width: 360px;
}

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

.footer-main {
  background: #00b853;
  margin-top: -220px;
  padding: 260px 80px 140px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 25px;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  transform: translateY(-6px);
  background: #ffffff;
  color: #00b853;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* LINKS */
.footer-links h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  font-size: 15px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
  padding-left: 6px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .footer-main {
   margin-top: -160px;
    padding-top: 220px;
    padding-bottom: 120px;
  }


   .cta-wrap {
    padding: 60px 20px 40px;    /* 🔥 Reduced top/bottom padding */
    margin-bottom: -80px;       /* 🔥 Less negative margin */
  }

  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 32px;         /* 🔥 Reduced from 60px */
    border-radius: 32px;        /* 🔥 Slightly smaller radius */
  }

  .cta-text h4 {
    font-size: 16px;            /* 🔥 Compact heading */
    margin-bottom: 6px;
  }

  .cta-text h2 {
    font-size: 32px;            /* 🔥 Smaller title */
    margin-bottom: 14px;
    line-height: 1.2;
  }

  .cta-text p {
    font-size: 15px;            /* 🔥 Compact text */
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 100%;
  }

  .cta-btns {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;                  /* 🔥 Tighter button gap */
  }

  .btn-white,
  .btn-outline-yellow {
    padding: 12px 22px;         /* 🔥 Smaller buttons */
    font-size: 15px;
  }

  .cta-img {
    margin-top: 28px;           /* 🔥 Reduced from 40px */
    text-align: center;
  }

  .cta-img img {
    max-width: 240px;           /* 🔥 Smaller image */
  }

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

  .footer-brand p {
    margin: auto;
  }
}

@media (max-width: 480px) {

     .cta-wrap {
    padding: 50px 16px 30px;
  }

  .cta-card {
    padding: 32px 24px;         /* 🔥 Even more compact */
    border-radius: 28px;
  }

  .cta-text h2 {
    font-size: 28px;
  }

  .cta-text p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-img {
    margin-top: 24px;
  }

  .cta-img img {
    max-width: 200px;           /* 🔥 Compact for small screens */
  }

  .footer-main {
  margin-top: -120px;
    padding-top: 190px;
    padding-bottom: 100px
  }
}