/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&family=Quicksand:wght@300..700&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    min-height: 100vh;
    position:relative;
    color: #1f2937;
}
.containerdiv{
    display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      width:100%;
}
a{
    text-decoration: none;
}
.container {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.register-form {
    display: flex;
    flex-direction: column;
}
#wf-message-label{
    display:none;
}

.register-form h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    letter-spacing: 1px;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 12px 10px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.form-group input::placeholder {
    color: #ddd;
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #4f46e5;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button:hover {
    background: #4338ca;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
    transform: scale(1.05);
}

.inactbutton{
    padding: 12px;
    border: none;
    border-radius: 8px;
    background:  #ff512f;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*alertbox*/

.alert-box {
      display:none;
      background-color: #000;
      color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      max-width: 90%;
      width: 400px;
      min-height:100px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .alert-box button {
      background-color: #ff3333;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 14px;
      cursor: pointer;
      margin-top:25px;
    }

    .alert-box button:hover {
      background-color: #ff1a1a;
    }
.logindiv{
    text-align: center;
        margin-top:15px;
}
.spantext{
text-align: center;
}
.logintext{
    color:#fa8eb0;
}
.forgottext{
    color:#f0ba8b;
}
.logintext: hover{
    color:#ff1a1a;
}

.coursep{
    font-size:0.9rem;
    margin-bottom:2%;
}

.courseimg{
    width:100%;
    height:60%;
}

/*login css*/

header {
background: rgba(10, 11, 16, 1);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
color: white;
padding: 10px 0;
position: sticky;
top: 0;
z-index: 1000;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
position: relative;
}

.menu {
display: flex;
gap: 20px;
justify-content: flex-end;
flex-grow: 1;
}

.menu a {
color: white;
text-decoration: none;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s;
}

.menu a:hover {
background-color: rgba(255, 255, 255, 0.2);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.dropdown:hover .dropbtn {
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a24;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1000;
    border-radius: 8px;
    top: 100%;
    left: 0;
    overflow: hidden;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 0;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
    display: block;
}

.dropdown.hide-desktop .dropdown-content {
    display: none !important;
}

.toggler {
display: none;
font-size: 24px;
cursor: pointer;
}

.grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1.5fr));
gap: 20px;
padding: 40px 20px;
margin: 0 auto;
max-width: 1200px;
}
main{
    text-align: center;
}
.grid-item {
min-height:300px;
background-color: #000;
border: 1px solid #ddd;
border-radius: 10px;
padding: 20px;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/*footer {
background: linear-gradient(90deg, #8e2de2, #4a00e0);
color: white;
text-align: center;
padding: 10px 0;
margin-top: 20px;
position: relative;
bottom: 0;
}*/

.navlogo {
    height: 80px;
    margin-right: 20px;
}

/*footer css*/

.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 50px 30px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.brand-col .footer-logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.mission-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-bottom: 12px;
  line-height: 1.4;
}

