/* ================== SCOPED ONLY TO .graceschool ================== */
.graceschool{
  /* full-bleed even inside boxed themes */
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  position:relative;

  /* theme */
  --g-brand:#6A6ECF;          /* your button color */
  --g-brand-2:#4F52B8;        /* darker partner for gradient */
  --g-ink:#0b1226;

  --g-h:clamp(420px, 60vw, 640px);
  --g-btn:48px;
  --g-speed:560ms;
  --g-auto:4800ms;
}

.graceschool__carousel{
  position:relative; height:var(--g-h); width:100%;
  overflow:hidden; border-radius:var(--g-radius);
  background:#0f172a; 
}

/* track & slides */
.graceschool__track{
  display:flex; height:100%;
  will-change:transform;
  transition:transform var(--g-speed) cubic-bezier(.2,.8,.2,1);
  touch-action:pan-y;
}
.graceschool__slide{ flex:0 0 100%; position:relative; height:100%; isolation:isolate; overflow:hidden }
.graceschool__media{ position:absolute; inset:0; z-index:0 }
.graceschool__media img{
  width:100%; height:100%; object-fit:cover; display:block;
  /* subtle single drift to avoid obvious repeating look */
  animation:graceschool-ken var(--g-auto) ease-in-out infinite alternate;
  filter:saturate(1.05) contrast(1.05);
}
@keyframes graceschool-ken{
  from{ transform:scale(1.03) translate3d(0,0,0) }
  to  { transform:scale(1.07) translate3d(0,-1.2%,0) }
}

.graceschool__shade{
  position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(900px 360px at 14% 90%, rgba(106,110,207,.45), transparent 70%),
    linear-gradient(0deg, rgba(0,0,0,.66), rgba(0,0,0,.2) 40%, rgba(0,0,0,.2));
}

/* glass content card */
.graceschool__content{ position:relative; z-index:3; height:100%; display:grid; align-content:end; padding:clamp(20px,5vw,46px) }
.graceschool__card{
  width:min(780px,92%); backdrop-filter:blur(10px);
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.25); border-radius:20px;
  padding:clamp(16px,3.2vw,22px); color:#fff; box-shadow:0 10px 30px rgba(2,6,23,.25);
}
.graceschool__eyebrow{ display:inline-flex; align-items:center; gap:8px; font-weight:700; color:#e2e8f0; letter-spacing:.3px; margin-bottom:8px }
.graceschool__dot{ width:10px; height:10px; border-radius:999px; background:var(--g-brand) }
.graceschool__title{ margin:6px 0 8px; font-size:clamp(28px, 4.6vw, 54px); line-height:1.08; color:#fff; text-shadow:0 12px 28px rgba(0,0,0,.45)}
.graceschool__text{ margin:0; color:#e5eaf1; font-size:clamp(14px, 1.4vw, 18px); line-height:1.7; max-width:65ch }
.graceschool__cta{ display:flex; gap:12px; margin-top:14px; flex-wrap:wrap }
.graceschool__btn{ border:0; cursor:pointer; font-weight:800; border-radius:12px; padding:12px 18px; font-size:15px; text-decoration:none; transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease }
.graceschool__btn--primary{ color:#fff; background:linear-gradient(135deg, var(--g-brand), var(--g-brand-2)); box-shadow:0 10px 24px rgba(106,110,207,.35) }
.graceschool__btn--ghost{ color:#fff; background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.25) }
.graceschool__btn:hover{ transform:translateY(-2px) }

/* arrows */
.graceschool__arrows{ position:absolute; inset:0; display:flex; align-items:center; justify-content:space-between; padding:0 10px; pointer-events:none; z-index:4 }
.graceschool__arrows button{
  pointer-events:auto; width:var(--g-btn); height:var(--g-btn); border-radius:50%; border:0;
  display:grid; place-items:center; background:#fff; color:var(--g-ink);
  box-shadow:0 10px 24px rgba(2,6,23,.28); cursor:pointer; transition:transform .15s ease;
}
.graceschool__arrows button:hover{ transform:scale(1.05) }
.graceschool__arrows svg{ width:22px; height:22px }

/* dots */
.graceschool__dots{
  position:absolute; left:50%; transform:translateX(-50%); bottom:14px; z-index:5;
  display:flex; gap:8px; background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.25); padding:8px; border-radius:999px; backdrop-filter:blur(6px);
}
.graceschool__dotbtn{
  width:12px; height:12px; border-radius:999px; border:0; cursor:pointer; background:#fff; opacity:.65;
  transition:width .22s ease, opacity .2s ease, background .2s ease;
}
.graceschool__dotbtn[aria-current="true"]{ width:34px; opacity:1; background:linear-gradient(90deg, var(--g-brand), var(--g-brand-2)) }

/* progress */
.graceschool__progress{ position:absolute; left:0; right:0; bottom:0; height:4px; background:rgba(255,255,255,.25) }
.graceschool__bar{ height:100%; width:0%; background:linear-gradient(90deg, var(--g-brand), var(--g-brand-2)); transition:width linear }

@media (prefers-reduced-motion: reduce){
  .graceschool__track{ transition:none }
  .graceschool__media img{ animation:none }
  .graceschool__bar{ transition:none }
}
@media (max-width:560px){
  .graceschool{ --g-btn:44px }
  .graceschool__card{ border-radius:16px }
}
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #444;
    margin-bottom: 12px;
}

.contact-info li i {
    background: #0059d4;
    color: #fff;
    font-size: 14px;
    padding: 8px;
    border-radius: 50%;
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info a {
    color: #0059d4;
    text-decoration: none;
    transition: 0.3s;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Default: No padding on mobile/tablet */
.footer_menu {
    padding-left: 0 !important;
}

/* Desktop only (992px and above) */
@media (min-width: 992px) {
    .footer_menu {
        padding-left: 50px !important;
    }
}
