/* =========================
   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: 85px;
  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: 22px;
    margin-left: -15px;
  }
}


/* 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-left: 320px;
   margin-top: -60px;
  }

  .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 */
  }
}

/* =========================
   HERO
========================= */
.hero {
  background: #fff7ed;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 52px;
}

.hero span {
  color: #1e3a8a;
}

.hero-btns {
  margin: 30px 0;
  display: flex;
  gap: 16px;
}

.btn-primary {
  background: #22c55e;
  color: #fff;
  padding: 14px 26px;
  border-radius: 14px;
  border: none;
}

.btn-outline-dark {
  border: 1px solid #0f172a;
  padding: 14px 26px;
  border-radius: 14px;
  background: none;
}

.hero-btns a {
  text-decoration: none;
  display: inline-block;
}

.hero-btns a:hover {
  text-decoration: none;
}


.stats {
  display: flex;
  gap: 30px;
}

.stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* =========================
   HERO IMAGE (KINDERLY STYLE)
========================= */
.hero-img {
  position: relative;
  width: 420px;
  max-width: 100%;
  margin-left: auto;
}

/* Yellow background shape */
.hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #facc15;
  border-radius: 42px;
  transform: translate(18px, 18px);
  z-index: 0;
}

/* Dark outline */
.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 6px solid #0f172a;
  border-radius: 42px;
  transform: translate(8px, 8px);
  z-index: 1;
}

.hero-img img {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  border-radius: 36px;
  background: #fff;
}

/* ================= RAMADAN PREVIEW ================= */

/* =========================
   RAMADAN SECTION
========================= */

.ramadan-section{
position:relative;
padding:120px 20px 80px;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;

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);
}

/* =========================
   TWINKLING STARS BG
========================= */

.ramadan-section::before{
content:"";
position:absolute;
inset:0;
background:url("stars-bg.png");
opacity:0.4;
animation: twinkle 4s infinite alternate;
z-index:0;
}

@keyframes twinkle{
0%{ opacity:0.3; }
100%{ opacity:0.6; }
}

/* =========================
   HANGING DECOR (IMAGE BASED)
========================= */

/* Hanging Decor */
.hanging-decor{
position:absolute;
top:0;
left:0;
width:100%;
height:200px;
pointer-events:none;
}

.moon{
width:60px;
height:60px;
background:gold;
border-radius:50%;
position:absolute;
left:10%;
top:20px;
box-shadow:-15px 0 0 #0f1f3d inset;
animation:swing 4s infinite ease-in-out;
}

.star{
width:20px;
height:20px;
background:gold;
clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
position:absolute;
animation:swing 3s infinite ease-in-out alternate;
}

.star1{left:30%; top:20px;}
.star2{left:50%; top:10px;}
.star3{left:70%; top:25px;}

@keyframes swing{
0%{transform:rotate(-5deg);}
50%{transform:rotate(5deg);}
100%{transform:rotate(-5deg);}
}

.ramadan-decor{
position:absolute;
top:0;
left:0;
width:100%;
height:180px;
pointer-events:none;
z-index:1;
}

.moon-img{
position:absolute;
left:8%;
top:20px;
width:70px;
animation: swingMoon 5s ease-in-out infinite;
transform-origin:top center;
}

.star-img{
position:absolute;
width:35px;
animation: swingStar 4s ease-in-out infinite;
transform-origin:top center;
}

.s1{ left:30%; top:25px; }
.s2{ left:50%; top:10px; }
.s3{ left:75%; top:30px; }

@keyframes swingMoon{
0%{ transform:rotate(-6deg); }
50%{ transform:rotate(6deg); }
100%{ transform:rotate(-6deg); }
}

@keyframes swingStar{
0%{ transform:rotate(-8deg); }
50%{ transform:rotate(8deg); }
100%{ transform:rotate(-8deg); }
}

/* =========================
   GLASS CARD
========================= */