.mission-text span {
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.brand-col .about-text {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f8fafc;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.contact-cards-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-card-single {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.contact-card-single:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.contact-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(79, 70, 229, 0.15); /* Light premium indigo tint */
  color: #818cf8; /* Indigo text color for svg stroke */
  border-radius: 8px;
  flex-shrink: 0;
}

.contact-card-single p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.3;
}

.contact-card-single p a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card-single:hover p a {
  color: #ffffff;
}

.play-store-badge img {
  height: 44px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.play-store-badge:hover img {
  transform: translateY(-3px);
  filter: drop-shadow(0 6px 16px rgba(255,255,255,0.15));
}

.social-links-grid {
  display: flex;
  gap: 15px;
}

.social-icon img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover img {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.footer-trust-signals {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
  color: #cbd5e1;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.mt-4 { margin-top: 1.5rem; }

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.footer-big-text {
  text-align: center;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.footer-big-text span {
  font-size: clamp(3rem, 12vw, 10rem);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
  
  /* Animated Sweep Gradient */
  background: linear-gradient(
    90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0) 40%, 
    rgba(255, 255, 255, 0.8) 50%, 
    rgba(255, 255, 255, 0) 60%, 
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 1;
  display: block;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  
  animation: sweepGlow 6s linear infinite;
}

@keyframes sweepGlow {
  0% {
    background-position: 100% center;
  }
  100% {
    background-position: -100% center;
  }
}

.footer-big-text span:hover {
  background: none;
  color: rgba(255, 255, 255, 0.8);
  -webkit-text-stroke: 0px transparent;
  transform: scale(1.03);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/*video banner*/

.video-banner {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .video-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .video-banner video {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .video-banner .content {
            font-family: 'Plus Jakarta Sans', sans-serif;
            position: absolute;
            bottom: 25%;
            left: 8%;
            z-index: 2;
            text-align: left;
            color: #ffffff;
            max-width: 950px;
            opacity: 0;
            transform: translateY(30px);
            animation: bannerContentFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        @keyframes bannerContentFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Small eyebrow title */
        .video-banner .banner-eyebrow {
            display: inline-block;
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.25em;
            color: #f59e0b; /* Amber highlighted eyebrow */
            margin-bottom: 1.5rem; /* Spacious gap */
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Large, bold, uppercase main title */
        .video-banner .banner-main-title {
            font-family: 'Outfit', sans-serif;
            font-size: 5rem;
            font-weight: 900;
            line-height: 1.1;
            margin: 0 0 3rem 0; /* Spacious gap before CTA */
            text-transform: uppercase;
            letter-spacing: -0.015em;
            background: linear-gradient(120deg, #ffffff 0%, #cbd5e1 40%, #fbbf24 70%, #f59e0b 100%);
            background-size: 200% auto;
            background-position: 0% center;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .video-banner .banner-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 2.25rem;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50px;
            color: #ffffff;
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .video-banner .banner-btn .arrow {
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .video-banner .banner-btn:hover {
            background: #ffffff;
            color: #000000;
            border-color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
        }

        .video-banner .banner-btn:hover .arrow {
            transform: translateX(4px);
        }

/* Dynamic Banner Slider */
.main-banner-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
}

.banner-slide {
    width: 100%;
    display: none;
    position: relative;
}

.banner-slide.active {
    display: block;
    animation: bannerFadeEffect 0.6s ease-in-out;
}

@keyframes bannerFadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.banner-img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    display: block;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 10;
    transition: background 0.3s, transform 0.2s;
}

.banner-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.05);
}

.banner-arrow-prev { left: 20px; }
.banner-arrow-next { right: 20px; }

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.2s;
}

.banner-dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

/*gallery css*/

.banner-container {
            position: relative;
            width: 100%;
            max-height: 400px;
            overflow: hidden;
        }

        .banner-container img {
            width: 100%;
            height: auto;
        }

/*download css*/
.maincontainer{
    text-align: center;
}
.inactive{
    background-color:lightblue;
}
.subjectdiv
{
margin: 10px;
    background-color: white;
    min-width: 250px;
    height: 50px;
    border-radius: 50px;
    font-family: "Quicksand", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #001;
     font-size:0.7rem;
     position: relative;
     text-transform: capitalize;
}
.subjectdiv:hover{
    background-color:#f0e2e1;
}
.lockimg{
    width:25px;
    height:25px;
    position:absolute;
    right:0;
}

.certifications-section {
    max-width: 1200px;
    margin: 4.5rem auto;
    padding: 0 1.5rem;
}

.certifications-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cert-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cert-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 70, 229, 0.15);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.06);
}

.cert-img-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s ease;
}

.cert-card:hover .cert-img-wrapper {
    transform: scale(1.05);
}

.cert-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cert-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    font-weight: 500;
}

      .button-green {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #28a745; /* Green color */
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.button-green:hover {
    background-color: #218838; /* Darker green on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.12);
}

/*socialicons*/
.social-icons {
    margin-top:5px;
            display: flex;
            gap: 15px;
            justify-content: center;
            align-items: center;
        }
        .social-icons a {
            text-decoration: none;
        }
        .social-icons img {
            width: 25px;
            height: 25px;
            transition: transform 0.3s ease;
        }
 .banner {
            position: relative;
            width: 100%;
        }

        .desktop-image {
            display: block;
            width: 100%;
            height: auto;
        }

        .mobile-image {
            display: none;
            width: 100%;
            height: auto;
        }

/*collabration css*/

.collab-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 30px 15px;
            text-align: center;
            background: #11131e;
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: white;
            border-radius: 10px;
            margin: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .collab-section h1 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .collab-section p {
            font-size: 1rem;
            margin-bottom: 20px;
            max-width: 600px;
            line-height: 1.6;
        }
.playimg{
    width:100px;
    height:33px;
}
        .logos {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .logos img {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .logos img:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

/* Popup Container */
        .popup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 400px;
            background: #111;
            color: #f4f4f4;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            text-align: center;
            padding: 20px;
            display: none;
            z-index: 1000;
            animation: fadeIn 0.5s ease-in-out;
        }

        .popup h2 {
            margin: 0;
            font-size: 1.8rem;
            color: #8f94fb;
        }

        .popup p {
            margin: 15px 0;
            font-size: 1rem;
            color: #ccc;
        }

        .popup button {
            background: #8f94fb;
            color: #111;
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s, color 0.3s;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            z-index: 999;
        }

        /* Fade-in Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translate(-50%, -60%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

/*blog css*/

.bloggrid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1.5fr));
gap: 20px;
padding: 40px 20px;
margin: 0 auto;
max-width: 1200px;
}
.bloggrid-item {
min-height:300px;
background-color: #000;
border: 1px solid #ddd;
border-radius: 10px;
padding: 20px;
text-align: center;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}

.bloggrid-item:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.bloggrid-item img {
width:300px;
height:135px;
object-fit: cover;
}

.blog-card-content {
padding: 20px;
}

.blog-card-title {
font-size: 1.5rem;
color: #fff;
margin-bottom: 10px;
}

.blog-card-description {
font-size: 1rem;
color: #fff;
line-height: 1.5;
margin-bottom: 15px;
}

.blog-card-link {
text-decoration: none;
font-weight: bold;
color: #007bff;
transition: color 0.3s ease;
}

.blog-card-link:hover {
color: #0056b3;
}

/* ==========================================================================
   INFINITE MARQUEE SLIDER & INSTITUTE CARDS
   ========================================================================== */
.marquee-section-header {
    text-align: center;
    padding: 5rem 2rem 1rem;
    background: #ffffff;
}

.marquee-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.marquee-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 3.5rem 0;
    background: #ffffff;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 10%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 10%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.institute-card {
    position: relative;
    flex: 0 0 280px;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
    cursor: pointer;
    background: #11131e;
}

.institute-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(99, 102, 241, 0.15);
}

