/* carousel */
.carousel {
  height: 100vh;
  /* margin-top: -50px; */
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.carousel .list .item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}

.carousel .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel .list .item .content {
  position: absolute;
  top: 20%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 30%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
}

.carousel .list .item .author {
  font-weight: bold;
  letter-spacing: 10px;
}

.carousel .list .item .title,
.carousel .list .item .topic {
  font-size: 3em;
  font-weight: bold;
  line-height: 1.3em;
}

.carousel .list .item .topic {
  color: rgb(241, 214, 58);
}

.carousel .list .item .buttons {
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: 40px;
  gap: 5px;
  margin-top: 20px;
}

.carousel .list .item .buttons button {
  border: none;
  background-color: #eee;
  letter-spacing: 3px;
  font-family: Poppins;
  font-weight: 500;
}

.carousel .list .item .buttons button:nth-child(2) {
  background-color: transparent;
  border: 1px solid #fff;
  color: #eee;
}

/* thumbail */
.thumbnail {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px;
}

.thumbnail .item {
  width: 220px;
  height: 150px;
  flex-shrink: 0;
  position: relative;
}

.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.thumbnail .item .content {
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.thumbnail .item .content .title {
  font-weight: 500;
}

.thumbnail .item .content .description {
  font-weight: 300;
}

/* arrows */
.arrows {
  position: absolute;
  top: 80%;
  right: 52%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}

.arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee4;
  border: none;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  transition: .5s;
}

.arrows button:hover {
  background-color: #fff;
  color: #000;
}

/* animation */
.carousel .list .item:nth-child(1) {
  z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent .5s 1s linear 1 forwards;
}

@keyframes showContent {
  to {
    transform: translateY(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.carousel .list .item:nth-child(1) .content .title {
  animation-delay: 1.2s !important;
}

.carousel .list .item:nth-child(1) .content .topic {
  animation-delay: 1.4s !important;
}

.carousel .list .item:nth-child(1) .content .des {
  animation-delay: 1.6s !important;
}

.carousel .list .item:nth-child(1) .content .buttons {
  animation-delay: 1.8s !important;
}

/* create animation when next click */
.carousel.next .list .item:nth-child(1) img {
  width: 220px;
  height: 150px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  border-radius: 30px;
  animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
  to {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
  overflow: hidden;
  animation: showThumbnail .5s linear 1 forwards;
}

.carousel.prev .list .item img {
  z-index: 100;
}

@keyframes showThumbnail {
  from {
    width: 0;
    opacity: 0;
  }
}

.carousel.next .thumbnail {
  animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
  from {
    transform: translateX(150px);
  }
}

/* running time */

.carousel .time {
  position: absolute;
  z-index: 1000;
  width: 0%;
  height: 3px;
  background-color: rgb(241, 214, 58);
  ;
  left: 0;
  top: 0;
}

.carousel.next .time,
.carousel.prev .time {
  animation: runningTime 3s linear 1 forwards;
}

@keyframes runningTime {
  from {
    width: 100%
  }

  to {
    width: 0
  }
}


/* prev click */

.carousel.prev .list .item:nth-child(2) {
  z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
  animation: outFrame 0.5s linear 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0;
}

@keyframes outFrame {
  to {
    width: 220px;
    height: 150px;
    bottom: 50px;
    left: 50%;
    border-radius: 20px;
  }
}

.carousel.prev .thumbnail .item:nth-child(1) {
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail .5s linear 1 forwards;
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
  pointer-events: none;
}

.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
  animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
  to {
    transform: translateY(-150px);
    filter: blur(20px);
    opacity: 0;
  }
}

@media screen and (max-width: 678px) {
  .carousel .list .item .content {
    padding-right: 0;
  }

  .carousel .list .item .content .title {
    font-size: 30px;
  }
}

/*About Page*/
.about-sec__gallery {
  min-height: 500px;
  height: 400px;
  overflow: hidden;
}

.about-sec__col {
  position: relative;
  overflow: hidden;
}

.about-sec__track {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  will-change: transform;
}

.about-sec__card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.25rem;
  /* box-shadow: 0 4px 12px rgba(0,0,0,.1); */
}

.about-sec__col:hover .about-sec__track {
  animation-play-state: paused;
}

.about-gal-scroll {
  border-radius: 2rem !important;
}

@keyframes about-sec-scroll-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes about-sec-scroll-down {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .about-sec__gallery {
    min-height: 400px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .about-sec__card img {
    aspect-ratio: 1/1;
  }
}

/* ===================== ABOUT STACHS ===================== */
.about-stachs {
  position: relative;
  /* background image set ONLY in CSS as requested */
  background: url("../images/about/about-bg.png") center/cover no-repeat;
  overflow: hidden;
}

/* Floating badge */
.about-stachs__badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  color: #0c2546;
  font-weight: 600;
  z-index: 2;
}

.about-stachs__heart {
  color: #ff4d4f;
  font-size: 14px;
  line-height: 1;
}

.about-stachs__badge-title {
  font-weight: 700;
}

.about-stachs__avatar-dots {
  display: inline-flex;
  gap: 4px;
}

.about-stachs__avatar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c7ccd6;
  display: inline-block;
}

.about-stachs__badge-count {
  font-weight: 800;
}

/* Pins on map */
.about-stachs__pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ccd7ff;
  box-shadow: 0 0 0 4px rgba(204, 215, 255, .35), 0 0 18px rgba(160, 190, 255, .8);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.08)
  }

  100% {
    transform: scale(1)
  }
}

.about-stachs__arc {
  position: absolute;
  width: 160px;
  height: 80px;
  border-top: 2px dashed rgba(255, 255, 255, .6);
  border-radius: 50%/100% 100% 0 0;
  transform-origin: left bottom;
  opacity: .7;
  animation: arcDash 5s linear infinite;
}

@keyframes arcDash {
  to {
    transform: translateZ(0)
  }
}

/* Approximate pin/arc placements (tuned for the provided map image) */
.pin-a {
  top: 24%;
  left: 15%;
}

.pin-b {
  top: 30%;
  left: 63%;
}

.pin-c {
  top: 56%;
  left: 28%;
}

.pin-d {
  top: 64%;
  left: 78%;
}

.pin-e {
  top: 40%;
  left: 43%;
}

.arc-1 {
  top: 26%;
  left: 18%;
  transform: rotate(12deg);
}

.arc-2 {
  top: 34%;
  left: 45%;
  transform: rotate(-14deg);
}

.arc-3 {
  top: 48%;
  left: 32%;
  transform: rotate(6deg);
}

.arc-4 {
  top: 58%;
  left: 60%;
  transform: rotate(18deg);
}

/* ===== Stats row (style like reference) ===== */
.about-stachs__stats {
  color: #fff;
}

.about-stachs__stat {
  padding: 18px 10px;
}

.about-stachs__stat-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 10px;
  color: #ff7a59;
  /* orange stroke */
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
}

.about-stachs__stat-icon svg {
  width: 24px;
  height: 24px;
}

.about-stachs__stat-val {
  font-weight: 800;
  font-size: clamp(22px, 4.2vw, 32px);
  line-height: 1.1;
}

.about-stachs__stat-val .plus {
  font-weight: 800;
  margin-left: 2px;
}

.about-stachs__value {
  display: inline-block;
  min-width: .5ch;
}

.about-stachs__stat-label {
  font-size: 13px;
  opacity: .92;
}

/* Small screens tightness */
@media (max-width: 575.98px) {
  .about-stachs__map-wrap {
    padding: 12px;
  }

  .about-stachs__badge {
    transform: translateX(-50%) scale(.95);
  }

  .about-stachs__stat {
    padding: 12px 6px;
  }
}