.ramadan-card{
position:relative;
z-index:5;
width:100%;
max-width:1000px;
padding:50px;
border-radius:30px;
text-align:center;

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

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

box-shadow:
0 25px 60px rgba(0,0,0,0.6),
inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Titles */

.ramadan-card .arabic{
font-size:38px;
color:#FFD700;
margin-bottom:10px;
font-weight:700;
}

.ramadan-card h3{
color:#fff;
margin-bottom:8px;
font-size:24px;
}

.ramadan-card p{
color:#ddd;
margin-bottom:35px;
}

/* =========================
   TABLE
========================= */

.table-wrapper{
overflow-x:auto;
}

table{
width:100%;
border-collapse:collapse;
color:#fff;
}

thead{
background:#0f2747;
}

th{
padding:15px;
color:#FFD700;
font-weight:600;
}

td{
padding:14px;
border-bottom:1px solid rgba(255,255,255,0.15);
}

tbody tr:hover{
background:rgba(255,255,255,0.08);
transition:0.3s;
}

/* Highlight Current Day */

.active-row{
background:linear-gradient(90deg,#00c6ff,#0072ff);
font-weight:700;
}

/* =========================
   BUTTON
========================= */

.view-btn{
display:inline-block;
margin-top:35px;
padding:12px 30px;
background:#FFD700;
color:#000;
font-weight:600;
border-radius:12px;
text-decoration:none;
transition:0.3s;
}

.view-btn:hover{
background:#ffc107;
transform:translateY(-3px);
}

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

@media(max-width:768px){

.ramadan-section{
padding:100px 15px 60px;
}

.ramadan-card{
padding:30px 20px;
}

.ramadan-card .arabic{
font-size:26px;
}

.ramadan-card h3{
font-size:18px;
}

th,td{
font-size:13px;
padding:10px;
}

.moon{
width:50px;
height:50px;
}

.star{
width:25px;
height:25px;
}

}


/* =========================
   RED TOP (ONLY TOP ROUND)
========================= */
.welcome-top {
  background: #fb7185;
  padding: 26px 0 42px;
  border-top-left-radius: 90px;
  border-top-right-radius: 90px;
  overflow: hidden;
}

/* Marquee wrapper */
.announce-wrap {
  width: 100%;
  overflow: hidden;
}

/* Rolling text */
.announce-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.announce-track span {
  color: #fff;
  font-weight: 700;
  margin: 0 28px;
  white-space: nowrap;
}

/* =========================
   YELLOW SECTION (BOTTOM ROUND)
========================= */
.welcome-yellow {
  background: #facc15;
  padding: 90px 0 120px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  margin-top: -6px;
}

/* INNER CARD */
.welcome-card {
  background: #fbbf24;
  margin: 0 60px;
  border-radius: 70px;
  padding: 60px;
}

.welcome-box {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: center;
}

.welcome-img {
  background: #fff;
  padding: 12px;
  border-radius: 32px;
}

.welcome-img img {
  width: 100%;
  border-radius: 24px;
}

.welcome-text h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 18px;
}

.welcome-text span {
  color: #1e3a8a;
}

.welcome-text p {
  line-height: 1.7;
  margin-bottom: 22px;
}

.learn-btn {
  font-weight: 700;
  cursor: pointer;
}

/* =========================
   ACTIVITIES
========================= */
.activities {
   padding: 80px 0 120px 0;  /* bottom padding increase */
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;   /* Important */
}

.card {
  border-radius: 26px;
  border: 1px solid #c7d2fe;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 220px;              /* Slightly balanced height */
  object-fit: cover;
  display: block;
}

.card h3 {
  padding: 18px;
  margin: 0;
  line-height: 1.4;
}

.special-img {
 object-position: top;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonial-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff7ed, #fde68a);
  text-align: center;
}

.testimonial-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.testimonial-sub {
  font-size: 16px;
  color: #475569;
  margin-bottom: 50px;
}

.testimonial-grid {
  display: flex;
  gap: 28px;
  padding: 20px 10px;          /* shadow ke liye space */
  overflow-x: auto;            /* horizontal scroll */
  overflow-y: visible;
  scroll-behavior: smooth;
  scrollbar-width: none;       /* Firefox */
}

.testimonial-grid::-webkit-scrollbar {
  display: none;               /* Chrome */
}


.testimonial-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  text-align: left;
  flex: 0 0 calc(100% - 40px); /* 🔥 Account for wrapper padding */
  max-width: 360px;
  min-height: 220px;
  scroll-snap-align: start;    /* 🔥 Changed from center to start */
  scroll-snap-stop: always;     /* 🔥 Force stop at each card */
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 15px;     /* 🔥 Reduced horizontal padding */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* 🔥 Smooth iOS scroll */
}