.card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.institute-card:hover .card-bg {
    transform: scale(1.08);
}

.glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 11, 16, 0.95) 30%,
        rgba(10, 11, 16, 0.4) 65%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    z-index: 2;
}

.inst-badge {
    align-self: flex-start;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.inst-header {
    margin-bottom: 0.2rem;
}

.inst-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.inst-loc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    display: block;
    margin-top: 0.15rem;
}

.inst-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    margin: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), 
                opacity 0.35s ease, 
                margin-top 0.35s ease;
}

.institute-card:hover .inst-desc {
    height: 55px;
    opacity: 1;
    margin-top: 0.5rem;
}

/* Specific Border Accents for IISERs & IISc */
.shape-iisc { border-bottom: 4px solid #3b82f6; }
.shape-pune { border-bottom: 4px solid #10b981; }
.shape-kolkata { border-bottom: 4px solid #8b5cf6; }
.shape-mohali { border-bottom: 4px solid #f59e0b; }
.shape-bhopal { border-bottom: 4px solid #ef4444; }
.shape-tvm { border-bottom: 4px solid #06b6d4; }
.shape-tirupati { border-bottom: 4px solid #ec4899; }
.shape-berhampur { border-bottom: 4px solid #14b8a6; }
.shape-niser { border-bottom: 4px solid #6366f1; }

/* ==========================================================================
   STATS COUNTER SECTION (NUMBERS DIV)
   ========================================================================== */
.stats-outer-wrapper {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 5rem 0;
    margin: 4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    width: 100%;
}

.stats-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding: 0 1.5rem;
}

.stats-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.stat-card {
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 2.5rem 1.75rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-8px);
}

/* Card 1: Purple Tint */
.stat-card:nth-child(1) {
    background: #e6d2fc;
}
.stat-card:nth-child(1):hover {
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.12);
}
.stat-card:nth-child(1) .stat-icon {
    color: #7c3aed;
}

/* Card 2: Blue Tint */
.stat-card:nth-child(2) {
    background: #d2ebfc;
}
.stat-card:nth-child(2):hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
}
.stat-card:nth-child(2) .stat-icon {
    color: #1d4ed8;
}

/* Card 3: Orange Tint */
.stat-card:nth-child(3) {
    background: #fcead2;
}
.stat-card:nth-child(3):hover {
    border-color: rgba(217, 119, 6, 0.25);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.12);
}
.stat-card:nth-child(3) .stat-icon {
    color: #d97706;
}

/* Card 4: Sky Blue Tint */
.stat-card:nth-child(4) {
    background: #c7efff;
}
.stat-card:nth-child(4):hover {
    border-color: rgba(14, 165, 233, 0.25);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.12);
}
.stat-card:nth-child(4) .stat-icon {
    color: #0284c7;
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    background: rgba(255, 255, 255, 0.55);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.1) rotate(5deg);
}

.stat-icon {
    width: 24px;
    height: 24px;
    transition: stroke 0.3s ease;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #7c3aed, #4c1d95);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1.5px;
}

.stat-card:nth-child(2) .stat-number {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card:nth-child(3) .stat-number {
    background: linear-gradient(135deg, #d97706, #78350f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card:nth-child(4) .stat-number {
    background: linear-gradient(135deg, #0284c7, #075985);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.05rem;
    color: #0f172a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
    font-family: 'Outfit', sans-serif;
}

.stat-desc {
    font-size: 0.9rem;
    color: #334155;
    margin-top: 0.4rem;
    font-weight: 500;
    line-height: 1.5;
}

/* ==========================================================================
   DYNAMIC PROMO SECTION (NEW COURSE & MULTIPLE BOOKS)
   ========================================================================== */
.promo-grid-premium {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 1.5rem auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.promo-card-main {
    background: #ffffff;
    border-radius: 28px;
    padding: 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.promo-card-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.promo-card-header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.25rem;
}

.promo-header-group {
    flex: 1;
}

.promo-tag-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.promo-title-premium {
    font-family: 'Outfit', sans-serif;
    font-size: 2.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.promo-title-premium span {
    color: #4f46e5;
}

.promo-desc-premium {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
    max-width: 500px;
}

.promo-visual-anchor {
    flex-shrink: 0;
    background: #f8fafc;
    padding: 0.85rem 1.25rem;
    border-radius: 18px;
    align-self: flex-start;
}

.mentor-avatars {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    margin-left: -10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.avatar-img:first-child {
    margin-left: 0;
}

.avatar-iiser {
    background: #e0e7ff;
    color: #4f46e5;
}

.avatar-niser {
    background: #d1fae5;
    color: #059669;
}

.avatar-iisc {
    background: #fef3c7;
    color: #d97706;
}

.avatar-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.4;
}

.promo-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.promo-feature-mini-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-feature-mini-card:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

.feat-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(79, 70, 229, 0.06);
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-icon {
    width: 16px;
    height: 16px;
}

.feat-text-premium {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: #334155;
    font-weight: 600;
    line-height: 1.4;
}

.promo-card-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 1.25rem;
    display: flex;
    justify-content: flex-end;
}

.promo-action-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: #4f46e5;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.12);
    transition: all 0.3s ease;
}

.promo-action-premium:hover {
    background: #4338ca;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.2);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.promo-action-premium:hover .btn-arrow {
    transform: translateX(4px);
}

/* Two Column Books Section */
.books-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.book-card-premium {
    border-radius: 28px;
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.book-card-premium:nth-child(1) {
    background: #d2ebfc;
}

.book-card-premium:nth-child(2) {
    background: rgb(230, 210, 252);
}

.book-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.book-cover-wrapper {
    flex-shrink: 0;
}

.book-cover-premium {
    width: 75px;
    height: 105px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.book-details-premium {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}

.book-title-premium {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.book-desc-premium {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.4;
    margin: 0;
    max-width: 350px;
}

.book-action-premium {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #4f46e5;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.book-action-premium:hover {
    background: #4f46e5;
    color: #ffffff;
    border-color: #4f46e5;
    transform: translateY(-2px);
}

/* Specific responsiveness for small phones */

.action-arrow {
    transition: transform 0.3s ease;
}

.book-action-premium:hover .action-arrow {
    transform: translateX(3px);
}

/* ==========================================================================
   FEATURED VIDEO & YOUTUBE PROMO SECTION (COMBINED PREMIUM LOOK)
   ========================================================================== */
.featured-video-section {
    max-width: 1200px;
    margin: 4.5rem auto;
    padding: 0 1.5rem;
}

.video-container-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.video-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.video-info-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.video-badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.video-pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: videoPulse 1.5s infinite;
}

@keyframes videoPulse {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(1); opacity: 0.4; }
}

.video-sec-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-align: left;
}

.video-sec-title span {
    color: #ef4444;
}

.video-sec-subtitle {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    text-align: left;
}

.video-yt-subscribe-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    background: #ef4444;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(239, 68, 68, 0.15);
}

.video-yt-subscribe-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

.video-player-wrapper {
    width: 100%;
}

.video-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.video-iframe-wrapper iframe,
.video-iframe-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* ==========================================================================
   WHAT OUR STUDENTS SAY (TESTIMONIALS SLIDER)
   ========================================================================= */
.testimonials-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 1.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}

/* Base card styling */
.t-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.t-card:hover {
    transform: translateY(-8px);
}

/* Layout spans for Bento Grid */
.t-wide-card {
    grid-column: span 2;
}

.t-tall-card {
    grid-row: span 2;
}

/* Responsive Grid Spans */

/* Background watermark quote mark */
.quote-mark {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 8rem;
    font-family: 'Outfit', sans-serif;
    color: rgba(0, 0, 0, 0.04);
    pointer-events: none;
    line-height: 1;
    font-weight: 900;
}

/* Star rating style */
.t-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

/* Quote paragraph */
.t-quote {
    font-size: 1rem;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.t-wide-card .t-quote {
    font-size: 1.15rem;
}

/* User information block */
.t-user-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 1.5rem;
    margin-top: auto;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.t-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.25rem 0;
}

.t-badge {
    font-size: 0.75rem;
    background: #0f172a;
    color: #ffffff;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.t-college {
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: 0.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Bento Themes (Pastel Cards) */

/* Purple Theme (Card 1) */
.t-card.purple-theme {
    background: #f3e8ff;
}
.t-card.purple-theme:hover {
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.08);
}
.t-card.purple-theme .t-avatar {
    background: #a855f7;
    color: #ffffff;
}
.t-card.purple-theme .t-college {
    color: #7e22ce;
}

/* Blue Theme (Card 2) */
.t-card.blue-theme {
    background: #e0f2fe;
}
.t-card.blue-theme:hover {
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.08);
}
.t-card.blue-theme .t-avatar {
    background: #0284c7;
    color: #ffffff;
}
.t-card.blue-theme .t-college {
    color: #0369a1;
}

/* Orange Theme (Card 3) */
.t-card.orange-theme {
    background: #fef3c7;
}
.t-card.orange-theme:hover {
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.08);
}
.t-card.orange-theme .t-avatar {
    background: #d97706;
    color: #ffffff;
}
.t-card.orange-theme .t-college {
    color: #b45309;
}

/* Red Theme (Card 4) */
.t-card.red-theme {
    background: #ffe4e6;
}
.t-card.red-theme:hover {
    border-color: rgba(244, 63, 94, 0.2);
    box-shadow: 0 20px 40px rgba(244, 63, 94, 0.08);
}
.t-card.red-theme .t-avatar {
    background: #e11d48;
    color: #ffffff;
}
.t-card.red-theme .t-college {
    color: #be123c;
}

/* Green Theme (Card 5) */
.t-card.green-theme {
    background: #dcfce7;
}
.t-card.green-theme:hover {
    border-color: rgba(34, 197, 94, 0.2);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.08);
}
.t-card.green-theme .t-avatar {
    background: #16a34a;
    color: #ffffff;
}
.t-card.green-theme .t-college {
    color: #15803d;
}

