/* ==========================================================================
   R.K. GLORIOUS ACADEMY — Custom Stylesheet
   Palette derived from school crest:
   --royal-blue   : background ring / primary
   --sun-orange   : sunburst accent / CTA
   --golden       : crest yellow / highlight
   --wreath-green : laurel wreath accent
   --cream        : light base
   --ink          : dark text
   ========================================================================== */

:root {
  --royal-blue: #1B3A8C;
  --royal-blue-dark: #122a68;
  --sun-orange: #E6452B;
  --sun-orange-dark: #c4341d;
  --golden: #F4B400;
  --golden-soft: #FCE8A8;
  --wreath-green: #1E7A34;
  --cream: #FFF9EC;
  --ink: #15192B;
  --ink-soft: #4b5066;

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 10px 30px rgba(27, 58, 140, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.3px;
}

a { text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sun-orange);
}

/* === Sunburst arc divider — signature element ===
   A thin gradient arc echoing the crest's rising-sun motif.
   Used between major sections instead of a plain straight line. */
.sunburst-divider {
  position: relative;
  height: 46px;
  width: 100%;
  overflow: hidden;
  background: transparent;
}
.sunburst-divider svg { width: 100%; height: 100%; display: block; }

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
  background: var(--royal-blue-dark);
  color: #eef1fb;
  font-size: 0.85rem;
  padding: 6px 0;
}
.topbar a { color: #eef1fb; }
.topbar a:hover { color: var(--golden); }
.topbar .topbar-item { display: inline-flex; align-items: center; gap: 6px; margin-right: 1.4rem; }
.topbar .topbar-item:last-child { margin-right: 0; }
.topbar .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  margin-left: 6px;
  transition: background 0.2s ease;
}
.topbar .social-link:hover { background: var(--sun-orange); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar-rkga {
  background: var(--cream);
  padding: 10px 0;
  box-shadow: 0 2px 18px rgba(27,58,140,0.08);
}
.navbar-rkga .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand
{
    margin-left: -22px;
}

@media(max-width:768px)
{
   .navbar-brand
    {
        margin-left: 0px;
    } 
}

.navbar-rkga .navbar-brand img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--golden);
}
.navbar-rkga .brand-text-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 25px;
  color: var(--royal-blue);
  line-height: 1.1;
  display: block;
}
.navbar-rkga .brand-text-sub {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sun-orange);
  font-weight: 600;
}
 
