/* =========================================================
   Sanskar – Full CSS (Header + Hero Slider + Form + Switcher
   + Floating Buttons + Tooltips)  | Bootstrap 5.3.3
========================================================= */

:root{
  --sg-blue:#0b3a7a;
  --sg-orange:#ff6a00;
  --sg-text:#0f172a;

  /* Header colors (default) */
  --sg-header-bg:#600203; /* navbar/menu */
  --sg-topbar-bg:#3a0102; /* darker shade for top bar */
}

/* =========================
   HEADER: TOPBAR
========================= */
.sg-topbar{
  background: var(--sg-topbar-bg) !important;
  color:#fff;
  font-size: 14px;
}

.sg-toplink,
.sg-phone{
  color:#fff;
  text-decoration:none;
  opacity:.95;
}

.sg-toplink:hover,
.sg-phone:hover{
  opacity:1;
  text-decoration: underline;
}

.sg-sep{ opacity:.6; }

.sg-social a{
  color:#fff;
  opacity:.9;
  text-decoration:none;
  font-size: 16px;
}
.sg-social a:hover{ opacity:1; }

/* =========================
   HEADER: NAVBAR
========================= */
.sg-navbar{
  background: var(--sg-header-bg) !important;
  border-bottom: none !important;
}

.sg-logo{
  width: 244px;
  object-fit: contain;
}

.sg-brand-title{
  font-weight:800;
  color: var(--sg-text);
  line-height: 1.1;
}
.sg-brand-sub{
  font-size: 12px;
  color: rgba(15,23,42,.7);
  line-height: 1.1;
}

/* Bootstrap navbar link default overridden for dark header */
.sg-header .navbar .navbar-brand,
.sg-header .navbar .nav-link,
.sg-header .navbar .dropdown-toggle{
  color:#fff !important;
}

.sg-header .navbar .nav-link:hover,
.sg-header .navbar .dropdown-toggle:hover{
  color: rgba(255,255,255,.85) !important;
}

/* Toggler icon visible on dark bg */
.sg-header .navbar-toggler{
  border-color: rgba(255,255,255,.35) !important;
}
.sg-header .navbar-toggler-icon{
  filter: invert(1);
}

/* Dropdown */
.dropdown-menu{
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 30px rgba(2,6,23,.08);
  border-radius: 12px;
  padding: .5rem;
  background:#fff !important;
}

.dropdown-item{
  border-radius: 10px;
  padding: .6rem .75rem;
  font-weight: 600;
}
.dropdown-item:hover{
  background: rgba(11,58,122,.08);
  color: var(--sg-blue);
}

/* Apply Now */
.sg-apply-btn{
  background: var(--sg-orange);
  border: none;
  color:#fff;
  font-weight: 800;
  padding: .65rem 1rem;
  border-radius: 999px;
}
.sg-apply-btn:hover{
  background: #e85f00;
  color:#fff;
}

/* Mobile tweaks */
@media (max-width: 991.98px){
  .sg-brand-text{ display:none; }
  .sg-header .navbar .nav-link{ padding: .65rem 0; }
  .sg-apply-btn{ width: 100%; }
}

/* =========================
   HERO SECTION
========================= */
.sg-hero{
  padding: 32px 0;
  background: #f7f7f7;
  position: relative;
  overflow: hidden;
}