/* ==========================================================================
   TRENDING BLOGS SECTION (LANDING PAGE)
   ========================================================================== */
.trending-blogs-section {
    padding: 60px 20px;
    background: #ffffff;
}

.trending-blogs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trending-header {
    margin-bottom: 40px;
    text-align: center;
}

.trending-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.trending-subtitle {
    color: #64748b;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
}

.trending-carousel-container {
    position: relative;
    padding: 0 10px;
}

.trending-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.trending-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.t-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #4f46e5;
    border: 1px solid rgba(79, 70, 229, 0.15);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-slider-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

.t-slider-btn:hover {
    background: #4f46e5;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.t-slider-prev { left: -28px; }
.t-slider-next { right: -28px; }

.t-slider-prev:hover svg { transform: translateX(-2px); }
.t-slider-next:hover svg { transform: translateX(2px); }

.trending-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - 20px);
}

.trending-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(79, 70, 229, 0.2);
}

.t-card-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.5s ease;
    background: #f8fafc;
}

.trending-card:hover .t-card-img {
    transform: scale(1.05);
}

.t-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
    z-index: 2;
}

.t-card-tag {
    align-self: flex-start;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.t-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Outfit', sans-serif;
}

.t-card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}

.t-card-title a:hover {
    color: #4f46e5;
}