.navbar-rkga .nav-link {
  font-weight: 600;
  color: var(--ink) !important;
  padding: 10px 10px !important;
  position: relative;
}
.navbar-rkga .nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--sun-orange);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.navbar-rkga .btn-admission{color:#ffd400 !important;}

.navbar-rkga .nav-link:hover::after,
.navbar-rkga .nav-link.active::after { transform: scaleX(1); }
.navbar-rkga .nav-link:hover { color: #e6452b !important; }
.navbar-rkga .btn-admission:hover { color:#ffffff !important; }
 
/* Hover-open dropdown (desktop only — mobile keeps tap-to-open) */
.navbar-rkga .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 10px;
  margin-top: 10px !important;
}
@media (min-width: 992px) {
  .navbar-rkga .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .navbar-rkga .dropdown.show-on-hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.navbar-rkga .dropdown-item {
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 500;
  font-size: 0.92rem;
}
.navbar-rkga .dropdown-item:hover,
.navbar-rkga .dropdown-item:focus {
  background: var(--golden-soft);
  color: var(--royal-blue);
}
 
.btn-admission {
  background: var(--sun-orange);
  color: #fff !important;
  font-weight: 600;
  padding: 10px 22px !important;
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(230,69,43,0.35);
}
.btn-admission:hover { background: var(--sun-orange-dark); color: #fff !important; }
.btn-admission::after { display: none !important; }

/* ==========================================================================
   HERO SLIDER (Swiper)
   ========================================================================== */
.hero-slider-wrap {
  position: relative;
}
.hero-swiper {
  width: 100%;
}
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
/* Overlay effect: royal-blue to transparent + a soft sunburst glow */
.hero-swiper .slide-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(244,180,0,0.28), transparent 45%),
    linear-gradient(100deg, rgba(18,42,104,0.92) 0%, rgba(18,42,104,0.62) 38%, rgba(18,42,104,0.18) 70%, rgba(18,42,104,0.05) 100%);
}
.hero-swiper .slide-caption {
  position: absolute;
  left: 6%;
  bottom: 14%;
  max-width: 620px;
  color: #fff;
  z-index: 5;
}
.hero-swiper .slide-caption .eyebrow { color: var(--golden); }
.hero-swiper .slide-caption h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  margin: 10px 0 14px;
  line-height: 1.1;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.hero-swiper .slide-caption p {
  font-size: 1.05rem;
  color: #eef1fb;
  max-width: 520px;
  margin-bottom: 22px;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
  width: 10px; height: 10px;
}
.swiper-pagination-bullet-active {
  background: var(--golden);
  opacity: 1;
}
.swiper-button-next, .swiper-button-prev {
  background: rgba(255,255,255,0.15);
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease;
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--sun-orange); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1.1rem !important; color: #fff; }

.btn-hero {
  background: var(--golden);
  color: var(--ink) !important;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 8px 22px rgba(244,180,0,0.4);
  transition: transform 0.2s ease;
}
.btn-hero:hover { transform: translateY(-3px); }

/* ==========================================================================
   NOTICE BOARD — overlaps hero bottom edge
   ========================================================================== */
.notice-board-wrap {
  position: relative;
  z-index: 10;
  margin-top: -74px;
}
.notice-board {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-left: 6px solid var(--sun-orange);
}
.notice-label {
  background: var(--royal-blue);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  font-weight: 700;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.notice-label .bell-dot {
  width: 8px; height: 8px;
  background: var(--golden);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.notice-ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 11px 18px;
  display: flex;
  align-items: center;
}
.notice-ticker-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker-scroll 120s linear infinite;
}
.notice-ticker-inner:hover { animation-play-state: paused; }
.notice-ticker-inner span.notice-pill {
  display: inline-flex;
  align-items: center;
  margin-right: 50px;
  font-weight: 500;
  color: var(--ink);
}
.notice-ticker-inner span.notice-pill::before {
  content: "\f0a4";
  font-family: "bootstrap-icons";
  color: var(--sun-orange);
  margin-right: 10px;
  font-weight: 400;
}
.notice-ticker-inner span.tag-new {
  background: var(--sun-orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-right: 8px;
  letter-spacing: 0.5px;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.notice-view-all {
  background: var(--golden);
  color: var(--ink);
  display: flex;
  align-items: center;
  padding: 0 24px;
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.92rem;
}
.notice-view-all:hover { background: var(--golden); color: var(--royal-blue); }

@media (max-width: 767.98px) {
  .notice-board { flex-wrap: wrap; }
  .notice-label { width: 100%; padding: 12px 18px; }
  .notice-view-all { display: none; }
}

/* Full notice list (below ticker, for accessibility / no-JS fallback feel) */
.notice-list-section { padding: 70px 0 30px; }
.notice-card-list {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 8px;
}
.notice-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid #f0ece0;
}
.notice-row:last-child { border-bottom: none; }
.notice-date-badge {
  background: var(--royal-blue);
  color: #fff;
  border-radius: 12px;
  min-width: 64px;
  text-align: center;
  padding: 8px 4px;
  font-family: var(--font-display);
  line-height: 1.1;
}
.notice-date-badge .day { font-size: 1.3rem; font-weight: 700; display: block; }
.notice-date-badge .mon { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--golden); }
.notice-row h6 { margin: 0 0 2px; font-weight: 600; font-size: 0.98rem; }
.notice-row p { margin: 0; font-size: 0.85rem; color: var(--ink-soft); }


.notice-card-list{
    height:350px;
    overflow:hidden;
    position:relative;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

#noticeScroller{
    position:relative;
}

/* ==========================================================================
   SECTION HEADERS (shared)
   ========================================================================== */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--royal-blue);
  margin: 10px 0 16px;
}
.section-head .underline-flourish {
  width: 90px; height: 14px;
  margin: 0 auto 14px;
  background: none;
}
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section { padding: 90px 0; background: #fff; }
.about-media {
  position: relative;
  padding: 10px;
}
.about-media .ring-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-media .ring-frame img { width: 100%; display: block; height: 460px; object-fit: cover; }
.about-media .badge-float {
  position: absolute;
  bottom: -26px;
  right: -10px;
  background: var(--royal-blue);
  color: #fff;
  width: 140px; height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 5px solid var(--golden);
  box-shadow: var(--shadow-soft);
}
.about-media .badge-float .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}
.about-media .badge-float .lbl {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--golden);
  margin-top: 4px;
}

.about-content .eyebrow { display: block; margin-bottom: 10px; }
.about-content h2 { color: var(--royal-blue); font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 18px; }
.about-content p { color: var(--ink-soft); margin-bottom: 16px; line-height: 1.75; }

