 /*First Sectiom*/
    /* Import Poppins Font Explicitly */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Main Section Restyling */
.su-ultimate-section {
  padding: 80px 20px;
  background: radial-gradient(circle at top left, #f4f7fe 0%, #ffffff 100%);
  font-family: 'Poppins', sans-serif !important;
  overflow: hidden;
}

.su-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Hidden SEO text */
.seo-only {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

/* Header PNG Alignment */
.su-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.su-png-title {
  max-width: 100%;
  width: 750px;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

/* Split Layout */
.su-split-layout {
  display: flex;
  align-items: stretch;
  gap: 50px;
  flex-wrap: wrap;
}

/* --- LEFT SIDE: THE MASSIVE SCIENCE PORTAL --- */
.su-visual-side {
  flex: 1 1 45%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.su-portal-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.su-portal-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.su-ring-1 {
  width: 550px; height: 550px;
  border: 2px dashed rgba(0, 123, 255, 0.4);
  animation: spinPortal 30s linear infinite;
}

.su-ring-2 {
  width: 450px; height: 450px;
  border: 6px solid transparent;
  border-top-color: rgba(255, 0, 122, 0.5);
  border-bottom-color: rgba(0, 210, 255, 0.5);
  animation: spinPortalReverse 20s linear infinite;
}

.su-ring-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,123,255,0.08) 0%, rgba(255,255,255,0) 70%);
  animation: pulsePortal 4s ease-in-out infinite;
}

.su-kids-hero-img {
  position: relative;
  z-index: 10;
  width: 130%; /* Extremely large image setup */
  max-width: 700px; 
  transform: translateY(0);
  animation: floatKids 6s ease-in-out infinite;
  filter: drop-shadow(-15px 25px 40px rgba(0,0,0,0.2));
}

/* Animations for Portal */
@keyframes spinPortal { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spinPortalReverse { 100% { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes pulsePortal { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.08); } }
@keyframes floatKids { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* --- RIGHT SIDE: UNIQUE BENTO GRID --- */
.su-content-side {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.su-intro-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  border-left: 4px solid #ff007a;
}

/* Bento Grid System */
.su-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.su-card-span-2 {
  grid-column: span 2; /* Makes the first card stretch across */
}

/* The Cards */
.su-bento-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  z-index: 1;
}

.su-bento-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Giant Background Watermark Numbers */
.su-watermark {
  position: absolute;
  right: -5px;
  bottom: -20px;
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
  color: #f0f0f0;
  z-index: -1;
  transition: all 0.4s ease;
  user-select: none;
}

.su-bento-card:hover .su-watermark {
  transform: translateY(-10px) rotate(-5deg);
}

/* Dynamic Hover Colors per card */
.su-color-blue:hover { border-color: #007bff; }
.su-color-blue:hover .su-watermark { color: rgba(0, 123, 255, 0.1); }

.su-color-pink:hover { border-color: #ff007a; }
.su-color-pink:hover .su-watermark { color: rgba(255, 0, 122, 0.1); }

.su-color-orange:hover { border-color: #ff9800; }
.su-color-orange:hover .su-watermark { color: rgba(255, 152, 0, 0.1); }

.su-color-purple:hover { border-color: #7928ca; }
.su-color-purple:hover .su-watermark { color: rgba(121, 40, 202, 0.1); }

.su-color-green:hover { border-color: #00b09b; }
.su-color-green:hover .su-watermark { color: rgba(0, 176, 155, 0.1); }

/* Card Inner Content */
.su-card-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Flex row for the large spanning card */
.su-card-span-2 .su-card-content {
  flex-direction: row;
  align-items: center;
}

.su-card-icon {
  font-size: 2.2rem;
  line-height: 1;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
}

.su-text-wrap h3 {
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  color: #1a1a1a;
  font-weight: 700;
}

.su-text-wrap p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

/* Beautiful Outro Banner */
.su-magic-outro {
  background: #111827;
  color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(17, 24, 39, 0.3);
}

.su-magic-outro::after {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  animation: shineOutro 4s infinite;
}

@keyframes shineOutro {
  0% { left: -100%; }
  20%, 100% { left: 200%; }
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 1024px) {
  .su-split-layout { flex-direction: column; gap: 30px; }
  .su-visual-side { min-height: 450px; }
  .su-kids-hero-img { width: 100%; max-width: 550px; }
  .su-ring-1 { width: 450px; height: 450px; }
  .su-ring-2 { width: 380px; height: 380px; }
}

@media (max-width: 650px) {
  .su-bento-grid { grid-template-columns: 1fr; }
  .su-card-span-2 { grid-column: span 1; }
  .su-card-span-2 .su-card-content { flex-direction: column; align-items: flex-start; }
  .su-watermark { font-size: 90px; }
  .su-png-title { width: 95%; }
  .su-visual-side { min-height: 350px; }
}



/*second section*/
        :root {
            --primary: #2D3192;
            --orange: #FF7A00;
            --light-bg: #F0F2F5;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-bg);
            padding: 20px;
            margin: 0;
        }

        /* Jugad: PNG Title centered and fixed */
        .title-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .title-header img {
            max-width: 750px;
            width: 100%;
            height: auto;
        }

        /* Card Container Jugad: Responsive Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* The Card Design */
        .offer-card {
            background: #ffffff;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid #eee;
        }

        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        /* Image Section */
        .card-img-box {
            width: 100%;
            background: #fff;
            padding: 10px;
        }

        .card-img-box img {
            width: 100%;
            border-radius: 20px;
            display: block;
            object-fit: contain;
        }

        /* Content Section */
        .card-body {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .badge {
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 10px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: inline-block;
        }

        h2 {
            font-size: 1.8rem;
            color: var(--primary);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        /* List Styling */
        .feature-list {
            margin: 0;
            padding: 0;
            list-style: none;
            margin-bottom: 25px;
        }

        .feature-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
            font-size: 0.9rem;
            color: #444;
            line-height: 1.4;
        }

        .feature-list li::before {
            content: "\f058"; /* FontAwesome Circle Check */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--orange);
            font-size: 1.1rem;
        }

        .feature-list li strong {
            display: block;
            color: #000;
            font-weight: 700;
        }

        /* Call Section - The Jugad Button */
        .call-btn {
            background: var(--orange);
            color: white;
            text-decoration: none;
            text-align: center;
            padding: 18px;
            border-radius: 20px;
            font-weight: 800;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: 0.3s;
            box-shadow: 0 10px 20px rgba(255, 122, 0, 0.2);
            margin-top: auto;
        }

        .call-btn:hover {
            background: var(--primary);
            box-shadow: 0 10px 20px rgba(45, 49, 146, 0.3);
        }

        .deepika-contact {
            text-align: center;
            margin-top: 10px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #666;
        }

        .year-long {
            background: #F8F9FF;
            text-align: center;
            padding: 10px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--primary);
            border-top: 1px solid #eee;
        }

        @media (max-width: 768px) {
            .cards-grid {
                grid-template-columns: 1fr;
            }
        }