:root {
    --bg-cream: #F6EAD9;
    --blue-dark: #002E6E;
    --orange-accent: #F35C27;
    --nav-gap: 2.5rem;

    --light-yellow:rgba(255, 232, 153, 1);
    --light-purple:rgba(206, 158, 233, 1);
    --light-orange:rgba(230, 166, 143, 1);
    --light-green:rgba(222, 240, 186, 1);
  }
  .txt-white{
    color: white !important; 
  }
 
  * {
    box-sizing: border-box;
  }
 
  body {
    margin: 0;
    font-family: "Poetsen One", sans-serif;
    cursor: default;
  }

  /* Show pointer only where it's clickable */
a,
button,
.social-links a,
.card-properties,
.left-card,
.image-card{
    cursor: pointer;
}

/* Smooth interactions */
a,
button,
.social-links a,
.card-properties,
.left-card,
.image-card{
    transition: transform .35s cubic-bezier(.22,1,.36,1),
                box-shadow .35s ease,
                filter .35s ease;
}

  .navbar-wrapper {
    background: var(--bg-cream);
    padding: 25px;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 1px 0px 7px 5px #3e3c3c78;
}


 
  .navbar-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
 
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
  }
 
  .logo svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
 
  .logo-text {
    line-height: 1.15;
  }
 
  .logo-text span {
    display: block;
    color: var(--blue-logo);
    font-family: "Poetsen One", sans-serif;
    white-space: nowrap;
  }
 
  .logo-text .line1 {
    font-size: 1.05rem;
    letter-spacing: 0.3px;
  }
 
  .logo-text .line2 {
    font-size: 0.95rem;
    letter-spacing: 0.3px;
  }
 
  /* Nav links */
  .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--nav-gap);
    margin: 0;
    padding: 0;
  }
 
  .nav-links a {
    text-decoration: none;
    font-family: "Poetsen One", sans-serif;
    font-size: 18px;
    color: var(--blue-dark);
    white-space: nowrap;
    transition: color 0.2s ease;
  }
 
  .nav-links a.active {
    color: var(--orange-accent);
  }
 
  .nav-links a:hover {
    color: var(--orange-accent);
  }
 
  /* Hamburger */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
 
  .menu-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--blue-dark);
    border-radius: 2px;
  }
 
  /* Responsive */
  @media (max-width: 900px) {
    .navbar {
      padding: 0.9rem 1.25rem;
    }
 
    .menu-toggle {
      display: flex;
    }
 
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: flex-start;
      background-color: var(--bg-cream);
      border-bottom: 2px solid var(--blue-dark);
      padding: 1rem 1.5rem;
      gap: 1.1rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
 
    .nav-links.open {
      max-height: 320px;
      padding: 1.2rem 1.5rem 1.5rem !important;
      border-bottom: 2px solid var(--blue-dark) !important;
      z-index: 1;
    }
 
    .navbar-inner {
      position: relative;
      flex-wrap: wrap;
    }
  }
 
  @media (max-width: 480px) {
    .logo-text .line1 {
      font-size: 0.9rem;
    }
    .logo-text .line2 {
      font-size: 0.8rem;
    }
    .logo svg {
      width: 32px;
      height: 32px;
    }
  }

  
  .hero-banner{
    background-color: var(--bg-cream);
  }


  .hero-banner .hero-four-block{
    position: absolute;
    bottom: -2px;
    max-width: 50% !important;
    right: 40px;
    transform: rotate(180deg);
  }

  .hero-banner .hero-student-image{
    position: absolute;
    bottom: 0;
    right: 30px;
    max-width: 100%;
    width: 50% !important;
  }
  .hero-banner .hello-idea{
    position: absolute;
    top: 53px;
    width: 330px;
    /* left: 18%; */
  }
  .hero-banner .creativity-innovation{
    position: absolute;
    bottom: 100px;
    width: 600px !important;
  }

  .ask-make-become{
    padding-top: 60px;
  }

  .ask-make-become .text-card p:nth-child(1){
    font-size: 35px;
    color: #000000;
    font-family: "Poetsen One", sans-serif;
  }

  .ask-make-become .text-card p:nth-child(2),
  .our-ideas .our-ideas-heading, .innovation-wrapper .innovation-heading,
  .footer-txt .footer-title{
  font-size: 50px;
  color: #002E6E;
  font-family: "Poetsen One", sans-serif;
  text-transform: uppercase;
  }
 
  .rubik-para{
    font-family: "Rubik", sans-serif;
    font-size: 18px;
  }

  .found-block{
    position: relative;
    padding-bottom: 60px;
  }
  .found-block .flying-rocket{
    position: absolute;
    right: 31px;
    top: -103px;
  }

  .found-block .row{
    align-items: center;
    background: rgba(220, 192, 153, 0.6);
    border-radius: 60px;
    margin-top: 80px;
    padding-left: 80px;
    padding-bottom: 0 !important;
  }

  .about-indo-block .row{
    height: 400px;
    min-height: 400px;
  }

  .about-indo-block .found-block-right-img-indo{
    position: absolute;
    height: 100%;
    object-fit: cover;
    z-index: 10;
    right: 20px;
    bottom: 60px;
  }

  .about-indo-block .col-md-8{
    padding-right: 50px;
  }

  .about-indo-block p{
    font-size: 28px !important;
  }
  .about-indo-block p span{
    font-size: 32px;
  }
  .about-indo-block h4{
    font-size: 20px;
  }

  .found-block .light-image{
    transform: rotate(353deg);
    position: absolute;
    top: -81px;
  }

  .found-block p{
    font-family: "Poetsen One", sans-serif;
    color: #002E6E;
    margin: 0;
    font-size: 24px;
  }
  .found-block .row h4{
    color: rgba(0, 46, 110, 1);
    font-family: "Poetsen One", sans-serif;
    padding-top: 20px;
    left: -114px;
  }
  .found-block p span{
    color: #B253E7;
    /* font-size: 1.5rem; */
  }

  .found-block .found-block-right-img{
    position: absolute;
    height: 100%;
    object-fit: cover;
    z-index: 10;
    bottom:72px;
    left: -15px;
  }

  .found-block .activity-wrapper{
    margin: 0 !important;
    top: 27px;
  }

  .found-block-right-img {
    /* background-image: url("../year-of-creativity-innovation/assets/view-more-activity.svg"); */
    background-repeat: no-repeat;
    width: max-content;
    background-size: cover;
    padding: 13px 12px;
    position: relative;
    background-position: 100% 100%;
    margin: 0 auto;
    display: flex;
}


