/* Tutorrit Design System & Custom Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Slab:wght@100..900&display=swap');

:root {
  --clr-lightblue: #75a8e6;
  --clr-primary-blue: #0084c8;
  --clr-deepblue: #10469f;
  --clr-dark: #000000;
  --clr-white: #ffffff;
  --clr-light: #efefef;
  --clr-red: #fe012e;
  --clr-bg-info: #b9d3f2;
  --clr-yellow: #ffcc00;
  --clr-soft-blue: #f0f7ff;
}

body {
  font-family: "Roboto Slab", sans-serif !important;
  font-size: 18px;
  color: #000;
  line-height: 28px;
  font-weight: 400;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

a {
  color: var(--clr-primary-blue);
  text-decoration: none;
  transition: all 0.2s linear;
}
a:hover {
  color: #000;
}

h1, h2, h3, h4 {
  font-weight: 600;
  font-family: "Playfair Display", serif;
  color: #000;
}

h1 { font-size: clamp(28px, 4.2vw, 48px); }
h2 { font-size: clamp(22px, 3vw, 36px); }
h3 { font-size: clamp(20px, 2.2vw, 30px); }
h4 { font-size: clamp(16px, 2vw, 24px); }
h5 { font-size: clamp(14px, 2vw, 18px); }

.robotoslab {
  font-family: "Roboto Slab", sans-serif;
}

.bigtext span {
  color: var(--clr-lightblue);
  font-size: clamp(24px, 4.2vw, 40px);
  font-weight: 700;
}

.text-primary-blue {
  color: var(--clr-primary-blue) !important;
}

.text-info {
  color: var(--clr-lightblue) !important;
}

.bg-info {
  background: var(--clr-bg-info) !important;
}

.bg-lightblue {
  background: var(--clr-soft-blue);
}

.section, section {
  padding-top: 5vw;
  padding-bottom: 5vw;
  position: relative;
}

/* ==========================================================================
   Navigation & Header
   ========================================================================== */
.fixted-top {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: all 0.3s ease;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: transparent;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.shrink {
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
}

.navbar-brand img, .custom-logo {
  max-width: 180px;
  height: 50px;
  object-fit: contain;
  transition: all 0.3s ease;
  display: block;
}

.navbar.shrink .navbar-brand img, .navbar.shrink .custom-logo {
  max-width: 150px;
  height: 42px;
}

.navbar-nav .nav-item {
  margin: 0 4px;
}

.navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 8px 12px !important;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
  color: var(--clr-red) !important;
}

.header-conatct-btn {
  background-color: var(--clr-red) !important;
  border-color: var(--clr-red) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 40px !important;
  padding: 9px 24px !important;
  font-size: 15px !important;
  transition: all 0.25s ease;
}

.header-conatct-btn:hover {
  background-color: var(--clr-deepblue) !important;
  border-color: var(--clr-deepblue) !important;
}

.dropdown-toggle::after {
  width: 6px;
  height: 6px;
  border-style: solid !important;
  border-color: currentColor !important;
  border-width: 0px 0px 2px 2px !important;
  transform: rotate(-45deg);
  margin-left: 6px;
  vertical-align: 2px;
  display: inline-block;
  content: "";
}

@media (min-width: 992px) {
  .dropdown .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.25s ease-in-out;
    background: rgba(117, 168, 230, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 0 0 12px 12px;
    padding: 6px 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  }

  .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .dropdown-item {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
  }

  .dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
  }

  .dropdown-item:hover {
    background: #ffffff !important;
    color: var(--clr-deepblue) !important;
    padding-left: 24px !important;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #75a8e6;
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
  }
  .navbar-nav .nav-link {
    color: #fff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0 !important;
  }
  .dropdown-menu {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    padding: 5px 10px;
  }
  .dropdown-item {
    color: #fff !important;
    padding: 6px 10px;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  border-radius: 40px;
  padding: 12px 28px;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--clr-lightblue) !important;
  border-color: var(--clr-lightblue) !important;
  color: #ffffff !important;
}

.btn-primary:hover {
  background-color: var(--clr-deepblue) !important;
  border-color: var(--clr-deepblue) !important;
  transform: translateY(-1px);
}

.btn-dark {
  background-color: #212529 !important;
  border-color: #212529 !important;
  color: #ffffff !important;
}

.btn-dark:hover {
  background-color: var(--clr-deepblue) !important;
  border-color: var(--clr-deepblue) !important;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 24px !important;
  font-size: 14px !important;
}

.btn-link {
  color: var(--clr-lightblue);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-link:hover {
  color: #000;
  text-decoration: underline;
}

/* ==========================================================================
   Hero Banner Section
   ========================================================================== */
.banner {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 120px;
  padding-bottom: 40px;
  background: #ffffff;
}

.banner h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  color: #000;
}

.school-icon-wrapper {
  display: flex;
  align-items: center;
}

.school-icon-img {
  max-width: 140px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.06));
}

/* ==========================================================================
   Badge Banner Card
   ========================================================================== */
.badge-card {
  background-color: var(--clr-soft-blue);
  border-radius: 24px;
  padding: 24px 32px;
  border: 1px solid rgba(117, 168, 230, 0.25);
  box-shadow: 0 10px 30px rgba(0, 72, 254, 0.04);
}

.badge-card img {
  max-width: 130px;
  height: auto;
}

/* ==========================================================================
   Gradient Boxes & 3 Feature Cards
   ========================================================================== */
.gradientbox {
  background: linear-gradient(180deg, #fefdf9 0%, #f4f0e3 100%);
  position: relative;
}

.home-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.home-card .img-wrapper {
  overflow: hidden;
  height: 240px;
}

.home-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 0.6s ease-in-out;
}

.home-card:hover .img-wrapper img {
  transform: scale(1);
}