/* Section look like the reference */
.awards-sec {
  background: #fff;
}

.awards-sec__eyebrow {
  display: inline-flex;
  gap: .45rem;
  color: #e15a63;
  font-weight: 700;
}

.awards-sec__title {
  font-weight: 800;
  font-size: clamp(20px, 3.2vw, 32px);
  color: #0f172a;
  margin: .35rem 0 .25rem;
}

.awards-sec__sub {
  color: #667085;
  margin: 0;
}

/* Swiper: plain logos, centered, with roomy spacing */
.awards-swiper {
  padding: 6px 4px;
}

.awards-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width controlled by Swiper via slidesPerView */
}

.award-logo {
  max-height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Slightly smaller logos on small phones */
@media (max-width:575.98px) {
  .award-logo {
    max-height: 70px;
  }
}

/* ==================== Visionary visuals ==================== */
.visionary-sec {
  position: relative;
  /* background: rgba(0, 0, 0, 0.685) url("../images/dump/test.jpg") center/cover no-repeat; */
  background-blend-mode: darken;
  color: #fff;
  overflow: hidden;
}

.visionary-sec__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(340deg, rgba(1, 102, 6, 0.75), #1f5091);
  box-shadow: inset 0 0 120px rgba(0, 0, 0, .45);
}

.visionary-sec .container {
  position: relative;
  z-index: 1;
}

/* Left copy */
.visionary-sec__eyebrow {
  font-weight: 700;
  letter-spacing: .08em;
  color: #F2D67A;
  margin-bottom: .5rem;
  font-size: .92rem;
}

.visionary-sec__title {
  font-weight: 800;
  line-height: 1.12;
  font-size: clamp(26px, 3.5vw, 44px);
  margin: 0 0 12px;
}

.visionary-sec__desc {
  color: rgba(255, 255, 255, .9);
  margin: 0 0 20px;
}

.btn-visionary {
  background: #C8A84E;
  color: #0b0b0b;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  box-shadow: 0 10px 24px rgba(200, 168, 78, .35);
}

.btn-visionary:hover {
  filter: brightness(1.05);
}

/* Right portraits — two images stacked; toggle with .is-active */
.visionary-sec__photo-wrap {
  position: relative;
  text-align: center;
  min-height: 320px;
}

@media (min-width:992px) {
  .visionary-sec__photo-wrap {
    min-height: 420px;
  }
}

.visionary-sec__photo {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(520px, 100%);
  height: auto;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .45));
  transition: opacity .25s ease, visibility 0s linear .25s;
}

.visionary-sec__photo.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: opacity .25s ease, visibility 0s linear 0s;
}

/* Profile switch buttons */
.visionary-sec__switch {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 20px;
}

.switch-btn {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 1rem;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.switch-btn:hover {
  /* transform:translateY(-2px); 
  box-shadow: 0 6px 12px rgba(0,0,0,0.2); */
}

.switch-btn.active {
  background: #C8A84E;
  color: #0b0b0b;
  border-color: #C8A84E;
  box-shadow: 0 6px 15px rgba(200, 168, 78, .35);
}

/* Arrow navigation buttons */
.arrow-btn {
  padding: 8px 16px;
  font-size: 16px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.arrow-btn.active {
  background: transparent;
  border-color: #fff;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Logos strip */
.visionary-sec__brands {
  background: rgba(0, 0, 0, .38);
  border-radius: 12px;
  padding: 14px 6px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.brands-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.brands-swiper img {
  max-height: 32px;
  width: auto;
  max-width: 100%;
  opacity: .9;
  filter: grayscale(.1) contrast(1.05) brightness(.98);
}

@media (max-width:575.98px) {
  .brands-swiper img {
    max-height: 28px;
  }
}

/* Smooth text swap (only for text/CTA) */
.js-swap {
  transition: opacity .22s ease, transform .22s ease;
}

.is-swapping {
  opacity: 0;
  transform: translateY(6px);
}

/* Prevent tiny layout jumps when titles differ */
/* @media (min-width:992px){
  .js-title { min-height: 2.6em; }
  .js-desc  { min-height: 3.2em; }
} */

/* Swiper guard (some setups force slide width) */
.brands-swiper .swiper-slide {
  width: auto;
}

/* ============ Digital Campus App Section ============ */
.dc-app-sec {
  position: relative;
  /* Use your background image here (CSS only, as requested) */
  background: url("../images/about/about-bg.png") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.dc-app-sec__overlay {
  position: absolute;
  inset: 0;
  /* background:
    linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.35) 100%); */
  /* soft vignette */
  /* box-shadow: inset 0 0 120px rgba(0,0,0,.4); */
  z-index: 0;
}

.dc-app-sec .container {
  position: relative;
  z-index: 1;
}

/* Typography */
.dc-app-sec__title {
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.15;
}

.dc-app-sec__underline {
  display: inline-block;
  width: 82px;
  height: 6px;
  background: #f7f7f7;
  border-radius: 6px;
}

.dc-app-sec__lead {
  color: rgba(255, 255, 255, .92);
  font-size: clamp(14px, 2vw, 16px);
  margin: .75rem 0 1rem;
}

.dc-app-sec__list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, .92);
  font-size: 15px;
}

.dc-app-sec__list li {
  margin-bottom: .4rem;
}

/* --- Custom bullet icon for dc-app-sec --- */
#dc-app-sec {
  /* Set your bullet image once here */
  --dc-bullet-img: url("../images/icons/tick-circle-white.png");
  /* or .svg */
  --dc-bullet-size: 18px;
  --dc-bullet-gap: 12px;
  /* space between bullet and text */
}

.dc-app-sec__list {
  list-style: none;
  /* remove default bullets */
  margin: 0;
  padding-left: 0;
}

.dc-app-sec__list li {
  position: relative;
  padding-left: calc(var(--dc-bullet-size) + var(--dc-bullet-gap));
  margin: 0 0 .55rem;
  line-height: 1.5;
}

.dc-app-sec__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25em;
  /* vertical alignment; tweak if needed */
  width: var(--dc-bullet-size);
  height: var(--dc-bullet-size);
  background: center / contain no-repeat var(--dc-bullet-img);
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .25));
  /* subtle pop on dark bg */
}

/* Smaller bullets on small screens */
@media (max-width: 575.98px) {
  #dc-app-sec {
    --dc-bullet-size: 16px;
    --dc-bullet-gap: 10px;
  }
}

/* Store buttons (image links) */
.dc-app-sec__store-img {
  display: block;
  height: 46px;
  /* consistent height; width auto */
  width: auto;
  border-radius: 8px;
  /* background: #fff; */
  padding: 6px 10px;
  /* box-shadow: 0 8px 20px rgba(0,0,0,.25); */
  transition: transform .15s ease, box-shadow .15s ease;
}

.dc-app-sec__store-img:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 14px 28px rgba(0,0,0,.35); */
}

/* Right mock image */
.dc-app-sec__mock {
  position: relative;
}

.dc-app-sec__phone {
  max-width: 920px;
  /* keeps it elegant on large screens */
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .45));
  border-radius: 18px;
  /* if the asset has square edges */
}

/* Small devices tweaks */
@media (max-width: 575.98px) {
  .dc-app-sec__store-img {
    height: 42px;
  }

  .dc-app-sec__phone {
    max-width: 320px;
  }
}


/* ===== FAQ section look (clean like the reference) ===== */
.faq-eyebrow {
  display: inline-flex;
  gap: .45rem;
  color: #e15a63;
  font-weight: 700;
}