.about-indo-block{
  margin-top: 130px;
}

/* Hover Effect */
.found-block-right-img:hover {
    filter: grayscale(100%);
    transform: scale(1.03) translateY(-8px);
    
}

.found-block .found-block-quote-mark{
  position: relative;
  left: -8px;
  top: -17px;
}

/* Initial Animation */
@keyframes floatInRight {
    from {
        opacity: 0;
        transform: translateX(80px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

  .our-ideas{
    padding-bottom: 40px;
  }

 
  .our-ideas .card-properties{
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
    border: none;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding-bottom: 15px;
    pointer-events: none;
  }

    .our-ideas .card-one {
      background-image: url(../year-of-creativity-innovation/assets/yellow-block.webp);
  }

  .our-ideas .card-two {
    background-image: url(../year-of-creativity-innovation/assets/purple-block.webp);
}

.our-ideas .card-three {
  background-image: url(../year-of-creativity-innovation/assets/orange-block.webp);
}


.our-ideas .card-four {
  background-image: url(../year-of-creativity-innovation/assets/green-block.webp);
}


  .our-ideas .idea-para-one{
    font-size: 35px;
    font-weight: 400;
    font-family: "Poetsen One", sans-serif;
    color: rgba(0, 46, 110, 1);
    padding: 0 25px;
    width: fit-content;
    margin: 0 auto;
    text-transform: uppercase;
  }

  .our-ideas .idea-para-two{
    color: rgba(0, 0, 0, 1);
    font-weight: 500;
    font-size: 20px;
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding-top:5px;
    text-transform: capitalize;
  }

  .our-ideas .ask-questio-mark{
    position: absolute;
    top: 55px;
    left: 75px;
  }

  @media (min-width: 768px) {
    .our-ideas .col-md-3 {
        flex: 0 0 auto;
        width: 24%;
    }
}

.our-ideas-wrapper{
  background-image: url('../year-of-creativity-innovation/assets/our-idea-bg.svg');
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  z-index: 10;
  position: relative;
}
.our-ideas-wrapper .hero-four-block-two{
  position: absolute;
  width: 1000px !important;
  bottom: -100px;
}

.light-block p {
  font-family: "Poetsen One", sans-serif;
  color: #002E6E;
  margin: 35px 0 0 0;
  font-size: 42px;
  display: block;
}

.light-block h4{
  float: inline-end;
  padding: 27px;
}

.light-block .light-lamp{
  transform: rotate(352deg) !important;
}

.light-block p span{
  font-size: 60px;
}



:root{
  --cream:#F6F1E7;
  --purple:#8B5CF6;
  --green:#8DC63F;
  --yellow:#F5C242;
  --orange:#E8622C;
  --ink:#1F2430;
  --recycle-green:#3F6E4E;
  --navy:#22304A;
}

.jg-section{
  position:relative;
  width:100%;
  margin:0 auto;
  padding:130px 48px 56px;
  overflow:hidden;
}

.genious-wrapper{
background:var(--cream);
position: relative;
padding-bottom: 180px;
}

/* ---------- Recycle icon (top right) ---------- */
.jg-recycle-icon{
  position:absolute;
  top:30px;
  right:0;
  width:380px;
  height:auto;
  opacity:0.95;
  pointer-events:none;
  animation:jg-spin-slow 14s linear infinite;
  transform-origin:50% 55%;
}
.jg-recycle-icon img{ width:100%; height:auto; display:block; }

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

/* ---------- Title (lego-brick style) ---------- */
.jg-title{
  margin:0 0 6px;
  font-size:0;
  line-height:0;
}
.jg-title-row{
  display:flex;
  align-items:flex-end;
  gap:8px;
  margin:0 0 8px;
}
.jg-brick{
  position:relative;
  display:inline-block;
  color:#fff;
  font-weight:800;
  font-size:34px;
  font-family:'Trebuchet MS', Arial, sans-serif;
  padding:10px 20px 14px;
  border-radius:6px;
  line-height:1;
  box-shadow:0 4px 0 rgba(0,0,0,0.12);
}
.jg-brick.big{ font-size:44px; padding:16px 26px 20px; }
.jg-brick::before{
  content:"";
  position:absolute;
  top:-9px;
  left:0;
  width:100%;
  height:16px;
  background-image:radial-gradient(circle, currentColor 48%, transparent 50%);
  background-size:26px 26px;
  background-repeat:repeat-x;
  background-position:16px center;
  color:inherit;
  opacity:1;
}
.jg-brick.purple{ background:var(--purple); color:#fff; }
.jg-brick.purple::before{ background-image:radial-gradient(circle, var(--purple) 48%, transparent 50%); }
.jg-brick.green{ background:var(--green); color:#1F2430; }
.jg-brick.green::before{ background-image:radial-gradient(circle, var(--green) 48%, transparent 50%); }
.jg-brick.yellow{ background:var(--yellow); color:#1F2430; }
.jg-brick.yellow::before{ background-image:radial-gradient(circle, var(--yellow) 48%, transparent 50%); }
.jg-brick.orange{ background:var(--orange); color:#fff; }
.jg-brick.orange::before{ background-image:radial-gradient(circle, var(--orange) 48%, transparent 50%); }

.jg-subtitle{
  margin: 14px 0 0;
  font-size: 26px;
  font-weight: 700;
  color: rgba(0, 0, 0, 1);
  font-family: "Poetsen One", sans-serif;
  padding-bottom: 25px;
}

/* ---------- Gallery grid ---------- */
.jg-gallery{
  /* display:grid; */
  display:flex;
  grid-template-columns:1.28fr 1fr 1.28fr;
  grid-template-rows:auto auto;
  grid-template-areas:
    "header topmid right"
    "leftphoto botmid right";
  column-gap:26px;
  row-gap:0;
  margin-top:26px;
  align-items:center;
  position: relative;
}

.jg-header-cell{ 
  grid-area:header; display: flex;
  align-items: center;
  gap: 50px; }

.jg-frame{
  position:relative;
  border-radius:6px;
  overflow:hidden;
  background:#000;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}
.jg-frame.left-photo{
  grid-area:leftphoto;
  aspect-ratio:1/1.06;
  border:3px solid var(--purple);
}
.jg-frame.top-mid{
  grid-area:topmid;
  aspect-ratio:1/1;
  border:3px solid var(--green);
  height: 100%;
  width: 100%;
}
.jg-frame.bot-mid{
  grid-area:botmid;
  aspect-ratio:1/1;
  border:3px solid var(--orange);
}
.jg-frame.right-photo{
  grid-area:right;
  aspect-ratio:1/1.5;
  border:3px solid var(--yellow);
}

/* ---------- Slider ---------- */
.jg-slider{
  position:relative;
  width:100%;
  height:100%;
}
.jg-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform:scale(1.04);
  transition:opacity 1s ease, transform 6s ease;
}
.jg-slide.is-active{
  opacity:1;
  transform:scale(1);
  z-index:2;
}
.jg-dots{
  position:absolute;
  bottom:8px;
  left:0;
  right:0;
  display:flex;
  justify-content:center;
  gap:5px;
  z-index:3;
}
.jg-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgba(255,255,255,0.55);
  transition:background 0.3s ease, transform 0.3s ease;
}
.jg-dot.is-active{
  background:#fff;
  transform:scale(1.3);
}

/* ---------- Nav arrows ---------- */
.jg-nav{
  position:absolute;
  right:52px;
  bottom:30px;
  display:flex;
  gap:8px;
}
.jg-nav-btn{
  width: 50px;
    height: 50px;
    border: none;
    border-radius: 4px;
    background: rgba(0, 46, 110, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease;
}
.jg-nav-btn:hover{ background:#324567; transform:translateY(-1px); }
.jg-nav-btn:active{ transform:translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .jg-gallery{
    grid-template-columns:1fr 1fr;
    grid-template-areas:
      "header header"
      "topmid botmid"
      "leftphoto right";
      gap: 30px;
  }
  .jg-frame.right-photo{ aspect-ratio:1/1.2; }
  .jg-recycle-icon{ width:86px; top:10px; right:14px; }
  .jg-brick{ font-size:26px; padding:8px 14px 11px; }
  .jg-brick.big{ font-size:32px; padding:12px 18px 16px; }
}

@media (max-width: 600px){
  .jg-section{ padding:70px 20px 40px; }
  .jg-gallery{
    grid-template-columns:1fr;
    grid-template-areas:
      "header"
      "leftphoto"
      "topmid"
      "botmid"
      "right";
  }
  .jg-frame.right-photo{ aspect-ratio:1/1.1; }
  .jg-frame.left-photo{ aspect-ratio:1/0.95; }
  .jg-title-row{ flex-wrap:wrap; }
  .jg-brick{ font-size:22px; padding:7px 12px 10px; }
  .jg-brick.big{ font-size:27px; padding:10px 16px 14px; }
  .jg-subtitle{ font-size:18px; padding: 0 !important; }
  .jg-nav{ right:20px; bottom:16px; }
  .jg-recycle-icon{ top:16px; right:0; width:164px; }
}

@media (prefers-reduced-motion: reduce){
  .jg-slide{ transition:opacity 0.4s ease; }
  .jg-recycle-icon{ animation:none; }
}

.activity-wrapper {
  background-image: url(../year-of-creativity-innovation/assets/view-more-activity.svg);
  background-repeat: no-repeat;
  width: max-content;
  background-size: cover;
  padding: 10px 15px;
  position: relative;
  background-position: 100% 100%;
  margin: 0 auto;
}
.activity-wrapper a{
  text-decoration: none;
  font-family: "Poetsen One", sans-serif;
  color: white;
  font-size: 18px;
  position: relative;
  top: 2px;
  display: flex;
  gap: 12px;
  transition: 0.5s ease-in-out;
}

.activity-wrapper a:hover{
  color: #f7cb5d;
}


.cube-animation{
  position: absolute;
  bottom: -35px;
  right: 30px;

}
.cube-animation img{
  transform: rotate(355deg);
}

.about-info{
  height: 100%;
  width: 100%;
  position: relative;
  background: #f6ead9;
}

.about-info .hero-four-block-three {
  position: absolute;
  top: -100px;
  right: 75px;
  transform: rotate(180deg);
  max-width: 800px !important;
}
.about-info .hero-four-block-four{
  position: absolute;
    max-width: 800px !important;
}

 
.col-md-4.left-card {
  background: rgba(231, 209, 179, 1);
  padding: 20px;
  border-radius: 10px;
  height: fit-content;
  text-align: center;
}
.about-info .left-card p:first-of-type {
  color: #002e6e;
  margin: 0;
  font-family: "Poetsen One", sans-serif;
  font-size: 26px;
  padding-top: 15px;
}

.about-info .left-card p:last-of-type {
  margin: 0;
  color: #000;
  font-weight: 400;
  font-family: "Rubik", sans-serif;
}
.about-info .text-card{
  padding-left: 80px;
}
.about-info .text-card .quote-mark{
  position: relative;
  left: -42px;
  bottom: -6px;
}
 .about-info .geomartic-animation-gif{
  position: absolute;
  bottom: -122px;
  right: 0;
 }
 .innovation-wrapper{
  padding: 70px 0 180px 0;
  background: #f6ead9;
 }

 .innovation-wrapper a{
  text-decoration: none !important;
  color: white !important;
  display: flex;
  gap: 10px;
 }

 .innovation-four-block{
  position: absolute;
  top: -100px;
  transform: rotate(180deg);
  width: 800px;
 }


 /* Swiper card css */
 .schools-heading{
  text-align:center;
  font-family:"Poetsen One", sans-serif;
  color: var(--navy);
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 1px;
  margin: 0 0 32px;
}

/* Swiper wrapper */
.schools-swiper{
  padding-bottom: 8px;
  overflow: visible;
}

.school-card{
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(20,40,80,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 4px solid transparent;
  transition: box-shadow .3s ease, transform .3s ease;
}

.school-card:hover{
  box-shadow: 0 10px 24px rgba(20,40,80,0.16);
  transform: translateY(-3px);
}

.school-card.accent-purple{ border-bottom-color: var(--purple); }
.school-card.accent-teal{ border-bottom-color: #178a8a; }
.school-card.accent-blue{ border-bottom-color: rgba(0, 114, 188, 1); }

.school-img-wrap{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd;
}

.school-img-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transform: scale(1.001); /* avoid subpixel edge line */
  transition: filter .5s ease, transform .5s ease;
}

.school-card:hover .school-img-wrap img{
  filter: grayscale(0%);
  transform: scale(1.04);
}

.school-info{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  flex: 1;
}

.school-info-left{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.school-logo{
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: cover;
}

.school-name{
  font-family: "Poetsen One", sans-serif;
  font-size: 23px;
  color: #1a1a1a;
  margin: 0;
  text-transform: capitalize;
}

.school-arrow{
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: none;
  background: var(--dark-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.school-arrow:hover{
  background: var(--blue);
  transform: translateX(2px);
}

.school-arrow svg{
  width: 18px;
  height: 18px;
}

/* Nav arrows */
.swiper-nav-btn{
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(20,40,80,0.12);
  box-shadow: 0 4px 12px rgba(20,40,80,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: background .2s ease, color .2s ease;
}
.swiper-nav-btn:hover{
  background: var(--navy);
  color: #fff;
}
.swiper-nav-btn.prev{ left: -6px; }
.swiper-nav-btn.next{ right: -6px; }
.swiper-nav-btn svg{ width: 20px; height: 20px; }
.swiper-nav-btn.swiper-button-disabled{
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.schools-swiper-outer{
  position: relative;
  padding: 0 8px;
}

/* Pagination dots (mobile) */
.swiper-pagination{
  position: static;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 6px;
  display: none;
}
.swiper-pagination-bullet{
  background: var(--navy);
  opacity: 0.25;
}
.swiper-pagination-bullet-active{
  opacity: 1;
  background: var(--blue);
}

@media (max-width: 640px){
 
  body{ padding: 32px 0 48px; }
}

body .swiper-slide{
  height: auto !important;
}

footer{
  background-color: #002e6e;
}

footer .footer-txt p:nth-child(2){
  color: rgba(247, 204, 92, 1);
  font-size: 26px;
  font-family: "Rubik", sans-serif;
  padding: 30px 0;
}

footer .social-links a{
  text-decoration: none;
  color: transparent !important;
}

footer .social-links{
  display: flex;
  gap: 20px;
}

.footer-blue-box-patch{
  position: absolute;
  right: 100px;
  top: -100px;
  width: 600px;
}

.footer-txt{
  padding-left: 80px !important;
}

.bottom-footer{
  background-color: rgba(231, 209, 178, 1);
  padding: 20px;
}

.bottom-footer p:nth-child(2){
  font-family: "Rubik", sans-serif;
    font-weight: 500;
    font-size: 16px;
}


#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4d4d, #ff8a00);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .35s ease;
  z-index: 9999;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 28px rgba(255,77,77,.45);
}

#scrollTopBtn:active {
  transform: scale(.95);
}

.modal-content{
  background-color: #f6ead9 !important;
  outline: 0;
  padding: 22px;
  border-radius: 20px;
}
.close-btn{
  background: white;
  max-width: fit-content;
  display: flex;
  margin-left: auto;
  padding: 10px;
  border-radius: 900px;
}





 
 
  /* ---------- shared card shell ---------- */
  .card{
    position:relative;
    background:#fff;
    
    overflow:hidden;
    box-shadow:0 10px 30px rgba(31,33,64,0.10);
    height:100%;
    display:flex;
    flex-direction:column;
    border-radius: 15px !important;
  }
  .creativity-video-wrapper img{
    border-radius: 15px;
  }
 
  /* ---------- header (logo + badge) shared by card 2 & 3 ---------- */
  .card-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:10px;
    padding:16px 18px 10px;
    background:#fff;
    z-index:3;
  }
  
  .card-welcome video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;

  }
  
  /* ---------- CARD 2 : image + title ---------- */
  .card-image .media-wrap{
    position:relative;
    flex:1;
    overflow:hidden;
  }
  .card-image img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }

 
 
  /* ---------- CARD 3 : header only / video body ---------- */
  .card-video{
    background:#fff;
  }
  .card-video .media-wrap{
    position:relative;
    flex:1;
    overflow:hidden;
    background:#fff;
  }
  .card-video video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }
 
  /* hide native controls entirely, just in case a browser still paints them */
  video::-webkit-media-controls{display:none !important;}
  video::-webkit-media-controls-enclosure{display:none !important;}
  video{outline:none;}
 
  @media (max-width:760px){
    .row{flex-direction:column;align-items:center;}
    .col-md-4{max-width:400px;width:100%;}
  }

  .row.creativity-video-wrapper{
    padding-top: 50px;
  }



  .school-arrow-btn{
    width: 88%;
    margin: 0 auto 20px;
    border: none;
    border-radius: 0;
    display: flex;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all .35s ease;
    color: white;
    font-family: "Poetsen One", sans-serif;
    gap: 10px;
  }


  .school-card.accent-teal-uws {
    border-bottom: 4px solid #035b8c;
}
.school-card.accent-teal-hadapsar{
  border-bottom: 4px solid var(--purple);
}


p.footer-title.txt-white{
  font-size: 60px;
  line-height: 80px;
}