/* remove padding to make slider edge-to-edge in its column */
.sg-hero .col-lg-8{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* =========================
   HERO SLIDER (Fade, no crop, full width)
========================= */
.sg-hero-slider{
  width: 100%;
  border-radius: 0;
}

.sg-hero-slider .carousel-inner,
.sg-hero-slider .carousel-item{
  width: 100%;
}

/* No cropping: show full image */
.sg-hero-slider .sg-hero-slide-img{
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

/* Stable height on desktop WITHOUT cropping */
@media (min-width: 992px){
  /* ===== HERO SLIDER – RESPONSIVE, NO HEIGHT LOCK ===== */
  .sg-hero-slider .carousel-item{
    aspect-ratio: 16 / 9;   /* change to match your banner design */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sg-hero-slider .sg-hero-slide-img{
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  /* ===== END ===== */
}

/* Indicators */
.sg-hero-slider .carousel-indicators{
  margin-bottom: 10px;
}
.sg-hero-slider .carousel-indicators [data-bs-target]{
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

/* =========================
   ADMISSION FORM CARD
========================= */
.sg-adm-card{
  background:#fff;
  box-shadow: 0 12px 35px rgba(2,6,23,.08);
  border-radius: 10px 10px 0 0;
}

.sg-adm-head{
  background:#ff6a00;
  color:#fff;
  font-weight: 900;
  text-align:center;
  padding: 14px 12px;
  letter-spacing: .5px;
  border-radius: 10px 10px 0 0;
}

.sg-adm-body{ padding: 14px; }

.sg-adm-tabs{
  border-bottom: 1px solid rgba(15,23,42,.10);
  gap: 10px;
}

.sg-adm-tabs .nav-link{
  border: 0;
  border-radius: 0;
  padding: 8px 16px;
  font-weight: 800;
  color:#1f4f99;
  position: relative;
}

.sg-adm-tabs .nav-link.active{
  color:#fff;
  background:#ff6a00;
}

.sg-input{
  border-radius: 0;
  font-weight: 600;
  font-size: 14px;
}

.sg-code{
  border-radius: 0;
  font-weight: 800;
  background: #fff;
}

.sg-check .form-check-label{
  font-size: 12px;
  line-height: 1.35;
  color: rgba(15,23,42,.85);
}

.sg-reg-btn{
  background:#ff6a00;
  border: none;
  color:#fff;
  font-weight: 900;
  letter-spacing: .3px;
  padding: 12px 14px;
  border-radius: 2px;
}
.sg-reg-btn:hover{ background:#e85f00; color:#fff; }

/* Captcha UI */
.sg-captcha-box{
  border: 1px solid rgba(15,23,42,.18);
  height: 38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 8px;
  background:#fff;
}
.sg-captcha-box span{
  font-weight: 900;
  letter-spacing: .5px;
}
.sg-captcha-refresh{
  border: 0;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  opacity: .7;
}
.sg-captcha-refresh:hover{ opacity: 1; }

/* Responsive hero */
@media (max-width: 991.98px){
  .sg-hero{ padding: 22px 0; }
}

/* =========================
   HEADER COLOR SWITCHER
========================= */
.sg-color-switcher{
  position: fixed;
  top: 45%;
  right: 12px;
  z-index: 9999;
  background:#fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,.18);
  padding: 8px;
}

.sg-color-switcher button{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid #fff;
  display: block;
  margin: 7px auto;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}

.sg-color-switcher button.active{
  outline: 2px solid #000;
}

.sg-color-maroon{ background:#600203; }
.sg-color-blue{ background:#012258; }
.sg-color-purple{ background:#3D0158; }

@media (max-width: 767px){
  .sg-color-switcher{ display:none; }
}

/* =========================
   FLOATING ACTION BUTTONS
========================= */
.sg-float-actions{
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sg-float-btn{
  width: 48px;
  height: 48px;
  background: #9e9e9e;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  transition: all .25s ease;
}

.sg-float-btn:hover{
  background: var(--sg-header-bg);
  transform: translateX(-4px);
  color: #fff;
}

@media(max-width: 767px){
  .sg-float-actions{ right: 8px; }
  .sg-float-btn{
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

/* VR icon */
.sg-vr-icon{
  width: 24px;
  height: 24px;
  display: block;
}

/* =========================
   TOOLTIP STYLE
========================= */
.tooltip-inner{
  background-color: var(--sg-header-bg);
  color: #fff;
  font-weight: 600;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 6px;
}
.bs-tooltip-start .tooltip-arrow::before{
  border-left-color: var(--sg-header-bg);
}
/* ===== FORCE HERO SLIDER FULL WIDTH ===== */
.sg-hero .row.g-0 > [class*="col-"]{
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.sg-hero-slider,
.sg-hero-slider .carousel-inner,
.sg-hero-slider .carousel-item{
  width: 100% !important;
  max-width: 100% !important;
}

.sg-hero-slide-img{
  width: 100% !important;
  display: block;
}
/* ===== END ===== */

/* =========================
   WHY PARENTS TRUST (WHITE THEME)
========================= */

.sg-trust{
  padding: 80px 0;
  background:
    radial-gradient(600px 260px at 90% 0%, rgba(96,2,3,.06), transparent 55%),
    radial-gradient(500px 220px at 0% 100%, rgba(96,2,3,.05), transparent 60%),
    #fff;
  color: #111;
}

.sg-trust-head{ margin-bottom: 30px; }
.sg-trust-kicker{
  margin: 0 0 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  color: var(--sg-header-bg);
}
.sg-trust-title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 900;
}
.sg-trust-subtitle{
  margin: 0 auto;
  max-width: 820px;
  color: rgba(17,17,17,.68);
  line-height: 1.7;
  font-size: 16px;
}

.sg-trust-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
}

/* Cards */
.sg-trust-cards{ display: grid; gap: 14px; }

.sg-trust-card{
  display: grid;
  grid-template-columns: 44px 1fr 18px;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e7e7e7;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
  cursor: pointer;
  transition: all .25s ease;
  user-select: none;
}
.sg-trust-card:hover{
  transform: translateY(-2px);
  border-color: rgba(96,2,3,.55);
  box-shadow: 0 16px 45px rgba(96,2,3,.12);
}
.sg-trust-card.active{
  border-color: rgba(96,2,3,.75);
  background: linear-gradient(180deg,#fff,#faf7f7);
  box-shadow: 0 20px 60px rgba(96,2,3,.18);
}

.sg-trust-ico{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(96,2,3,.08);
  border: 1px solid rgba(96,2,3,.22);
  color: var(--sg-header-bg);
  font-size: 20px;
}
.sg-trust-card-body h3{
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}
.sg-trust-card-body p{
  margin: 6px 0 0;
  color: rgba(17,17,17,.64);
  font-size: 13px;
  line-height: 1.5;
}
.sg-trust-chev{
  color: var(--sg-header-bg);
  font-size: 22px;
}

/* CTA */
.sg-trust-btn{
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, #600203, #7a0a0c);
  box-shadow: 0 14px 36px rgba(96,2,3,.28);
  width: fit-content;
  transition: transform .2s ease, filter .2s ease;
}
.sg-trust-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.sg-trust-btn span{ font-size: 18px; line-height: 0; }

/* Panel */
.sg-trust-panel{
  position: sticky;
  top: 18px;
  border-radius: 18px;
  border: 1px solid #e7e7e7;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.08);
  padding: 18px;
}

.sg-trust-panel-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.sg-trust-badge{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(96,2,3,.25);
  background: rgba(96,2,3,.08);
  color: var(--sg-header-bg);
}

.sg-trust-progress{
  width: 140px;
  height: 10px;
  border-radius: 999px;
  background: #f1f1f1;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.sg-trust-progress span{
  display:block;
  height:100%;
  width:0%;
  border-radius:999px;
  background: linear-gradient(90deg,#600203,#7a0a0c);
}
.sg-trust-progress span.run{ animation: sgTrustFill 5s linear forwards; }
@keyframes sgTrustFill{ from{width:0%} to{width:100%} }

.sg-trust-pane{ display:none; animation: sgTrustFade .25s ease; }
.sg-trust-pane.active{ display:block; }
@keyframes sgTrustFade{ from{opacity:0; transform: translateY(6px)} to{opacity:1; transform: translateY(0)} }

.sg-trust-pane h3{
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
}
.sg-trust-pane ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.sg-trust-pane li{
  padding-left: 18px;
  position: relative;
  color: rgba(17,17,17,.72);
  line-height: 1.6;
  font-size: 14px;
}
.sg-trust-pane li:before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 3px;
  position: absolute;
  left: 0;
  top: .55em;
  background: var(--sg-header-bg);
  box-shadow: 0 0 0 4px rgba(96,2,3,.14);
}

.sg-trust-quote{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #ececec;
  color: rgba(17,17,17,.70);
  font-size: 14px;
}
.sg-trust-quote p{ margin: 0 0 6px; font-style: italic; }
.sg-trust-quote span{
  color: rgba(17,17,17,.55);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991.98px){
  .sg-trust{ padding: 60px 0; }
  .sg-trust-grid{ grid-template-columns: 1fr; }
  .sg-trust-panel{ position: relative; top: auto; }
  .sg-trust-btn{ width: 100%; }
}


/* =========================
   SG JOURNEY (Podar-like)
========================= */
.sg-journey{
  padding: 70px 0;
  background:#fff;
}

.sg-journey-title{
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 900;
  color:#111;
  margin: 0 0 30px;
  letter-spacing: -.01em;
}

/* Owl container still works with grid mode */
.sg-journey-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

/* card */
.sg-journey-card{
  background:#fff;
  border: 1px solid #efefef;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  height: 100%;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.sg-journey-card:hover{
  transform: translateY(-3px);
  border-color: rgba(96,2,3,.25);
  box-shadow: 0 18px 55px rgba(96,2,3,.10);
}

.sg-journey-ico{
  width: 54px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #ffeef4; /* soft purple pill like screenshot */
  color: #111;
  margin-bottom: 14px;
}

.sg-journey-ico svg{
  width: 22px;
  height: 22px;
  color: #111;
}

.sg-journey-h{
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 8px;
  color:#111;
}

.sg-journey-p{
  margin: 0;
  color: rgba(17,17,17,.62);
  line-height: 1.6;
  font-size: 14px;
}

/* CTA */
.sg-journey-cta{ margin-top: 26px; }

.sg-journey-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  background: var(--sg-header-bg, #600203);
  color:#fff;
  box-shadow: 0 14px 34px rgba(96,2,3,.22);
  transition: transform .2s ease, filter .2s ease;
}
.sg-journey-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  color:#fff;
}

/* responsive grid */
@media (max-width: 991.98px){
  .sg-journey-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 767.98px){
  /* On mobile we switch to owl (JS will convert),
     but keep spacing nice if owl not loaded */
  .sg-journey-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
/* ================================
   FIX: Show Journey on Desktop even if Owl CSS is loaded
================================ */

/* Default: show as GRID */
#sgJourneyOwl{
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* tablet */
@media (max-width: 991.98px){
  #sgJourneyOwl{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* mobile: Owl will handle layout */
@media (max-width: 767.98px){
  #sgJourneyOwl{
    display: block !important; /* owl needs block */
  }
}

/* =========================
   IMAGE-BASED CAMPUS CARDS
========================= */

.sg-card-img{
  width: 100%;
  border-radius: 14px;
  margin-bottom: 14px;
}

.sg-card{
  background:#fff;
  border: 1px solid #efefef;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sg-card:hover{
  transform: translateY(-4px);
  border-color: rgba(96,2,3,.28);
  box-shadow: 0 20px 60px rgba(96,2,3,.14);
}

.sg-card-title{
  font-weight: 900;
  color:#111;
  font-size: 16px;
  margin: 0 0 6px;
}

.sg-card-text{
  margin: 0;
  color: rgba(17,17,17,.62);
  line-height: 1.6;
  font-size: 14px;
}

/* Mobile polish */
@media (max-width: 575px){
  .sg-card-img{
    height: 160px;
  }
}
/* =========================
   Campus Mobile Carousel Styling
========================= */
.sg-campus-mob .sg-campus-slide{
  padding: 0 10px; /* side spacing */
}

.sg-campus-mob .sg-card{
  border-radius: 18px;
}

/* nicer arrows (small) */
.sg-campus-nav{
  width: 44px;
  opacity: 1;
}
.sg-campus-nav .carousel-control-prev-icon,
.sg-campus-nav .carousel-control-next-icon{
  filter: invert(10%);
  background-size: 70% 70%;
}

/* dots */
.sg-campus-dots{
  position: static;
  margin-top: 12px;
  gap: 8px;
}
.sg-campus-dots [data-bs-target]{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(96,2,3,.25);
  border: 0;
}
.sg-campus-dots .active{
  background: #600203;
}
/* =========================
   Balanced Journey Carousel
   (Bootstrap 5.3.3)
========================= */
.sg-balance{
  --sg-accent: #600203;
  background: #fff;
}

.sg-balance-title{
  font-weight: 900;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--sg-accent);
  line-height: 1.1;
}

.sg-balance-subtitle{
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 34px);
  color: var(--sg-accent);
  line-height: 1.1;
}

.sg-balance-carousel{
  position: relative;
  padding-bottom: 10px;
}

/* Slide layout: row of cards */
.sg-balance-row{
  display: grid;
  gap: 28px;
  align-items: start;
}

/* Desktop default (set by JS too, but keep fallback) */
.sg-balance-row.cols-4{ grid-template-columns: repeat(4, 1fr); }
.sg-balance-row.cols-3{ grid-template-columns: repeat(3, 1fr); }
.sg-balance-row.cols-2{ grid-template-columns: repeat(2, 1fr); }
.sg-balance-row.cols-1{ grid-template-columns: 1fr; }

/* Card */
.sg-balance-card{
  text-align: center;
}

.sg-balance-card .sg-balance-imgwrap{
  border-radius: 14px;
  background: #efefef;
  padding: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.04);
}

.sg-balance-card img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* Label */
.sg-balance-card .sg-balance-label{
  margin-top: 12px;
  font-weight: 800;
  color: var(--sg-accent);
  font-size: 16px;
}

/* Dots like screenshot */
.sg-balance-dots{
  position: static;
  margin-top: 18px;
  gap: 10px;
}
.sg-balance-dots [data-bs-target]{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border: 0;
  opacity: 1;
}
.sg-balance-dots .active{
  background: var(--sg-accent);
}

/* Optional nav buttons */
.sg-balance-nav{
  width: 48px;
  opacity: 1;
}
.sg-balance-nav .carousel-control-prev-icon,
.sg-balance-nav .carousel-control-next-icon{
  filter: invert(15%);
  background-size: 70% 70%;
}

/* Responsive image height */
@media (max-width: 991.98px){
  .sg-balance-card img{ height: 220px; }
}
@media (max-width: 575.98px){
  .sg-balance-card img{ height: 220px; }
  .sg-balance-row{ gap: 16px; }
}
.sg-map-wrap{
  position: relative;
  overflow: hidden;
}

.sg-map-iframe{
  display:block;
  width:100%;
  pointer-events: none; /* IMPORTANT: block scroll/zoom by default */
}

.sg-map-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,.25), rgba(0,0,0,0));
  cursor: pointer;
}

.sg-map-hint{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 10px 14px;
  text-align:center;
  font-size: 13px;
  line-height: 1.2;
}
.sg-map-hint strong{
  display:block;
  font-weight: 900;
}
.sg-map-hint span{
  display:block;
  opacity: .75;
  margin-top: 2px;
}


 /* 9:16 responsive box */
  .shorts-box{
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 16/9 * 100 */
    overflow: hidden;
    border-radius: 12px; /* optional */
    background: #000;    /* ensures you see the frame area */
  }
  .shorts-box iframe{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  /* Owl spacing */
  .shorts-owl .item{ padding: 0 8px; }
/* =========================================================
   SANSKAR – FAQ SECTION (PREMIUM ACCORDION)
   Bootstrap 5.3.3 Compatible
========================================================= */

.sg-faq{
  padding: 80px 0;
  background:
    radial-gradient(700px 320px at 10% 10%, rgba(96,2,3,.06), transparent 60%),
    radial-gradient(700px 320px at 90% 90%, rgba(96,2,3,.05), transparent 60%),
    #ffffff;
}

/* -------------------------
   FAQ HEADER
------------------------- */
.sg-faq-head{
  margin-bottom: 32px;
}

.sg-faq-kicker{
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--sg-header-bg);
}

.sg-faq-title{
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  color: #111;
  margin-bottom: 8px;
}

.sg-faq-sub{
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(17,17,17,.7);
}

/* -------------------------
   ACCORDION WRAPPER
------------------------- */
.sg-acc{
  display: grid;
  gap: 16px;
}

/* Card shell */
.sg-acc-item{
  border-radius: 18px !important;
  border: 1px solid rgba(96,2,3,.18) !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 55px rgba(0,0,0,.08);
}

/* -------------------------
   ACCORDION BUTTON
------------------------- */
.sg-acc-title{
  position: relative;
  background: #fff !important;
  padding: 20px 22px 20px 60px !important;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.25px;
  color: #111 !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Maroon authority bar */
.sg-acc-title::before{
  content:"";
  position:absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg,#600203,#7a0a0c);
}

/* Question icon */
/* Question icon – moved to ::before */
.sg-acc-title::before{
  content:"?";
  position:absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(96,2,3,.12);
  color: var(--sg-header-bg);
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bootstrap arrow – FORCE RIGHT SIDE */
.sg-acc-title.accordion-button::after{
  margin-left: auto;          /* pushes arrow to right */
  background-size: 18px;
  opacity: 1;
  filter: none;
}
/* Bootstrap arrow */
.sg-acc-title.accordion-button::after{
  background-size: 18px;
  opacity: 1;
  filter: none;
}

/* Hover */
.sg-acc-title:hover{
  background: rgba(96,2,3,.04) !important;
}

/* Open state */
.sg-acc-title:not(.collapsed){
  background: linear-gradient(180deg,#fff,#faf6f6) !important;
  color: var(--sg-header-bg) !important;
}

/* -------------------------
   ACCORDION BODY
------------------------- */
.sg-acc-body{
  padding: 18px 22px 22px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
  color: rgba(17,17,17,.78);
  background: #fff;
}

/* Lists inside answers */
.sg-acc-body ul{
  padding-left: 18px;
}
.sg-acc-body li{
  margin-bottom: 8px;
}

/* -------------------------
   MOBILE OPTIMIZATION
------------------------- */
@media (max-width: 767.98px){

  .sg-faq{
    padding: 60px 0;
  }

  .sg-acc-title{
    font-size: 26px;
    padding: 16px 18px 16px 54px !important;
  }

  .sg-acc-body{
    font-size: 14.5px;
    padding: 16px 18px 18px;
  }
}

.school-footer{
  background: linear-gradient(135deg, #4c001a, #52001c, #110014);
  color:#eaeaea;
  padding:60px 0 0;
  font-family: 'Inter', sans-serif;
}

.school-footer a{
  color:#f4d03f;
  text-decoration:none;
}
.school-footer a:hover{
  text-decoration:underline;
}

.footer-title{
  font-size:18px;
  margin-bottom:15px;
  color:#ffffff;
  position:relative;
}
.footer-title::after{
  content:"";
  width:40px;
  height:3px;
  background:#f4d03f;
  display:block;
  margin-top:6px;
  border-radius:2px;
}

.footer-text{
  font-size:14px;
  line-height:1.7;
  margin-bottom:14px;
}

.map-box{
  width:100%;
  height:230px;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.35);
}
.map-box iframe{
  width:100%;
  height:100%;
  border:0;
}

.footer-bottom{
  margin-top:40px;
  padding:15px 10px;
  text-align:center;
  background:rgba(0,0,0,0.35);
  font-size:13px;
  color:#ddd;
}



.sg-feature-card{
  background:#ffffff;
  border-radius:18px;
  padding:18px 16px;
  height:100%;
  box-shadow:0 14px 36px rgba(96,3,3,0.10);
  transition:transform .25s ease, box-shadow .25s ease;
}

.sg-feature-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 46px rgba(96,3,3,0.14);
}

.sg-feature-ico{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  background:#ffeef4;
  color:#600203;
  margin-bottom:12px;
}

.sg-feature-title{
  font-size:16px;
  margin:0 0 6px;
  font-weight:700;
  color:#3a0f14;
}

.sg-feature-text{
  font-size:13.5px;
  line-height:1.55;
  color:#6b4b53;
  margin:0;
}

/* Carousel arrows */
.sg-multi-carousel .carousel-control-prev,
.sg-multi-carousel .carousel-control-next{
  width:44px;
  height:44px;
  background:rgba(96,3,3,0.55);
  border-radius:999px;
  top:50%;
  transform:translateY(-50%);
  opacity:1;
}

.sg-multi-carousel .carousel-control-prev-icon,
.sg-multi-carousel .carousel-control-next-icon{
  filter:invert(1);
}

@media (max-width: 575.98px){
  .sg-feature-card{
    padding:16px;
  }
}