.faq-title {
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 40px);
  color: #0f172a;
  margin: .4rem 0 .25rem;
  text-align: center;
}

.faq-sub {
  color: #667085;
  margin: 0;
  text-align: center;
}

/* Grid (2 columns on md+, 1 column on mobile) */
.faq-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 36px;
  }
}

/* Items */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  /* same divider for all */
  border-radius: 0;
  /* no rounded-only-last */
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 10px;
  gap: 12px;
  background: #fff;
  border: 0;
  color: #0f172a;
  text-align: left;
  font-weight: 500;
  cursor: pointer;
}

.faq-q:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 2px;
  border-radius: 8px;
}

.q-prefix {
  color: #6b7280;
  font-weight: 600;
  margin-right: 8px;
}

/* Arrow icon */
.faq-arrow {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  stroke: #111827;
  fill: none;
  stroke-width: 2;
  transition: transform .2s ease;
}

.faq-q[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
}

/* Answer panel with height animation */
.faq-a {
  display: none;
  height: 0;
  overflow: hidden;
  transition: height .22s ease;
}

.faq-a p {
  margin: 0 0 16px;
  color: #4b5563;
  padding: 0 10px 10px;
}

/* Rounded end like the screenshot */
.faq-col .faq-item:last-child {
  border: 0;
  border-bottom: 1px solid #e5e7eb;
  /* same as others */
  border-radius: 0;
}

/* ==================== Vision & Mission Section ==================== */
.vision-mission-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.vision-mission-section .mission-content,
.vision-mission-section .vision-content {
  padding: 20px 30px;
}

.vision-mission-section .mission-title,
.vision-mission-section .vision-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.vision-mission-section .mission-title:after,
.vision-mission-section .vision-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
}

.vision-mission-section .mission-title:after {
  background-color: #e15a63;
}

.vision-mission-section .vision-title:after {
  background-color: #F1D63A;
}

.vision-mission-section .mission-text,
.vision-mission-section .vision-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.vision-mission-section .mission-list,
.vision-mission-section .vision-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.vision-mission-section .mission-list li,
.vision-mission-section .vision-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
}

.vision-mission-section .mission-list li:before,
.vision-mission-section .vision-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #118743;
}

.vision-mission-section .mission-image img,
.vision-mission-section .vision-image img {
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* Vision image layout */
.vision-image-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.vision-image.main-image {
  margin-bottom: 15px;
}

.vision-image.secondary-images {
  display: flex;
  gap: 15px;
}

.vision-image.secondary-images img {
  width: calc(50% - 7.5px);
  height: 180px;
  object-fit: cover;
}

.vision-image img:hover,
.mission-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles for Vision & Mission */
@media (max-width: 991px) {
  .vision-mission-section {
    padding: 50px 0;
  }

  .vision-mission-section .mission-content,
  .vision-mission-section .vision-content {
    padding: 15px 20px;
    margin-top: 20px;
  }

  .vision-mission-section .mission-title,
  .vision-mission-section .vision-title {
    font-size: 1.6rem;
  }

  .vision-image.secondary-images img {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .vision-mission-section {
    padding: 40px 0;
  }

  .vision-mission-section .mission-title,
  .vision-mission-section .vision-title {
    font-size: 1.4rem;
  }

  .vision-mission-section .mission-text,
  .vision-mission-section .vision-text {
    font-size: 1rem;
  }

  .vision-image.secondary-images {
    flex-direction: column;
  }

  .vision-image.secondary-images img {
    width: 100%;
    height: auto;
  }

  .vision-mission-section .row {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .vision-mission-section {
    padding: 30px 0;
  }

  .vision-mission-section .mission-content,
  .vision-mission-section .vision-content {
    padding: 15px;
  }

  .vision-mission-section .mission-title,
  .vision-mission-section .vision-title {
    font-size: 1.3rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .vision-mission-section .mission-text,
  .vision-mission-section .vision-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .vision-mission-section .mission-list li,
  .vision-mission-section .vision-list li {
    font-size: 0.9rem;
    padding-left: 25px;
    margin-bottom: 8px;
  }
}

/* ============== Footer (mobile-first) ============== */
.footer {
  background: #118743;
  color: #eaf7ee;
  padding: 16px 0 20px;
  position: relative;
  overflow: hidden;
}

/* Decorative corners (kept subtle) */
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .15;
  width: 360px;
  height: 360px;
  background:
    radial-gradient(160px 160px at 70% 30%, rgba(255, 255, 255, .08), transparent 60%),
    radial-gradient(200px 200px at 20% 80%, rgba(255, 255, 255, .07), transparent 70%);
}

.footer::before {
  left: -20%;
  bottom: -40%;
  transform: rotate(25deg);
}

.footer::after {
  right: -20%;
  top: -40%;
  transform: rotate(-25deg);
}

.footer .container {
  position: relative;
  z-index: 1;
}

/* ---------- Head (brand + quick links) ---------- */
/* Mobile: stack & center */
.footer__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 576px) {
  .footer__head {
    gap: 24px;
  }
}

@media (min-width: 992px) {
  .footer__head {
    gap: 48px;
  }
}

/* Brand */
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.footer__logo--badge img {
  height: 34px;
}

/* Quick links */
.footer__links {
  width: 100%;
}

.footer__title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

/* Links row: scrollable on very small screens */
.footer__nav {
  display: flex;
  align-items: center;
  gap: 10px 16px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 4px 6px;
  margin: 0;
  list-style: none;
  scrollbar-width: none;
}

.footer__nav::-webkit-scrollbar {
  display: none;
}

.footer__nav li {
  flex: 0 0 auto;
  position: relative;
  white-space: nowrap;
}

.footer__nav li+li::before {
  content: "|";
  color: rgba(255, 255, 255, .75);
  margin: 0 12px 0 4px;
}

.footer__nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  opacity: .95;
  font-size: 14px;
}

.footer__nav a:hover {
  text-decoration: underline;
}

/* Divider */
.footer__divider {
  margin: 10px 0;
  height: 1px;
  background: rgba(255, 255, 255, .45);
}

/* ---------- Bottom (copyright + socials) ---------- */
/* Mobile: stack & center */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer__copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/* Socials */
.footer__social {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.footer__socbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #1c1f23;
  color: #fff;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}

.footer__socbtn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.footer__socbtn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ---------- Tablet & up ---------- */
@media (min-width: 576px) {
  .footer__logo img {
    height: 40px;
  }

  .footer__logo--badge img {
    height: 38px;
  }

  .footer__nav {
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {

  /* Desktop: brand left, links centered */
  .footer__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer__links {
    text-align: center;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer__copy {
    font-size: 15px;
  }
}

/* ============== Navbar ============== */
:root {
  --brand: #118743;
  --text-dark: #222;
  --text-light: #fff;
  --link-hover: #0a6d36;
  --shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

/* Header */
.main-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9000;
  /* Increased z-index to ensure it's above hero */
  width: 100%;
  padding: 14px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  overflow: visible;
  /* let dropdowns overflow the header */
  background: #fff;
  /* Default to white */
}

.main-header.transparent {
  background: transparent !important;
}

.main-header.sticky {
  background: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo (overlapped images; show one at a time) */
.logo {
  width: 210px;
  height: 30px;
  position: relative;
}

.logo img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
}

.logo-dark {
  display: none !important;
}

.logo-light {
  display: block !important;
}

.transparent .logo-light {
  display: block !important;
}

.transparent .logo-dark {
  display: none !important;
}

.sticky .logo-light {
  display: none !important;
}

.sticky .logo-dark {
  display: block !important;
}

/* Nav list */
.main-nav {
  display: block;
  z-index: 9001;
  /* Increased to match new header z-index */
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 6px;
  transition: color .2s ease;
}

.transparent .nav-link {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  /* Added text shadow for better visibility */
}

.sticky .nav-link {
  color: #222;
  text-shadow: none;
}

/* .nav-link:hover{ color:var(--text-light); }
.sticky .nav-link:hover{ color:var(--link-hover); } */

/* Desktop: show menu when transparent (full navbar look) */
@media (min-width:992px) {
  .main-header.transparent .nav-list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Keep burger visible in both states */
.mobile-nav-toggle {
  display: none;
  position: relative;
  width: 34px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform .25s ease, top .25s ease, opacity .2s ease, background .2s ease;
}

.mobile-nav-toggle span:nth-child(1) {
  top: 4px;
}

.mobile-nav-toggle span:nth-child(2) {
  top: 13px;
}

.mobile-nav-toggle span:nth-child(3) {
  top: 22px;
}

.sticky .mobile-nav-toggle span {
  background: #222;
}

.mobile-nav-toggle.active span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

/* Show burger under 992px in both states */
@media (max-width:991.98px) {
  .mobile-nav-toggle {
    display: inline-block;
  }
}

/* Dropdown */
.chev {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .2s ease;
}

.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 5px);
  min-width: 220px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow), 0 0 15px rgba(0, 0, 0, 0.1);
  /* Enhanced shadow for better visibility */
  z-index: 9002;
  /* Increased to be above navbar */
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  pointer-events: none;
  display: block;
  /* Ensure it's block by default, visibility controls showing/hiding */
}

.dropdown-item {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #222;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-item:hover {
  background: #f4f7f5;
  color: #0a6d36;
}

.has-dropdown.open>.dropdown-toggle .chev {
  transform: rotate(180deg);
}

.has-dropdown.open>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
  display: block;
}

/* Desktop hover/focus */
@media (min-width:992px) {

  .has-dropdown:hover>.dropdown-menu,
  .has-dropdown:focus-within>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
    display: block;
    /* Ensure dropdown is displayed */
  }

  .has-dropdown:hover>.dropdown-toggle .chev,
  .has-dropdown:focus-within>.dropdown-toggle .chev {
    transform: rotate(180deg);
  }
}

/* Mobile panel */
@media (max-width:991.98px) {
  .main-nav {
    position: fixed;
    left: -100%;
    top: 0;
    height: 100vh;
    width: min(86vw, 360px);
    background: #fff;
    padding: 84px 18px 18px;
    box-shadow: var(--shadow);
    transition: left .28s ease;
    z-index: 9010;
    /* Increased z-index to be above all elements */
  }

  .main-nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-link {
    color: #222 !important;
    padding: 10px 8px;
  }

  /* Force black text in mobile view */
  .dropdown-toggle {
    padding: 10px 8px;
    color: #222 !important;
  }

  /* Improved mobile clickability and forced black text */
  .chev {
    margin-left: auto;
  }

  .dropdown-menu {
    position: static;
    inset: auto;
    min-width: 0;
    margin: 6px 0 4px 0;
    padding: 6px;
    border-radius: 8px;
    box-shadow: none;
    background: #f7faf8;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
    /* Initially hidden in mobile */
  }

  .has-dropdown.open>.dropdown-menu {
    display: block;
    /* Show when parent is open */
  }
}

/* Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility 0s linear .2s;
  z-index: 8999;
  /* Just below header */
  display: none;
  /* Ensure it's hidden by default */
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  display: block;
}