.home-card .card-body {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ==========================================================================
   Scalable Solutions & 6 Floating Icon Badges
   ========================================================================== */
.classroom-container {
  position: relative;
  max-width: 750px;
  margin: 40px auto;
}

.shadowpic {
  box-shadow: 14px 14px 0px 0px #e9eaeb;
  border-radius: 20px;
  overflow: hidden;
}

.shadowpic img {
  width: 100%;
  height: auto;
  display: block;
}

.iconlist {
  position: absolute;
  top: 50%;
  left: -140px;
  right: -140px;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 520px;
  row-gap: 24px;
  list-style: none;
  pointer-events: none;
}

.iconlist li {
  pointer-events: auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

.iconlist li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--clr-deepblue);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
}

.iconlist li img {
  max-width: 32px;
  height: auto;
}

.iconlist li:hover {
  background: var(--clr-red);
  transform: scale(1.05);
}

.iconlist li:hover a {
  color: #ffffff;
}

.iconlist li:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 1199.98px) {
  .iconlist {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    column-gap: 16px;
    row-gap: 16px;
    margin-top: 30px;
  }
}

/* ==========================================================================
   Data That Drives Positive Change Section
   ========================================================================== */
.graph-section {
  background: var(--clr-bg-info);
  padding: 70px 0;
}

.graph-image img {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  max-width: 90%;
  height: auto;
}

/* ==========================================================================
   Video Showcase Section
   ========================================================================== */
.videobox {
  position: relative;
  display: inline-block;
  width: 100%;
}

.videobox:before {
  position: absolute;
  content: '';
  background: linear-gradient(135deg, #75a8e6 0%, #b9d3f2 50%, #10469f 100%);
  width: 100%;
  height: 200px;
  bottom: -20px;
  border-radius: 20px;
  z-index: 0;
  left: -20px;
  opacity: 0.85;
}

.videobox img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.videobox .play-btn {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  font-size: 20px;
  background: #c3d6ec;
  color: #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.videobox:hover .play-btn {
  background: var(--clr-red);
  color: #fff;
  transform: scale(1.1);
}

/* ==========================================================================
   Checklist & Lists
   ========================================================================== */
.checklist {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}

.checklist li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  font-weight: 500;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-lightblue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.check-icon::before {
  content: '✓';
  font-size: 16px;
  font-weight: 900;
}

/* ==========================================================================
   Partners & Stats
   ========================================================================== */
.companybox img {
  height: 65px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.companybox img:hover {
  filter: grayscale(0%);
}

.stat-num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--clr-deepblue);
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
}

.seen-strip {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid #eee;
}

.seen-strip img {
  max-height: 38px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(60%);
  transition: all 0.25s ease;
}

.seen-strip img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ==========================================================================
   Global Footer
   ========================================================================== */
.footer {
  font-size: 14px;
  background: #dbe1f4;
  line-height: 28px;
  border-radius: 80px 80px 0 0;
  padding: 60px 0 30px;
}

.footer .btn {
  border-radius: 40px;
  padding: 8px 24px !important;
  font-size: 14px !important;
}

.footer h5 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
}

.f-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.f-menu a {
  display: block;
  line-height: 32px;
  color: #1a1a1a;
  font-size: 15px;
  transition: color 0.2s ease;
}

.f-menu a:hover {
  color: var(--clr-red);
}

.social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-dark);
  border-radius: 50%;
  color: #ffffff !important;
  width: 40px;
  height: 40px;
  transition: transform 0.6s ease, background 0.25s ease;
}

.social a svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.social a:hover {
  transform: rotateY(360deg);
  background: var(--clr-red);
}

.f-last {
  background: #000000 !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 500;
  padding: 22px 0;
  text-align: center;
}

.f-last .copyright-text {
  color: #ffffff !important;
  opacity: 0.95;
}

/* ==========================================================================
   Learning Outcomes & Subpages Extended Styles
   ========================================================================== */
.innerbanner {
  padding-top: 100px;
}

.mixbg {
  background: linear-gradient(135deg, #fef9f3 0%, #eef5fc 100%);
  position: relative;
}

.bg-info {
  background-color: #dbf5f3 !important;
}

.mixgradient {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  position: relative;
}

.gridcard {
  margin-top: 20px;
  margin-bottom: 20px;
}

.gridcard .card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.gridcard .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

.data-drivencard {
  border-radius: 24px;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  margin-top: 20px;
  margin-bottom: 20px;
}

.yellowcircle {
  border-radius: 24px;
  padding: 40px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.yellowcircle1 {
  border-radius: 24px;
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.two-box {
  background: #10469f;
  border-radius: 20px;
  padding: 35px 30px;
  color: #ffffff;
  height: 100%;
}

.two-box.yellowcircle {
  background: #ffffff !important;
  color: #212529 !important;
}

.two-box.diversity {
  background: #ffffff !important;
  color: #212529 !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.two-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 35px 30px;
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: all 0.25s ease;
}

.two-card:hover {
  border-color: var(--clr-primary-blue);
  box-shadow: 0 10px 30px rgba(0, 132, 200, 0.08);
}

.triple-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.triple-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.triple-card .card-body {
  padding: 24px;
}

.number-card {
  border-radius: 16px;
  padding: 30px 24px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  height: 100%;
  text-align: center;
}

.card-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--clr-lightblue);
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.circlebox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circlebox img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.simple-border-whitecard {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  height: 100%;
  transition: transform 0.25s ease;
}

.simple-border-whitecard:hover {
  transform: translateY(-4px);
  border-color: var(--clr-primary-blue);
}

.curriculm-lastbanner {
  background: linear-gradient(135deg, #10469f 0%, #0084c8 100%);
  border-radius: 24px;
  padding: 60px 40px;
  margin: 40px auto;
}