.testimonial-wrapper::-webkit-scrollbar {
  display: none;
}


.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(0,0,0,0.12);
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 22px;
}

.testimonial-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.testimonial-card span {
  font-size: 13px;
  color: #64748b;
}


.stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 14px;
}

.review {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 20px;
}

.parent strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
}

.parent span {
  font-size: 13px;
  color: #64748b;
}

/* Mobile */
@media (max-width: 600px) {
  .testimonial-title {
    font-size: 28px;
  }

  .testimonial-wrapper {
    padding: 20px 16px;    /* 🔥 Consistent padding */
    gap: 16px;              /* 🔥 Slightly reduced gap */
  }

  .testimonial-card {
    flex: 0 0 calc(100% - 32px); /* 🔥 Full width minus padding */
    max-width: 100%;
    padding: 24px;
    border-radius: 20px;
    margin: 0;              /* 🔥 Remove any default margin */
  }
}


/* =========================
   FAQ
========================= */
.faq {
  padding: 80px 0;
}

details {
  border: 1px solid #1e3a8a;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #22c55e;
  color: #fff;
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

/* =========================
   MARQUEE ANIMATION
========================= */
@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

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

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

  .hero-img {
    margin: 40px auto 0;
    width: 320px;
  }

  .stats {
    justify-content: center;
  }

  .welcome-card {
    margin: 0 24px;
    padding: 40px;
  }

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

  .welcome-img {
    max-width: 260px;
    margin: auto;
  }

  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {

  .nav-inner {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .stats {
    flex-direction: column;
  }

  .hero-img {
    width: 260px;
  }

  .welcome-top {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }

  .welcome-yellow {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .announce-track span {
    font-size: 14px;
    margin: 0 18px;
  }

  .welcome-card {
    border-radius: 40px;
    padding: 26px;
  }

  .welcome-text h2 {
    font-size: 26px;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
}
/* ================= REELS SECTION ================= */

.reels-section {
  padding: 80px 20px;
  background: #fff7ed;
}

.reels-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0f172a;
}

/* Wrapper */
.reels-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;   /* 🔥 Snap effect */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reels-wrapper::-webkit-scrollbar {
  display: none;
}

/* Reel Card */
.reel {
  position: relative;
  min-width: 260px;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  scroll-snap-align: center;   /* 🔥 snap center */
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.reel:hover {
  transform: scale(1.03);
}

.reel iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

@media (max-width: 768px) {

  .reels-section {
    padding: 60px 10px;
  }

  .reels-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .reels-wrapper {
    gap: 16px;
    padding: 0 10px;
  }

  .reel {
    min-width: 85%;     /* 🔥 almost full screen */
    height: 500px;      /* taller for mobile */
  }

}

@media (max-width: 480px) {

  .reel {
    min-width: 92%;   /* nearly full width */
    height: 520px;
  }

}


/* =========================
   FAQ SECTION
========================= */
.faq-section {
  padding: 100px 20px;
  background: #ffffff;
  position: relative;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.faq-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 6px;
}

.faq-title {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 60px;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* EACH FAQ ITEM */
.faq-item {
  background: #f8fafc;
  border: 2px solid #1e3a8a;
  border-radius: 26px;
  padding: 22px 26px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* QUESTION */
.faq-item summary {
  list-style: none;
  font-size: 20px;
  font-weight: 700;
  color: #1e3a8a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* ICON */
.faq-item .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-item p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  text-align: left;
}

/* OPEN STATE */
.faq-item[open] {
  background: #eef2ff;
}

.faq-item[open] .icon {
  transform: rotate(180deg);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 600px) {

  .faq-title {
    font-size: 30px;
  }

  .faq-item summary {
    font-size: 17px;
  }

  .faq-item p {
    font-size: 15px;
  }
}


/* ================= 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;
}

.cta-btns a {
  text-decoration: none;
  display: inline-block;
}

.cta-btns a:hover {
  text-decoration: none;
}

.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;
  color: #eef2ff;
  text-decoration: none;
}

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


/* ================= 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-card {
    padding: 50px 24px;
  }

  .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
  }
}