.t-card-snippet {
    color: #64748b;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.t-card-readmore {
    color: #4f46e5;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.t-card-readmore::after {
    content: '\2192';
    margin-left: 6px;
    transition: transform 0.2s;
}

.t-card-readmore:hover {
    color: #3730a3;
}

.t-card-readmore:hover::after {
    transform: translateX(4px);
}

/* App Download CTA Section Premium Overhaul */
.app-cta-section {
    background: linear-gradient(135deg, #f8fbff, #eef4ff, #f4f0ff);
    padding: 100px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0f172a;
    overflow: hidden;
    position: relative;
}

.app-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.app-cta-content {
    flex: 1;
    max-width: 600px;
}

.app-cta-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 20px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.app-cta-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1e1b4b;
    letter-spacing: -0.5px;
}

.app-cta-content p {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
}

.app-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.app-stat-box {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.app-stat-box:hover {
    transform: translateY(-5px);
}

.app-stat-box strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: #4f46e5;
    line-height: 1.2;
}

.app-stat-box span {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
    margin-top: 5px;
}

.app-cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.app-playstore-btn {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.app-playstore-btn img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.app-playstore-btn:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 15px 30px rgba(79, 70, 229, 0.2));
}

.app-secondary-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.app-secondary-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.app-trust-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