/* Underline hover */
.nav-list>li {
  line-height: 1;
}

.nav-list>li>.nav-link::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 4px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.4);
  transform-origin: left;
  transition: opacity .18s ease, transform .18s ease;
}

.nav-list>li>.nav-link:hover::after {
  opacity: .5;
  transform: scaleX(1);
}

/* Body padding only when sticky */
body {
  padding-top: 0;
}

body.header-stuck {
  padding-top: 76px;
}

@media (max-width:991.98px) {
  body.header-stuck {
    padding-top: 64px;
  }
}

/* Page Banner Styles */
.page-banner {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;

}

.page-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/dump/hero-bg.webp');
  /* border-radius: 0 0 10rem 0; */
  background-size: cover;
  background-position: center;
  z-index: 1;
  /* transform: scale(1.05); 
  transition: transform 0.5s ease; */
}

.page-banner:hover .page-banner__bg {
  transform: scale(1.0);
}

.page-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.53), rgba(2, 10, 3, 0.49));
  /* Brand color gradient */
  /* border-radius: 0 0 10rem 0; */
  z-index: 2;
}

.page-banner__content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.page-banner__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb Styles */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item+.breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #fff;
  content: "/";
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .page-banner {
    height: 280px;
    margin-top: 64px;
    /* Adjust for smaller header on tablets */
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 250px;
  }

  .page-banner__title {
    font-size: 2rem;
  }

  .breadcrumb-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .page-banner {
    height: 250px;
    margin-top: 0px;
  }

  .page-banner__title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .page-banner__bg {
    border-radius: 0rem !important;
  }

  .breadcrumb {
    font-size: 0.875rem;
  }

  .page-banner__overlay {
    /* background: rgba(17, 135, 67, 0.7); Simplified gradient for mobile */
    border-radius: 0rem !important;
  }
}

.directors-sec .dir-card {
  border: 0;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  overflow: hidden;
  background: #fff;
}

.directors-sec .dir-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (max-width:576px) {
  .directors-sec .dir-photo {
    height: 220px;
  }
}

.directors-sec .dir-name {
  color: #2B2F8E;
}

/* blue like reference */
.directors-sec .dir-position {
  color: #F28C28;
}

/* warm accent */
.directors-sec .dir-header {
  gap: .75rem;
}

/* name <-> icon row */
.directors-sec .btn-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5f9ff, #eaf1ff);
  border: 1px solid #dce6ff;
  color: #2B2F8E;
  box-shadow: 0 3px 6px rgba(0,0,0,.08);
  transition: all 0.25s ease;
}
.directors-sec .btn-mail:hover {
  background: #2B2F8E;
  color: #fff;
}


.object-fit-cover {
  object-fit: cover;
}

/* Safari helper */