.about-points { list-style: none; padding: 0; margin: 26px 0; }
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
}
.about-points li i {
  background: var(--golden-soft);
  color: var(--sun-orange);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-outline-rkga {
  border: 2px solid var(--royal-blue);
  color: var(--royal-blue);
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.btn-outline-rkga:hover { background: var(--royal-blue); color: #fff; }


   /* ===============================
   ACADEMIC JOURNEY
=================================*/

.academic-journey{
    padding:90px 0;
    background:#f8fafc;
}

.journey-heading{
    text-align:center;
    margin-bottom:60px;
}

.journey-heading span{
    color:#f39c12;
    font-weight:700;
    letter-spacing:3px;
    font-size:13px;
}

.journey-heading h2{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin:15px 0;
    color:#082c5e;
}

.journey-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    font-size:18px;
}

/* Cards */

.journey-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.journey-card{
    position:relative;
    padding:50px 35px;
    min-height:340px;
    transition:.4s;
    overflow:hidden;
}

.journey-card:hover{
    transform:translateY(-10px);
}

.stage1{
    background:#0f4c1b;
    color:#fff;
}

.stage2{
    background:#e7f0e4;
    color:#1d2f20;
}

.stage3{
    background:#132640;
    color:#fff;
}

.stage-number{
    position:absolute;
    top:20px;
    right:25px;
    font-size:80px;
    font-weight:800;
    opacity:.08;
}

.stage-icon{
    font-size:42px;
    margin-bottom:25px;
}

.stage-label{
    display:block;
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:15px;
    font-weight:700;
}

.journey-card h3{
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.journey-card p{
    margin-bottom:25px;
    opacity:.9;
}

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.tags span{
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.stage1 .tags span{
    background:rgba(255,255,255,.15);
}

.stage2 .tags span{
    background:#d7e5d4;
}

.stage3 .tags span{
    background:rgba(255,255,255,.12);
}

/* Responsive */

@media(max-width:991px){

    .journey-grid{
        grid-template-columns:1fr;
    }

    .journey-heading h2{
        font-size:38px;
    }

    .journey-card{
        min-height:auto;
    }
}

@media(max-width:576px){

    .academic-journey{
        padding:70px 0;
    }

    .journey-heading h2{
        font-size:30px;
    }

    .journey-card{
        padding:35px 25px;
    }

    .journey-card h3{
        font-size:26px;
    }

    .stage-number{
        font-size:60px;
    }
}

/* ==========================================================================
   FACILITIES SECTION
   ========================================================================== */
.facilities-section { padding: 90px 0; background: var(--royal-blue); position: relative; overflow: hidden; }
.facilities-section .section-head h2,
.facilities-section .section-head p { color: #fff; }
.facilities-section .section-head .eyebrow { color: var(--golden); }
.facilities-section .section-head p { color: #cdd6f0; }

.facility-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}
.facility-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.facility-card:hover img { transform: scale(1.08); }
.facility-card .facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,42,104,0) 35%, rgba(18,42,104,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
}
.facility-card .facility-icon {
  width: 46px; height: 46px;
  background: var(--golden);
  color: var(--royal-blue-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.facility-card h5 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 4px; }
.facility-card p { font-size: 0.86rem; color: #dfe6f7; margin: 0; max-height: 0; opacity: 0; transition: all 0.35s ease; overflow: hidden; }
.facility-card:hover p { max-height: 60px; opacity: 1; margin-top: 6px; }

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section { padding: 90px 0; background: var(--cream); }
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.gallery-filter button {
  border: 2px solid var(--royal-blue);
  background: transparent;
  color: var(--royal-blue);
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.gallery-filter button.active,
.gallery-filter button:hover {
  background: var(--royal-blue);
  color: #fff;
}
.gallery-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 280px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    padding: 20px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,.2)
    );
    color: #fff;
    transition: .4s ease;
}

.gallery-grid-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.gallery-overlay span {
    font-size: 13px;
    opacity: .9;
}

.gallery-zoom {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: .4s;
    z-index: 2;
}

.gallery-grid-item:hover .gallery-zoom {
    transform: scale(1);
}

.gallery-zoom i {
    font-size: 20px;
}

@media(max-width:768px){
    .gallery-grid-item{
        height:220px;
    }
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats-strip {
  background: var(--sun-orange);
  padding: 46px 0;
}
.stat-item { text-align: center; color: #fff; }
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  display: block;
}
.stat-item .stat-lbl { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; }

/* ==========================================================================
   CONTACT / ENQUIRY SECTION
   ========================================================================== */
.contact-section { padding: 90px 0; background: #fff; }
 
/* --- Enquiry Form Card --- */
.enquiry-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-soft);
  border-top: 6px solid var(--royal-blue);
  position: relative;
}
.enquiry-card h3 {
  font-family: var(--font-display);
  color: var(--royal-blue);
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.enquiry-card .enquiry-sub {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 26px;
}
 
.enquiry-form .form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 6px;
}
.enquiry-form .form-control,
.enquiry-form .form-select {
  border: 1.5px solid #e3ddc9;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 0.2rem rgba(27,58,140,0.12);
}
.enquiry-form .form-control.is-invalid,
.enquiry-form .form-select.is-invalid {
  border-color: var(--sun-orange);
}
.enquiry-form .form-control.is-invalid:focus,
.enquiry-form .form-select.is-invalid:focus {
  box-shadow: 0 0 0 0.2rem rgba(230,69,43,0.15);
}
.enquiry-form .invalid-feedback {
  font-size: 0.78rem;
  color: var(--sun-orange-dark);
}
 
.btn-submit-enquiry {
  background: var(--sun-orange);
  color: #fff;
  font-weight: 700;
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  width: 100%;
  font-size: 0.98rem;
  box-shadow: 0 8px 20px rgba(230,69,43,0.32);
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-submit-enquiry:hover { background: var(--sun-orange-dark); transform: translateY(-2px); }
 
/* Success state */
.enquiry-success {
  text-align: center;
  padding: 36px 10px;
}
.enquiry-success i {
  font-size: 3.2rem;
  color: var(--wreath-green);
  margin-bottom: 14px;
  display: inline-block;
}
.enquiry-success h4 {
  font-family: var(--font-display);
  color: var(--royal-blue);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.enquiry-success p { color: var(--ink-soft); margin-bottom: 4px; }
 
/* --- Google Map Card --- */
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  border-top: 6px solid var(--golden);
}
.map-embed-wrap {
  flex: 1;
  min-height: 320px;
  position: relative;
}
.map-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.9);
}
.map-info-bar {
  background: var(--royal-blue);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}
.map-info-item i { color: var(--golden); font-size: 1.2rem; margin-top: 2px; }
.map-info-item strong { display: block; margin-bottom: 2px; }
.map-info-item span { color: #cdd6f0; }
.map-direction-link {
  background: var(--golden);
  color: var(--royal-blue-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 50px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
}
.map-direction-link:hover { background: #fff; color: var(--royal-blue); }
 
@media (max-width: 575.98px) {
  .enquiry-card { padding: 28px 22px; }
  .map-info-bar { flex-direction: column; align-items: flex-start; }
}
 

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-rkga {
  background: var(--royal-blue-dark);
  color: #cdd6f0;
  padding: 70px 0 0;
  position: relative;
}
.footer-rkga h5 {
  color: #fff;
  font-family: var(--font-display);
  margin-bottom: 22px;
  font-size: 1.2rem;
}
.footer-rkga .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-rkga .footer-brand img {
  height: 54px; width: 54px;
  border-radius: 50%;
  border: 2px solid var(--golden);
}
.footer-rkga .footer-brand .brand-text-main { color: #fff; font-size: 1.2rem; font-family: var(--font-display); }
.footer-rkga p.tagline { color: #aab6dd; font-size: 0.92rem; line-height: 1.7; }
.footer-rkga ul { list-style: none; padding: 0; margin: 0; }
.footer-rkga ul li { margin-bottom: 12px; }
.footer-rkga ul li a { color: #cdd6f0; transition: color 0.2s ease; font-size: 0.92rem; }
.footer-rkga ul li a:hover { color: var(--golden); }
.footer-rkga .contact-line { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.92rem; }
.footer-rkga .contact-line i { color: var(--golden); margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--sun-orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #9aa6cf;
}
.footer-bottom a { color: var(--golden); }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sun-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(230,69,43,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--royal-blue); }

/* ==========================================================================
   ANIMATIONS — fade-up on scroll
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .notice-ticker-inner { animation: none; }
  .bell-dot { animation: none; }
}

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, .nav-link:focus-visible {
  outline: 3px solid var(--golden);
  outline-offset: 3px;
}

@media (max-width: 991.98px) {
  .about-media .badge-float { width: 110px; height: 110px; right: 14px; }
  .hero-swiper { height: 88vh; }
}
@media (max-width: 575.98px) {
  .hero-swiper .slide-caption { left: 5%; right: 5%; bottom: 18%; }
  .notice-board-wrap { margin-top: -28px; }
  .about-media .ring-frame img { height: 320px; }
}