.app-trust-text strong {
    color: #334155;
}

.app-cta-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.app-mockup-wrapper {
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.app-mockup-wrapper:hover {
    transform: rotateY(-5deg) rotateX(0deg);
}

.app-glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0) 70%);
    z-index: -1;
    filter: blur(40px);
}

.app-mockup {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    filter: drop-shadow(20px 30px 50px rgba(0,0,0,0.25));
    animation: premiumFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    transform: scale(1.15);
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    z-index: 3;
    white-space: nowrap;
    animation: parallaxBob 8s ease-in-out infinite;
}

.fc-1 {
    top: 10%;
    left: -40px;
    animation-delay: 0s;
}

.fc-2 {
    top: 40%;
    right: -60px;
    animation-delay: -2s;
}

.fc-3 {
    bottom: 20%;
    left: -20px;
    animation-delay: -4s;
}

@keyframes premiumFloat {
    0% { transform: scale(1.15) translateY(0px); }
    50% { transform: scale(1.15) translateY(-20px); }
    100% { transform: scale(1.15) translateY(0px); }
}

@keyframes parallaxBob {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Premium Floating WhatsApp Button */
.floating-wa-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.floating-wa-btn {
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
}

.wa-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-icon-wrapper img {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.floating-wa-btn:hover .wa-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: #20b858;
}

.wa-pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    z-index: 1;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.floating-wa-btn:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (ALL GROUPED AT END)
   ========================================================================== */

@media (max-width: 1250px) {
  .t-slider-prev { left: -10px; }
    .t-slider-next { right: -10px; }
}

@media (max-width: 1100px) {
  .menu {
    display: none;
    flex-direction: column;
    background: #0a0b10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 20px 0;
  }

  .menu.show {
    display: flex;
  }

  .toggler {
    display: block;
    color: white;
  }

  .dropdown {
    width: 100%;
    text-align: left;
  }

  .dropdown .dropbtn {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 0;
    
    /* Smooth Animation Setup */
    display: block !important; 
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, margin-top 0.3s ease-in-out;
  }

  .dropdown.active .dropdown-content {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
  }
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .brand-col {
    grid-column: span 2;
  }

  .video-banner .banner-main-title {
                font-size: 3.5rem;
            }

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

  .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .t-wide-card {
        grid-column: span 2;
    }
    .t-tall-card {
        grid-row: span 1;
    }

  .trending-card {
        flex: 0 0 calc(50% - 15px);
    }

  .app-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    
    .app-cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .app-cta-content h2 {
        font-size: 2.8rem;
    }

    .app-cta-buttons {
        justify-content: center;
    }

    .app-mockup-wrapper {
        transform: none;
    }
    
    .app-mockup-wrapper:hover {
        transform: none;
    }

    .app-mockup {
        max-height: 450px;
        transform: scale(1);
    }
    
    .float-card {
        display: none; /* Hide floating cards on mobile to avoid horizontal scrolling/clutter */
    }
    
    @keyframes premiumFloat {
        0% { transform: scale(1) translateY(0px); }
        50% { transform: scale(1) translateY(-15px); }
        100% { transform: scale(1) translateY(0px); }
    }
}

@media (max-width: 900px) {
  .video-grid-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

  .video-info-content {
        align-items: center;
    }

  .video-sec-title {
        text-align: center;
    }

  .video-sec-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 860px) {
  .promo-card-header-section {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

  .promo-visual-anchor {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
  .footer-big-text span {
    font-size: clamp(2rem, 8vw, 4.5rem);
    letter-spacing: 3px;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.05);
  }

  header {
    padding: 6px 0;
  }

  .navlogo {
    height: 45px;
    margin-right: 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .brand-col {
    grid-column: span 1;
    align-items: center;
  }

  .footer-col {
    align-items: center;
  }

  .contact-mini p, .footer-trust-signals {
    justify-content: center;
  }

  .trust-divider {
    display: none;
  }

  .footer-trust-signals {
    flex-direction: column;
    gap: 10px;
  }

  .footer-trust-signals .trust-item {
    text-align: center;
    font-size: 0.95rem;
  }

  /* Target Institutes mobile adjustments */
  .institute-card {
    flex: 0 0 200px;
    height: 280px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .glass-overlay {
    padding: 0.85rem;
    align-items: flex-start;
    text-align: left;
    background: linear-gradient(
        to top,
        rgba(10, 11, 16, 0.45) 20%,
        rgba(10, 11, 16, 0.1) 60%,
        transparent 100%
    );
  }

  .inst-name {
    font-size: 1.15rem;
  }

  .inst-loc {
    font-size: 0.75rem;
  }

  .inst-badge {
    padding: 0.2rem 0.5rem;
    font-size: 0.6rem;
  }

  /* General section header typography adjustments */
  .marquee-section-header {
    padding: 3rem 1.5rem 1rem;
  }

  .stats-section-header {
    margin-bottom: 2rem;
  }

  .marquee-main-title,
  .stats-main-title {
    font-size: 1.8rem;
    letter-spacing: 0.02em;
  }

  .marquee-subtitle,
  .stats-subtitle,
  .video-sec-subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .video-sec-title {
    font-size: 1.75rem;
  }

  /* Achievements/Stats Section mobile refinements */
  .stats-outer-wrapper {
    padding: 2.5rem 0;
    margin: 2rem 0;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
    border-radius: 18px;
  }

  .stat-icon-wrapper {
    width: 38px;
    height: 38px;
    margin-bottom: 0.75rem;
    border-radius: 10px;
  }

  .stat-icon {
    width: 18px;
    height: 18px;
  }

  .stat-number {
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  .stat-desc {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-top: 0.2rem;
  }

  .video-banner .content {
                bottom: 20%;
                left: 5%;
                right: 5%;
                text-align: center;
                align-items: center;
            }
            
            .video-banner .banner-main-title {
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
            }
            
            .video-banner .banner-eyebrow {
                font-size: 0.95rem;
            }
            
            .video-banner .banner-btn {
                padding: 0.85rem 1.75rem;
                font-size: 1rem;
            }

  .banner-img {
        max-height: 450px;
    }


  .desktop-image {
                display: none;
            }
            .mobile-image {
                display: block;
            }

  .collab-section h1 {
                font-size: 1.5rem;
            }

            .collab-section p {
                font-size: 0.9rem;
            }

            .logos img {
                width: 80px;
                height:80px;
            }

            .cta {
                font-size: 0.8rem;
                padding: 8px 16px;
            }

  .books-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

  .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .t-wide-card {
        grid-column: span 1;
    }
    .t-tall-card {
        grid-row: span 1;
    }

  .t-slider-btn {
        width: 44px;
        height: 44px;
    }
    .t-slider-prev { left: -5px; }
    .t-slider-next { right: -5px; }

  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 40px;
    opacity: 0.6;
  }
}

@media (max-width: 640px) {
  .promo-features-grid {
        grid-template-columns: 1fr;
    }

  .trending-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 600px) {
  .bloggrid-item img {
width:333px;
height: 150px;
}

.blog-card-content {
padding: 15px;
}

.blog-card-title {
font-size: 1.25rem;
}

.blog-card-description {
font-size: 0.9rem;
}
}

@media (max-width: 550px) {
  .book-card-premium {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
        padding: 1.5rem 1.25rem;
    }

  .book-desc-premium {
        max-width: 100%;
    }

  .book-action-premium {
        align-self: center;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
  .coursep{
        font-size:0.8rem;
        margin-bottom:3%;
    }
    .container {
        padding: 20px;
    }

    button {
        font-size: 14px;
    }
    .alert-box {
    width:300px;
    }

  .footer-big-text span {
    font-size: clamp(1.4rem, 7vw, 2.5rem);
    letter-spacing: 2px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  }

  .video-banner .banner-main-title {
                font-size: 2rem;
            }

  .collab-section {
                padding: 20px 10px;
            }

            .logos {
                gap: 10px;
            }

  .popup h2 {
                font-size: 1.5rem;
            }
            .popup p {
                font-size: 0.9rem;
            }

  .promo-card-main {
        padding: 1.5rem 1.25rem;
    }
    
    .promo-title-premium {
        font-size: 1.6rem;
    }
    
    .promo-desc-premium {
        font-size: 0.92rem;
    }
    
    .promo-visual-anchor {
        padding: 0.75rem 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .avatar-text {
        font-size: 0.75rem;
    }
    
    .promo-card-footer {
        padding-top: 1rem;
        justify-content: center;
    }
    
    .promo-action-premium {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.75rem;
        box-sizing: border-box;
    }
    
    .promo-feature-mini-card {
        padding: 0.65rem 0.85rem;
    }
}

@media (max-width: 450px) {
  .subjectdiv{
    font-size:0.5rem;
    vertical-align:centre;
}
.chh2{
    font-size:0.7rem;
}
}

@media (max-width: 400px) {
  .bloggrid-item img {
    width:266px;
    height: 120px;
}
}

@media (max-width: 360px) {
  .footer-big-text span {
    font-size: clamp(1.1rem, 6vw, 1.8rem);
    letter-spacing: 1px;
  }

  .promo-title-premium {
        font-size: 1.45rem;
    }
    .promo-tag-premium {
        font-size: 0.65rem;
        padding: 0.35rem 0.75rem;
    }
}