/* ===== Schools List (cards) ===== */
  .schools-list .sch-card{border:0;border-radius:1.25rem;background:#e9f1ff;box-shadow:0 10px 28px rgba(25,41,85,.08);overflow:hidden}
  .schools-list .sch-photo-wrap{position:relative;padding:12px 12px 0}
  .schools-list .sch-photo{width:100%;height:170px;object-fit:cover;border-radius:.8rem;display:block}
  @media (min-width:576px){.schools-list .sch-photo{height:200px}}

  /* FAB: now CALL instead of mail */
  .schools-list .sch-fab{position:absolute;right:24px;bottom:-18px;width:44px;height:44px;border-radius:50%;background:#223556;color:#fff;border:0;display:inline-flex;align-items:center;justify-content:center;box-shadow:0 8px 20px rgba(0,0,0,.18);transition:transform .18s ease,opacity .18s ease}
  .schools-list .sch-fab:hover{transform:translateY(-2px);opacity:.95}

  .schools-list .sch-brand{color:#4766c7;font-weight:600;font-size:.95rem}
  .schools-list .sch-branch{color:#0b1a2b}

  /* Email row – clean look */
  .schools-list .sch-label{color:#6b7a90}
  .schools-list .sch-email-row{display:flex;align-items:flex-start;gap:.5rem}
  .schools-list .sch-email-ico{
    width:28px;height:28px;border-radius:50%;
    background:#223556;color:#fff;display:inline-flex;align-items:center;justify-content:center;
    font-size:14px;flex:0 0 28px;
  }
  .schools-list .sch-email-link{
    color:#0b1a2b;font-weight:400;text-decoration:none;
    word-break: break-word;
  }
  .schools-list .sch-email-link:hover{ text-decoration:underline; }

  /* ===== Franchise Scroll ===== */
.franchise-scroll{padding:48px 0}
.franchise-scroll .fs-container{max-width:1180px;margin:0 auto;padding:0 16px}
.franchise-scroll .fs-head{display:flex;gap:16px;justify-content:space-between;align-items:flex-start;flex-wrap:wrap}
.franchise-scroll .fs-titles h2{font-size:clamp(20px,2.4vw,28px);margin:0 0 6px;font-weight:700;line-height:1.25}
.franchise-scroll .fs-titles p{margin:0;color:#5c6473;max-width:760px}

.franchise-scroll .fs-nav{display:flex;gap:10px}
.franchise-scroll .fs-btn{width:38px;height:38px;border-radius:999px;border:0;background:#0a7a3e;color:#fff;display:grid;place-items:center;cursor:pointer;box-shadow:0 6px 16px rgba(10,122,62,.25)}
.franchise-scroll .fs-btn:disabled{opacity:.45;cursor:not-allowed}
.franchise-scroll .fs-btn span{font-size:18px;line-height:1}

/* ===== Rail / Items ===== */
.franchise-scroll .fs-rail{position:relative;margin-top:26px;padding:32px 0 16px}
/* Timeline line */
.franchise-scroll .fs-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 82%;              /* place line at vertical center of pins */
  height: 2px;
  background: #e8ecf3;
  z-index: 0;            /* ensure behind pins */
}

/* Pin sits on line */
.franchise-scroll .fs-pin {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px #ffbd66; /* or your accent color */
  position: relative;
  z-index: 1;            /* sits above line */
}

.franchise-scroll .fs-window{display:grid;grid-template-columns:repeat(4, minmax(0,1fr));gap:28px;align-items:flex-start}
@media (max-width:900px){ .franchise-scroll .fs-window{grid-template-columns:repeat(3,1fr)} }
@media (max-width:640px){ .franchise-scroll .fs-window{grid-template-columns:repeat(2,1fr)} }
@media (max-width:420px){ .franchise-scroll .fs-window{grid-template-columns:1fr} }

/* ===== Card ===== */
.franchise-scroll .fs-item{position:relative;text-align:center;z-index:1;animation:fsFade .28s ease both}
@keyframes fsFade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

.franchise-scroll .fs-icon-wrap{
  width:88px;height:88px;margin:0 auto 10px;display:grid;place-items:center;border-radius:999px;
  background:#fff;box-shadow:0 10px 28px rgba(25,41,85,.08), inset 0 0 0 3px #f0f4ff
}
.franchise-scroll .fs-icon{font-size:0}
.franchise-scroll .fs-icon img{width:46px;height:46px;display:block;object-fit:contain}

.franchise-scroll .fs-title{font-weight:600;margin:6px 0 18px;color:#1f2a44}
.franchise-scroll .fs-stem{position:relative;height:100px;display:flex;align-items:flex-end;justify-content:center}
.franchise-scroll .fs-stem::before{content:"";position:absolute;top:0;left:calc(50% - 1px);width:2px;height:100%;background:#e8ecf3}
.franchise-scroll .fs-pin{width:26px;height:26px;border-radius:50%;background:#fff;box-shadow:0 0 0 4px #ffbd66;position:relative;z-index:2}
.franchise-scroll .fs-day{margin-top:12px;font-size:14px;color:#57607a}

/* Accent bg options (optional) */
.franchise-scroll .c-peach .fs-icon{background:#fff6ef}
.franchise-scroll .c-green .fs-icon{background:#eefcf3}
.franchise-scroll .c-gold  .fs-icon{background:#fff9e9}
.franchise-scroll .c-violet.fs-icon{background:#f4efff}
/* Smooth fade / slide on update */
.franchise-scroll .fs-item{animation:fsFade .28s ease both}
@keyframes fsFade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

/*=========== Support Systems (cards) ===========*/
  :root{
    --sup-bg:#f7f8fa;
    --sup-card-bg:#fff;
    --sup-text:#1b1f23;
    --sup-muted:#6b7280;
    --sup-brand:#00b36b; /* green ticks */
    --sup-shadow:0 10px 28px rgba(25,41,85,.08);
    --radius:18px;
    --container:1180px;
  }
  .sup-sys-sec{
    font-family:"Inter",system-ui,Segoe UI,Roboto,Arial,Helvetica,sans-serif;
    background:#f8f8f8;
    padding:56px 16px 80px;
  }
  .sup-sys-container{
    max-width:var(--container);
    margin:0 auto;
  }
  .sup-sys-title{
    text-align:center;
    font-weight:700;
    line-height:1.2;
    color:var(--sup-text);
    font-size: clamp(22px, 2.4vw, 34px);
    margin:0 0 28px;
  }
  .sup-sys-title span{
    font-weight:600;
  }

  .sup-sys-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:22px;
  }
  @media (min-width: 768px){
    .sup-sys-grid{grid-template-columns:repeat(2,1fr);}
  }
  @media (min-width: 1024px){
    .sup-sys-grid{grid-template-columns:repeat(3,1fr);}
  }

  .sup-card{
    background:var(--sup-card-bg);
    border-radius:var(--radius);
    box-shadow:var(--sup-shadow);
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .sup-card:hover{
    transform:translateY(-4px);
    box-shadow:0 16px 36px rgba(25,41,85,.12);
  }
  .sup-card-media{
    margin:0;
    position:relative;
    padding:12px 12px 0 12px;
  }
  .sup-card-media img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:calc(var(--radius) - 6px);
    display:block;
  }
  .sup-card-body{
    padding:14px 18px 18px;
  }
  .sup-card-title{
    font-size:18px;
    font-weight:600;
    margin:6px 0 10px;
    color:var(--sup-text);
  }
  .sup-list{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .sup-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#374151;
    font-size:15px;
    line-height:1.5;
  }
  /* Tick icon */
  .sup-list .tick{
    flex:0 0 16px;
    width:16px;height:16px;
    margin-top:3px;
  }
  .sup-list .tick circle{ fill:var(--sup-brand); }
  .sup-list .tick path{
    fill:none; stroke:#fff; stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round;
  }

  .ipc-sublist {
  margin: 4px 0 10px 28px;
  padding-left: 0;
  list-style: none;
}
.ipc-sublist li {
  position: relative;
  padding-left: 16px;
  margin: 3px 0;
  font-size: 14px;
  color: #374151;
}
.ipc-sublist li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #169B52;   /* green */
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

  /* Spacing tweaks for very small screens */
  @media (max-width:420px){
    .sup-card-media img{ height:200px; }
    .sup-card-title{ font-size:16px; }
    .sup-list li{ font-size:14px; }
  }

/*========investment cards=============*/
  :root{
    --ipc-radius:16px;
    --ipc-shadow:0 10px 28px rgba(25,41,85,.08);
    --ipc-green:#169B52;
    --ipc-text:#1f2937;
    --ipc-muted:#6b7280;
    --ipc-card-bg:#fff;
    --ipc-body-bg:#efc0c4; /* soft pink like the reference */
    --ipc-container:1180px;
  }
  .invest-plan-cards{
    font-family:"Inter",system-ui,Segoe UI,Roboto,Arial,Helvetica,sans-serif;
    padding:50px 16px 80px;
    background:#ffffff;
  }
  .ipc-container{ max-width:var(--ipc-container); margin:0 auto; }

  /* Grid */
  .ipc-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:26px;
  }
  @media (min-width: 900px){ .ipc-grid{ grid-template-columns:repeat(3,1fr); } }
  @media (min-width: 640px) and (max-width: 899.9px){ .ipc-grid{ grid-template-columns:repeat(2,1fr); } }

  /* Card */
  .ipc-card{
    background:var(--ipc-card-bg);
    border-radius:var(--ipc-radius);
    overflow:hidden;
    box-shadow:var(--ipc-shadow);
    border:1px solid #eaeaea;
    display:flex;
    flex-direction:column;
  }
  .ipc-card:hover{ box-shadow:0 16px 36px rgba(25,41,85,.12); }

  /* Top image area (fixed height, like reference) */
  .ipc-media{ padding:14px 14px 0 14px; }
  .ipc-blob{ width:100%; height:260px; display:block; }
  @media (max-width:420px){ .ipc-blob{ height:220px; } }

  /* Body (pink panel) */
  .ipc-body{
    background:var(--ipc-body-bg);
    padding:18px 20px 22px;
  }
  .ipc-title{
    font-size:18px;
    font-weight:600;
    color:var(--ipc-text);
    margin:4px 0 6px;
  }
  .ipc-sub{
    font-size:14px;
    color:var(--ipc-muted);
    margin:0 0 10px;
  }

  /* Lists */
  .ipc-list{
    list-style:none;
    padding:0;
    margin:0;
    display:flex;
    flex-direction:column;
    gap:10px;
    color:#374151;
    font-size:15px;
    line-height:1.6;
  }
  .ipc-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
  }
  .ipc-list .tick{
    width:16px; height:16px; margin-top:4px; flex:0 0 16px;
    background:var(--ipc-green);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M9.2 16.2L4.8 11.8l1.4-1.4 3 3 8.6-8.6 1.4 1.4z"/></svg>') center/14px 14px no-repeat;
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M9.2 16.2L4.8 11.8l1.4-1.4 3 3 8.6-8.6 1.4 1.4z"/></svg>') center/14px 14px no-repeat;
    border-radius:999px;
  }
  .ipc-head{ font-weight:600; }

  .ipc-sublist{
    margin:2px 0 8px 28px;
    color:#4b5563;
    list-style: disc;
  }
  .ipc-sublist li{ margin:2px 0; }

  /* Small text scaling */
  @media (max-width:520px){
    .ipc-title{ font-size:16px; }
    .ipc-sub{ font-size:13px; }
    .ipc-list{ font-size:14px; }
  }

  /*===========Form-Franchise=======*/
    :root{
    --ff-green:#169B52;
    --ff-dark:#111827;
    --ff-muted:#6b7280;
    --ff-border:#e7e7ea;
    --ff-card:#ffffff;
    --ff-shadow:0 10px 28px rgba(25,41,85,.08);
    --ff-radius:14px;
    --ff-container:1180px;
    --ff-error:#c0362c;
  }
  .franchise-form{font-family:"Inter",system-ui,Segoe UI,Roboto,Arial,Helvetica,sans-serif;background:#fff;padding:56px 16px;}
  .ff-container{max-width:var(--ff-container);margin:0 auto;display:grid;grid-template-columns:1fr;gap:28px;align-items:start;}
  @media (min-width: 992px){ .ff-container{ grid-template-columns: 1.1fr 1fr; gap:34px; } }

  .ff-title{font-size: clamp(28px, 4vw, 42px); line-height:1.1; color:var(--ff-dark); margin:0 0 6px;}
  .ff-lead{color:var(--ff-muted); margin:0 0 18px;}

  .ff-block{list-style:none; padding:0; margin:0 0 18px; display:flex; flex-direction:column; gap:14px;}
  .ff-row{display:flex; gap:12px;}
  .ff-ico{flex:0 0 28px; width:28px; height:28px; display:inline-grid; place-items:center; background:#eaf7f0; border-radius:50%;}
  .ff-label{font-weight:600; color:#1f2937; margin-bottom:2px;}
  .ff-text{color:#374151;}
  .ff-social{display:flex; gap:10px; align-items:center; margin-top:8px; color:#1f2937;}
  .ff-soc{display:inline-grid; place-items:center; width:32px; height:32px; border-radius:50%; background:#f2f3f5;}
  .ff-soc svg{width:18px; height:18px;}

  .ff-right{position:relative;}
  .ff-card{position:relative; background:var(--ff-card); border:1px solid var(--ff-border); border-radius:var(--ff-radius); box-shadow:var(--ff-shadow); padding:18px; }
  .ff-row2{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px;}
  .ff-row1{margin-bottom:12px;}
  .ff-field{display:flex; flex-direction:column;}
  .ff-input{width:100%; border:1px solid var(--ff-border); border-radius:10px; padding:12px 14px; outline:none; font-size:14px; color:#111827; background:#fff;}
  .ff-input:focus{border-color:#c9e9d8; box-shadow:0 0 0 3px rgba(22,155,82,.12);}
  .ff-input.ff-invalid{border-color:var(--ff-error); box-shadow:0 0 0 3px rgba(192,54,44,.12);}
  .ff-textarea{min-height:110px; resize:vertical;}
  .ff-btn{display:block; width:100%; background:var(--ff-green); color:#fff; border:0; border-radius:10px; padding:12px 16px; font-weight:600; cursor:pointer;}
  .ff-btn[disabled]{opacity:.6; cursor:not-allowed;}
  .ff-btn:hover:not([disabled]){filter:brightness(.95);}

  .ff-error{color:var(--ff-error); font-size:12px; min-height:16px; margin-top:6px;}

  /* decorative plane */
  .ff-plane-wrap{position:absolute; right:-18px; bottom:-28px; pointer-events:none;}
  .ff-plane-svg{width:320px; height:auto; display:block;}
  @media (max-width: 600px){
    .ff-row2{grid-template-columns:1fr; }
    .ff-plane-wrap{right:-8px; bottom:-22px;}
    .ff-plane-svg{width:240px;}
  }

  .ff-status{margin-top:10px; font-size:14px;}
  .ff-status.ok{color:#0a7f42;}
  .ff-status.err{color:#b00020;}


  :root{
    --ff-green:#169B52;
    --ff-dark:#111827;
    --ff-muted:#6b7280;
    --ff-border:#e7e7ea;
    --ff-card:#ffffff;
    --ff-shadow:0 10px 28px rgba(25,41,85,.08);
    --ff-radius:14px;
    --ff-container:1180px;
    --ff-error:#c0362c;
  }
  .franchise-form{font-family:"Inter",system-ui,Segoe UI,Roboto,Arial,Helvetica,sans-serif;background:#fff;padding:56px 16px;}
  .ff-container{max-width:var(--ff-container);margin:0 auto;display:grid;grid-template-columns:1fr;gap:28px;align-items:start;}
  @media (min-width: 992px){ .ff-container{ grid-template-columns: 1.1fr 1fr; gap:34px; } }

  .ff-title{font-size: clamp(28px, 4vw, 42px); line-height:1.1; color:var(--ff-dark); margin:0 0 6px;}
  .ff-lead{color:var(--ff-muted); margin:0 0 18px;}

  .ff-block{list-style:none; padding:0; margin:0 0 18px; display:flex; flex-direction:column; gap:14px;}
  .ff-row{display:flex; gap:12px;}
  .ff-ico{flex:0 0 28px; width:28px; height:28px; display:inline-grid; place-items:center; background:#eaf7f0; border-radius:50%;}
  .ff-label{font-weight:600; color:#1f2937; margin-bottom:2px;}
  .ff-text{color:#374151;}
  .ff-social{display:flex; gap:10px; align-items:center; margin-top:8px; color:#1f2937;}
  .ff-soc{display:inline-grid; place-items:center; width:32px; height:32px; border-radius:50%; background:#f2f3f5;}
  .ff-soc svg{width:18px; height:18px;}

  .ff-right{position:relative;}
  .ff-card{position:relative; background:var(--ff-card); border:1px solid var(--ff-border); border-radius:var(--ff-radius); box-shadow:var(--ff-shadow); padding:18px; overflow:visible;}
  .ff-row2{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px;}
  .ff-field{display:flex; flex-direction:column; margin-bottom:12px;}
  .ff-input{width:100%; border:1px solid var(--ff-border); border-radius:10px; padding:12px 14px; outline:none; font-size:14px; color:#111827; background:#fff; transition:border-color .2s, box-shadow .2s;}
  .ff-input:focus{border-color:#c9e9d8; box-shadow:0 0 0 3px rgba(22,155,82,.12);}
  .ff-input.ff-invalid{border-color:var(--ff-error); box-shadow:0 0 0 3px rgba(192,54,44,.12);}
  .ff-textarea{min-height:30px; resize:vertical;}
  .ff-btn{display:block; width:100%; background:var(--ff-green); color:#fff; border:0; border-radius:10px; padding:12px 16px; font-weight:600; cursor:pointer;}
  .ff-btn[disabled]{opacity:.6; cursor:not-allowed;}
  .ff-btn:hover:not([disabled]){filter:brightness(.95);}
  .ff-error{color:var(--ff-error); font-size:12px; min-height:16px; margin-top:6px;}

  /* honeypot (hidden but accessible off-screen) */
  .ff-hp{position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden;}

  /* CTA and decorative plane */
  .ff-cta{position:relative; margin-top:6px; padding-bottom:46px;}
  .ff-cta .ff-btn{position:relative; z-index:3;}
  .ff-plane-wrap.ff-plane-right{position:absolute; right:-12px; bottom:-18px; pointer-events:none; z-index:2;}
  .ff-plane-right .ff-plane-svg{width:340px; height:auto; display:block;}

  @media (max-width: 700px){
    .ff-row2{grid-template-columns:1fr;}
    .ff-cta{padding-bottom:38px}
    .ff-plane-wrap.ff-plane-right{right:-6px; bottom:-16px}
    .ff-plane-right .ff-plane-svg{width:280px}
  }
  @media (max-width: 420px){
    .ff-cta{padding-bottom:32px}
    .ff-plane-wrap.ff-plane-right{right:-4px; bottom:-14px}
    .ff-plane-right .ff-plane-svg{width:230px}
  }

  .ff-status{margin-top:10px; font-size:14px;}
  .ff-status.ok{color:#0a7f42;}
  .ff-status.err{color:#b00020;}

 /*-- Schools in india-- */
 :root{
  --bg:#f7fafc; --card:#fff; --primary:#0b5cab; --primary-ink:#fff;
  --text:#1f2937; --muted:#6b7280; --line:#e5e7eb; --btn:#0ea5e9; --btn-ink:#fff;
  --radius:14px; --shadow:0 10px 28px rgba(25,41,85,.08);
}

.schools-in-india-table{ padding:28px 14px; background:var(--bg); color:var(--text); font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Noto Sans"; }
.schools-in-india-table .container{ max-width:1200px; margin:0 auto; }

/* Filters */
.schools-in-india-table .filters{
  background:var(--card); border-radius:var(--radius); box-shadow:var(--shadow);
  padding:14px; display:grid; grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px; align-items:end; margin-bottom:14px;
}
.schools-in-india-table .filter label{ display:block; font-size:12px; color:var(--muted); margin-bottom:6px; }
.schools-in-india-table select{
  width:100%; padding:10px 12px; border-radius:10px; border:1px solid var(--line);
  background:#fff; color:var(--text);
}
.schools-in-india-table .btn.reset{ padding:10px 12px; border-radius:10px; border:1px solid var(--line); background:#fff; cursor:pointer; }
.schools-in-india-table .btn.reset:hover{ background:#f3f4f6; }

/* Table */
.schools-in-india-table .table-wrap{ background:var(--card); border-radius:var(--radius); box-shadow:var(--shadow); overflow:hidden; }
.schools-in-india-table table{ width:100%; border-collapse:collapse; }
.schools-in-india-table thead{ background:var(--primary); color:var(--primary-ink); }
.schools-in-india-table th, .schools-in-india-table td{ padding:14px 16px; text-align:left; border-bottom:1px solid var(--line); vertical-align:top; }
.schools-in-india-table tbody tr:hover{ background:#f9fbff; }

/* Contact cell split lines */
.schools-in-india-table .contact{ display:grid; gap:6px; }
.schools-in-india-table .contact a{ text-decoration:none; color:#0b63ce; word-break:break-word; }
.schools-in-india-table .contact a:hover{ text-decoration:underline; }

/* Website button */
.schools-in-india-table .btn-visit{
  display:inline-flex; align-items:center; padding:8px 12px; border-radius:999px;
  background:var(--btn); color:var(--btn-ink); text-decoration:none; font-size:14px; line-height:1;
  box-shadow:0 6px 18px rgba(14,165,233,.25);
}
.schools-in-india-table .btn-visit:hover{ filter:brightness(1.05); }

/* Pagination */
.schools-in-india-table .pagination-bar{
  display:grid; grid-template-columns:auto 1fr auto;  /* left: size, middle: pager, right: meta */
  align-items:center; gap:10px; margin-top:12px; padding:10px;
  background:var(--card); border-radius:var(--radius); box-shadow:var(--shadow);
}
.schools-in-india-table .page-size{ display:flex; align-items:center; gap:8px; }
.schools-in-india-table .page-size label{ font-size:14px; color:var(--muted); }

/* Compact dropdown ONLY in pagination */
.schools-in-india-table .pagination-bar select{
  width:auto;                 /* shrink to fit content */
  min-width:84px;             /* keep readable */
  padding:6px 10px;
  border-radius:8px;
  border:1px solid var(--line);
  background:#fff; color:var(--text);
}

/* Pager */
.schools-in-india-table .pager-controls{ display:flex; align-items:center; gap:6px; justify-self:center; }
.schools-in-india-table .pager-btn,
.schools-in-india-table .page-number{
  border:1px solid var(--line); background:#fff; border-radius:8px; padding:8px 12px; cursor:pointer;
}
.schools-in-india-table .pager-btn:hover,
.schools-in-india-table .page-number:hover{ background:#f3f4f6; }
.schools-in-india-table .pager-btn:disabled{ opacity:.5; cursor:not-allowed; }
.schools-in-india-table .page-numbers{ display:flex; gap:6px; }
.schools-in-india-table .page-number.active{ background:var(--primary); color:#fff; border-color:var(--primary); }
.schools-in-india-table .pager-btn:focus,
.schools-in-india-table .page-number:focus,
.schools-in-india-table .pagination-bar select:focus{
  outline:2px solid rgba(11,92,171,.35);
  outline-offset:2px;
}

.schools-in-india-table .pagination-bar .meta{
  justify-self:end; color:var(--muted); font-size:14px; display:flex; gap:10px;
}
.schools-in-india-table .muted{ color:var(--muted); }

/* Responsive */
@media (max-width:900px){
  .schools-in-india-table .filters{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .schools-in-india-table{ padding:16px 10px; }
  .schools-in-india-table .filters{ grid-template-columns:1fr; }
  .schools-in-india-table .table-wrap{ overflow-x:auto; }
  .schools-in-india-table th, .schools-in-india-table td{ padding:12px 14px; font-size:14px; }

  /* stack pagination */
  .schools-in-india-table .pagination-bar{ grid-template-columns:1fr; gap:8px; }
  .schools-in-india-table .pager-controls{ justify-self:start; }
  .schools-in-india-table .pagination-bar .meta{ justify-self:start; }
}
/* ===== Mobile card layout for tables ===== */
@media (max-width: 640px) {
  /* hide header, turn rows into cards */
  .schools-in-india-table thead { display: none; }
  .schools-in-india-table table,
  .schools-in-india-table tbody,
  .schools-in-india-table tr,
  .schools-in-india-table td { display: block; width: 100%; }

  .schools-in-india-table tbody { padding: 4px; }
  .schools-in-india-table .row-card{
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(25,41,85,.06);
    margin: 10px 0;
    padding: 10px 12px;
  }
  /* each cell shows its label */
  .schools-in-india-table td{
    border-bottom: 0;               /* no cell separators inside the card */
    padding: 8px 0;
  }
  .schools-in-india-table td + td { border-top: 1px dashed #eef1f6; }

  .schools-in-india-table td::before{
    content: attr(data-label);
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 4px;
  }

  /* tidy contact + button on mobile cards */
  .schools-in-india-table .contact{ gap:4px; }
  .schools-in-india-table .btn-visit{
    margin-top: 6px;
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 13px;
  }}
  

  /* ===== Dynamic Blogs (scoped) ===== */
.dynamic-blogs{
  --bg:#f6f8fb;--card:#fff;--muted:#6b7280;--ink:#0f172a;--brand:#0b5ed7;--chip:#eaf6ea;
  --stroke:#e7eaf0;--radius:16px;--shadow:0 10px 28px rgba(25,41,85,.08);
  color:var(--ink);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.dynamic-blogs a{color:inherit;text-decoration:none}
.dynamic-blogs img{max-width:100%;display:block; border-radius: 10px;}
.dynamic-blogs .db-container{max-width:1180px;margin:0 auto;padding:24px}

/* Buttons & badges */
.dynamic-blogs .db-btn{display:inline-flex;align-items:center;gap:8px;background:#0b5ed7;color:#fff;border:0;border-radius:999px;padding:10px 18px;font-weight:600;cursor:pointer}
.dynamic-blogs .db-btn:hover,.dynamic-blogs .db-btn:focus{filter:brightness(.9)}
.dynamic-blogs .db-badge{display:inline-flex;align-items:center;gap:6px;font-size:12px;padding:4px 8px;border-radius:999px;background:var(--chip);color:#2e7d32}
.dynamic-blogs .db-badge i{width:8px;height:8px;border-radius:50%;background:#4caf50;display:inline-block}

/* Listing grid */
.dynamic-blogs .db-cards{display:grid;grid-template-columns:repeat(12,1fr);gap:24px}
.dynamic-blogs .db-card{grid-column:span 4;background:var(--card);border:1px solid var(--stroke);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;display:flex;flex-direction:column}
.dynamic-blogs .db-media{background:#c9ced6;aspect-ratio:19/11}
.dynamic-blogs .db-body{padding:14px 16px 16px}
.dynamic-blogs .db-meta{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px;color:var(--muted);font-size:12px}
.dynamic-blogs .db-rating{display:flex;gap:6px;align-items:center}
.dynamic-blogs .db-star{font-size:14px}
.dynamic-blogs .db-title{font-size:14px;line-height:1.45;margin:0 0 12px;font-weight:600;color:#1f2937;min-height:40px}
.dynamic-blogs .db-author{display:flex;align-items:center;gap:8px;color:var(--muted);font-size:12px;margin-bottom:12px}
.dynamic-blogs .db-author .db-dot{width:8px;height:8px;border-radius:50%;background:#cbd5e1}
.db-authorline .db-author {border-radius: 30px;}
/* Banner + breadcrumb (detail) */
.dynamic-blogs .db-banner{background:#e7eefc;padding:48px 0 0;position:relative}
.dynamic-blogs .db-breadcrumbs{font-size:14px;color:var(--muted);margin-bottom:12px}
.dynamic-blogs .db-breadcrumbs a{color:var(--muted)}
.dynamic-blogs .db-blog-title{font-size:32px;line-height:1.2;margin:0 0 14px;font-weight:800}
.dynamic-blogs .db-blog-head{display:grid;grid-template-columns:2fr 1fr;gap:24px;align-items:start;margin-top:14px}
.dynamic-blogs .db-blog-cover{background:#c9ced6;border-radius:14px;aspect-ratio:16/9;overflow:hidden}
.dynamic-blogs .db-blog-aside{background:#fff;border:1px solid var(--stroke);border-radius:14px;padding:14px}
.dynamic-blogs .db-tags{display:flex;flex-wrap:wrap;gap:8px}
.dynamic-blogs .db-tag{background:#f2f5fb;border:1px solid var(--stroke);border-radius:999px;padding:6px 10px;font-size:12px;color:#374151}

/* Content */
.dynamic-blogs .db-content{background:#fff;padding:28px;border:1px solid var(--stroke);border-radius:16px;box-shadow:var(--shadow)}
.dynamic-blogs .db-content p{color:#334155;line-height:1.8;margin:0 0 14px}
.dynamic-blogs .db-content .sig{margin-top:18px;color:#0f172a;font-weight:600}

/* Similar */
.dynamic-blogs .db-similar{background:#0b2f66;color:#fff;border-radius:24px;padding:28px;position:relative;box-shadow:var(--shadow)}
.dynamic-blogs .db-sim-title{font-weight:800;margin:0 0 18px}
.dynamic-blogs .db-sim-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.dynamic-blogs .db-sim-card{background:#0e3d84;border-radius:14px;overflow:hidden;border:1px solid rgba(255,255,255,.1)}
.dynamic-blogs .db-sim-media{background:#7f8ba3;aspect-ratio:19/11}
.dynamic-blogs .db-sim-body{padding:12px}
.dynamic-blogs .db-kicker{display:inline-block;font-size:11px;background:#d1fae5;color:#065f46;border-radius:999px;padding:3px 8px;margin-bottom:8px}
.dynamic-blogs .db-stitle{font-weight:700;margin:0 0 8px}
.dynamic-blogs .db-smeta{font-size:12px;color:#d1d7e8}

/* Form (if you use it) */
.dynamic-blogs .db-form{background:#fff;border:1px solid var(--stroke);border-radius:16px;padding:24px;box-shadow:var(--shadow)}
.dynamic-blogs .db-form .db-row{display:grid;grid-template-columns:repeat(12,1fr);gap:14px}
.dynamic-blogs .db-form input,.dynamic-blogs .db-form select,.dynamic-blogs .db-form textarea{
  width:100%;border:1px solid var(--stroke);border-radius:10px;padding:12px 12px;font-size:14px;background:#fff
}
.dynamic-blogs .db-col-6{grid-column:span 6}
.dynamic-blogs .db-col-4{grid-column:span 4}
.dynamic-blogs .db-col-2{grid-column:span 2}
.dynamic-blogs .db-col-12{grid-column:span 12}
.dynamic-blogs .db-form textarea{min-height:130px;resize:vertical}
.dynamic-blogs .db-actions{margin-top:14px}

/* Responsive */
@media (max-width: 1024px){
  .dynamic-blogs .db-card{grid-column:span 6}
  .dynamic-blogs .db-blog-head{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .dynamic-blogs .db-card{grid-column:span 12}
  .dynamic-blogs .db-sim-grid{grid-template-columns:1fr}
  .dynamic-blogs .db-blog-title{font-size:26px}
}
