/* === Prevent horizontal scroll & set box-sizing === */
html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;              /* stop horizontal scrolling */
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* make sure every element uses border-box sizing */
*, *::before, *::after { box-sizing: inherit; }

/* Ensure images and media never push past their containers */
img, picture, video, iframe, .hero-bg, .adv-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent absolutely positioned elements from overflowing */
.hero-bg, .hero-gradient {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
}

/* Utility: container padding won't create overflow */
.container, .wrap {
  max-width: var(--max-w, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(var(--page-pad, 20px));
  padding-right: calc(var(--page-pad, 20px));
  box-sizing: border-box;
}

/* Avoid use of calc(100vw - ...) when safe-area-inset is not handled */
.edge-to-edge {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Fix any negative translateX that might overflow */
.enquiry-card,
.some-floater {
  transform: none; /* remove if causing overflow; re-add per breakpoint if needed */
}

/* Specific fixes for small phones when you used calc(100vw - 32px) centering */
@media (max-width: 576px) {
  .enquiry-card {
    width: calc(100% - 32px) !important;
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
}

/* Debug helper (temporary; remove after confirming) */
/* * { outline: 1px solid rgba(255,0,0,0.03); } */


/* --- Consolidated theme tokens --- */
:root{
  /* layout */
  --max-w:1200px;
  --page-pad:20px;

  /* colors */
  --bg: #f3f6f8;        /* general light bg */
  --muted: #6f7a84;     /* muted body text (single value reused) */
  --deep: #243b6a;      /* deep/navy used for headings */
  --navy: #1C325D;      /* alternate navy */
  --green: #0EA463;
  --yellow: #F3A81C;
  --card-bg:#fff;

  /* misc */
  --radius-lg:14px;
  --radius-md:12px;
  --shadow-1: 0 6px 18px rgba(27,36,48,0.03);
  --shadow-2: 0 10px 20px rgba(21,31,39,0.06);
  --fw-regular: 300;
  --fw-medium: 600;
  --fw-bold: 700;
  --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* --- Base layout helpers reused by sections --- */
.container,
.wrap{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  box-sizing: border-box;
  font-family: var(--font-sans);
}

/* small utility */
.center { text-align:center; }

/* --- Generic heading / lead styles (used across sections) --- */
.h1-like{
  color: var(--deep);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  margin: 0 0 8px;
}
.lead {
  color: var(--muted);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  max-width: 760px;
  margin: 8px auto 36px;
}

/* --- Card base (used by many small cards) --- */
.card-base{
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(27,36,48,0.04);
  box-shadow: var(--shadow-1);
  display:flex;
  gap:14px;
  align-items:flex-start;
}

/* --- Why / Features cards (grid responsive) --- */
.cards {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr; /* mobile-first */
}
.card {
  composes: card-base;
  flex-direction: column;
  align-items: flex-start;
  min-height: 126px;
  padding: 20px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

/* icon container */
.icon-wrap {
  width:56px; height:56px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; margin-bottom:6px;
}

/* card typography */
.card-title{ font-size:18px; margin:0; color:#121826; font-weight:var(--fw-medium); }
.card-desc{ margin:0; color:var(--muted); font-size:14px; line-height:1.6; font-weight:400; }

/* --- Pathways / larger cards --- */
.pathways-grid{ display:grid; gap:28px; grid-template-columns:1fr; margin-bottom:42px; }
.path-card{ background:var(--card-bg); border-radius:var(--radius-md); padding:28px; border:1px solid rgba(34,50,70,0.06); box-shadow:var(--shadow-1); display:flex; flex-direction:column; gap:14px; }
.pc-icon{ width:56px; height:56px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }

/* CTA common */
.btn{ display:inline-block; padding:12px 20px; border-radius:10px; font-weight:var(--fw-medium); text-decoration:none; text-align:center; min-width:220px; }
.btn-solid{ background:var(--navy); color:#fff; border:2px solid var(--navy); }
.btn-outline{ background:transparent; color:var(--green); border:2px solid var(--green); }

/* --- Approach band (pale blue band) --- */
.approach-band{ margin-top:40px; background: #d9e3f6; padding:34px 12px; border-radius:14px; }
.approach-inner{ max-width:var(--max-w); margin:0 auto; padding:0 var(--page-pad); }
.approach-title{ text-align:center; margin:0 0 20px; font-size:22px; color:#113048; font-weight:var(--fw-bold); }
.approach-list{ display:grid; gap:18px; grid-template-columns:1fr; align-items:center; justify-items:start; }
.approach-item{ display:flex; gap:14px; align-items:center; min-height:48px; }
.ai-icon{ width:44px; height:44px; display:flex; align-items:center; justify-content:center; }
.approach-item p{ margin:0; color:#113048; font-size:14px; line-height:1.35; }

/* --- Campus hero row and small features --- */
.hero-row{ display:grid; grid-template-columns:1fr; gap:22px; margin-bottom:28px; }
.hero-card{ position:relative; overflow:hidden; border-radius:var(--radius-lg); min-height:200px; box-shadow:var(--shadow-2); border:1px solid rgba(16,24,32,0.04); }
.hero-card img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.hero-card:hover img{ transform:scale(1.03); }
.hero-overlay{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(9,14,20,0.08) 20%, rgba(9,14,20,0.56) 100%); display:flex; align-items:flex-end; padding:22px; }
.hero-content{ color:#fff; display:flex; flex-direction:column; gap:6px; max-width:70%; }
.icon-tile{ width:48px; height:48px; border-radius:10px; background:rgba(255,255,255,0.08); display:inline-flex; align-items:center; justify-content:center; margin-bottom:6px; }

/* small feature cards grid */
.features-grid{ display:grid; grid-template-columns:1fr; gap:18px; margin-top:20px; }
.feature-card{ composes: card-base; padding:18px; border-radius:12px; box-shadow:0 8px 18px rgba(21,31,39,0.03); }
.feature-icon{ width:52px; height:52px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.feature-title{ margin:0; font-size:16px; color:var(--text, #162029); font-weight:var(--fw-medium); }
.feature-desc{ margin:6px 0 0; color:var(--muted); font-size:13px; font-weight:var(--fw-regular); line-height:1.45; }

/* balanced-learners section (icons row) */
.balanced-learners{ background:#F8FBF7; padding:70px 20px 90px; text-align:center; }
.bl-grid{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:40px; }
.bl-item{ width:180px; text-align:center; margin:auto; }
.bl-icon{ width:80px; height:80px; border-radius:18px; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }

/* color classes for icon tiles (reusable) */
.navy-bg{ background:var(--navy); color:#fff; }
.green-bg{ background:var(--green); color:#fff; }
.yellow-bg{ background:var(--yellow); color:#fff; }

/* --- Responsive breakpoints --- */
/* tablet */
@media (min-width:720px){
  .h1-like{ font-size:40px; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .pathways-grid{ grid-template-columns: repeat(2, 1fr); gap:32px; }
  .hero-row{ grid-template-columns: 2fr 1fr; gap:28px; }
  .features-grid{ grid-template-columns: repeat(2, 1fr); }
  .approach-list{ grid-template-columns: repeat(2, 1fr); gap:18px; }
  .bl-grid{ justify-content:center; gap:35px 60px; }
}

/* desktop */
@media (min-width:1100px){
  .h1-like{ font-size:52px; }
  .cards{ grid-template-columns: repeat(4, 1fr); gap:28px; }
  .pathways-grid{ grid-template-columns: 1.05fr 0.95fr; gap:30px; }
  .hero-row{ grid-template-columns: 2.2fr 1fr; gap:32px; }
  .hero-card{ min-height:260px; }
  .features-grid{ grid-template-columns: repeat(5, 1fr); gap:22px; }
  .approach-list{ grid-template-columns: repeat(4, 1fr); gap:22px; }
}

/* small screens tweaks */
@media (max-width:420px){
  .h1-like{ font-size:26px; }
  .cards .card{ padding:16px; }
  .icon-wrap{ width:48px; height:48px; }
  .pathways-grid{ grid-template-columns: 1fr; }
  .pc-title{ font-size:16px; }
  .pc-desc{ font-size:14px; }
  .btn{ padding:10px 14px; min-width:180px; font-size:13px; }
  .feature-card{ padding:14px; gap:10px; }
  .feature-icon{ width:44px; height:44px; }
  .bl-item{ width:100%; }
}
/* Awards section (add to consolidated CSS) */
.awards-section{
  background: #FBEED5;
  padding: 20px 0 3%;
}

.awards-wrap{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  box-sizing: border-box;
}

.awards-grid{
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  align-items: start;
  margin-top: 14px;
}

/* award card */
.award-card{
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(27,36,48,0.04);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

/* award title inside card */
.award-card h3{
  font-size: 1.4rem;
  margin: 0;
  text-align: center;
  color: var(--deep);
  font-weight: var(--fw-bold);
}

/* responsive image */
.award-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* small caption (visually hidden for a11y if not needed) */
.award-caption{
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
  font-weight: var(--fw-regular);
}

/* layout breakpoints */
@media (min-width:720px){
  .awards-grid{ grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (max-width:420px){
  .awards-section{ padding-top: 14px; padding-bottom: 5%; }
  .award-card h3{ font-size: 1.2rem; }
}
/* LOCATION SECTION */
.location-section{
  background:#f3f6f8;
  padding:80px 20px;
  font-family:var(--font-sans);
}

.location-wrap{
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 var(--page-pad);
}

/* GRID */
.location-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:center;
}

/* LEFT SIDE */
.loc-heading{
  font-size:40px;
  font-weight:700;
  color:var(--navy);
  margin:0 0 12px;
  line-height:1.15;
}
.loc-heading span{
  color:var(--green);
  font-size:42px;
}

.loc-sub{
  color:var(--muted);
  font-size:17px;
  max-width:480px;
  line-height:1.6;
  font-weight:300;
  margin-bottom:32px;
}

/* LIST ITEMS */
.loc-features{
  list-style:none;
  padding:0;
  margin:0 0 35px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.loc-item{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:16px;
  color:var(--text);
}

.loc-icon{
  width:44px;
  height:44px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.green-bg{
  background:var(--green);
}

/* BUTTON */
.loc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--green);
  color:#fff;
  font-weight:600;
  padding:14px 28px;
  border-radius:12px;
  font-size:15px;
  text-decoration:none;
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
  transition:0.25s;
}

.loc-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 26px rgba(0,0,0,0.12);
}

/* RIGHT CARD */
.loc-card{
  background:#dbe7fb;
  border-radius:18px;
  box-shadow:0 30px 60px rgba(30,50,70,0.10);
  padding:40px 20px;
}

.loc-card-inner{
  text-align:center;
}

.loc-school{
  margin:20px 0 6px;
  font-size:20px;
  color:var(--navy);
  font-weight:700;
}

.loc-addres
{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
  font-weight:300;
}

  :root{
    --max-w:1200px;
    --page-pad:22px;
    --navy: #1C325D;
    --deep: #243b6a;
    --green:#0EA463;
    --accent-cta:#F3A81C;
    --muted:#6F7A88;
    --bg-hero: linear-gradient(90deg, rgba(28,48,78,0.86) 0%, rgba(28,48,78,0.64) 42%, rgba(28,48,78,0.26) 62%, rgba(28,48,78,0.0) 100%);
    --card-radius: 14px;
    --shadow-lg: 0 20px 40px rgba(18,36,54,0.18);
    --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  }

  /* section layout */
  .hero-hero{
    position: relative;
    background: var(--navy);
    color: #fff;
    padding: 48px 0 80px;
    overflow: hidden;
    font-family: var(--font-sans);
  }

  .hero-inner{
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--page-pad);
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  /* left content */
  .hero-content{ max-width: 760px; z-index: 3; }
  .hero-badge{
    display: inline-block;
    background: rgba(243,168,28,0.12);
    color: var(--accent-cta);
    border-radius: 999px;
    padding: 8px 16px;
    font-weight:600;
    font-size:13px;
    margin-bottom:18px;
    border: 1px solid rgba(243,168,28,0.18);
  }

  .hero-title{
    font-size:42px;
    line-height:1.02;
    margin: 6px 0 12px;
    font-weight:700;
    color: #fff;
    text-shadow: 0 8px 30px rgba(6,12,24,0.35);
  }
  .hero-accent{ color: var(--accent-cta); display:block; font-weight:800; }

  .hero-lead{
    color: rgba(255,255,255,0.88);
    font-size:16px;
    font-weight:300;
    line-height:1.7;
    margin-bottom:22px;
    max-width:760px;
  }

  .hero-tags{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:22px; }
  .tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background: rgba(255,255,255,0.06);
    padding:10px 14px;
    border-radius: 12px;
    color: rgba(255,255,255,0.95);
    font-weight:600;
    font-size:14px;
    border: 1px solid rgba(255,255,255,0.04);
  }
  .tag svg{ width:14px; height:14px; opacity:0.95; }

  .hero-ctas{ display:flex; gap:14px; margin-top:8px; flex-wrap:wrap; }
  .btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius:10px; padding:12px 18px; text-decoration:none; cursor:pointer; font-weight:600; font-size:15px; }
  .btn-primary{ background: var(--accent-cta); color: #082036; border: none; box-shadow: 0 8px 18px rgba(243,168,28,0.18); }
  .btn-outline{ background: #357e81; color: rgba(255,255,255,0.95); border: 1px solid rgba(255,255,255,0.18); }
  .btn-arrow{ margin-left:6px; font-weight:700; }

  /* hero media (background image) */
  .hero-media{ position: relative; min-height:360px; z-index:1; border-radius:var(--card-radius); overflow:visible; }
  .hero-bg{
    width:100%;
    height:420px;
    border-radius: var(--card-radius);
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: var(--shadow-lg);
  }
  .hero-overlay-gradient{
    position:absolute; inset:0; border-radius:var(--card-radius);
    background: var(--bg-hero);
    pointer-events:none;
  }

  /* enquiry form overlay card */
  .enquiry-card{
    position: absolute;
    right: 6%;
    top: 28%;
    width: 340px;
    background: rgba(255,255,255,0.98);
    color: var(--navy);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(12,30,60,0.18);
    padding: 20px;
    z-index: 6;
    transform: translateY(-10px);
  }

  .enquiry-card h3{ margin:0 0 10px; font-size:18px; color:var(--deep); }
  .enquiry-form{ display:flex; flex-direction:column; gap:10px; }
  .enquiry-form input,
  .enquiry-form select{
    width:100%;
    padding:10px 12px;
    border-radius:8px;
    border:1px solid rgba(10,20,30,0.06);
    background:#fff;
    font-size:14px;
    color:var(--deep);
    box-sizing:border-box;
  }

  .enq-row{ display:flex; gap:10px; margin-top:6px; }
  .enq-row .full{ flex:1; }
  .btn-secondary{ background:transparent; border:1px solid rgba(10,20,30,0.08); color:var(--deep); }

  .enq-foot{ margin-top:8px; font-size:13px; color:var(--muted); text-align:center; }
  .enq-foot a{ color:var(--deep); text-decoration:none; font-weight:600; }

  /* small-screen behaviour: stack the form below and make it full-width */
  @media (max-width: 900px){
    .hero-inner{ grid-template-columns: 1fr; }
    .hero-bg{ height:380px; }
    .enquiry-card{ position: static; width:100%; transform:none; margin-top:-80px; padding:16px; box-shadow: 0 12px 30px rgba(12,30,60,0.12); }
    .hero-content{ z-index:5; padding-bottom:20px; }
  }

  /* larger screens: split layout so text sits left of image */
  @media (min-width: 1100px){
    .hero-inner{ grid-template-columns: 1fr 1fr; align-items:center; gap:40px; }
    .hero-bg{ height:1080px; border-radius: 18px; }
    .enquiry-card{ right:8%; top: 36%; }
    .hero-title{ font-size:56px; }
    .hero-accent{ font-size:56px; }
  }

  /* small tweaks */
  .sr-only{ position:absolute; height:1px; width:1px; overflow:hidden; clip:rect(1px,1px,1px,1px); white-space:nowrap; }
  :root{
    --accent-cta:#F3A81C;
    --navy-overlay: rgba(18,36,54,0.86);
  }

  

  /* HERO: full viewport */
  .hero-section{
    position:relative;
    min-height:100vh;
    display:block;
    overflow:hidden;
  }

  /* background image: full bleed */
  .hero-bg{
    background-image: url('/assets2/images/background/flagship2.png');
    background-size: cover;
    background-position:center;
    position:absolute;
    inset:0;
    z-index:1;
    filter: none;
  }

  /* gradient overlay to darken left side for text readability */
  .hero-gradient{
    position:absolute;
    inset:0;
    z-index:2;
    background: linear-gradient(90deg,
      rgba(18,36,54,0.86) 0%,
      rgba(18,36,54,0.64) 30%,
      rgba(18,36,54,0.36) 50%,
      rgba(18,36,54,0.12) 70%,
      rgba(18,36,54,0.00) 100%);
    pointer-events:none;
  }

  /* content sits above background */
  .hero-section .container,
  .hero-section .row { position: relative; z-index: 3; }

  /* text colors */
  .hero-section h1,.hero-section p,.hero-section .badge{ color:#fff !important; }
  .text-warning{ color: var(--accent-cta) !important; }

  /* badges look */
  .badge.bg-white-0 { background: rgba(255,255,255,0.06); color:#fff; }

 
  /* Card styling (form) */
  .card{ border:0; border-radius:12px; }
  .card .card-body{ padding:1.25rem; }

  /* responsive tweaks */
  @media (max-width: 992px){
    .hero-section .display-5, .hero-section .display-4{ font-size:2rem; }
    .hero-section .lead{ max-width:100%; }
    .hero-gradient{ background: linear-gradient(180deg, rgba(18,36,54,0.86) 0%, rgba(18,36,54,0.72) 40%, rgba(18,36,54,0.32) 100%); }
   
  }

  @media (min-width: 1100px){
    .hero-section h1.display-5{ font-size:56px; }
    .hero-section .display-4{ font-size:56px; }
  }

  .hero-section {
  min-height: 100vh;
  position: relative;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('//assets2/images/background/flagship2.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg,
    rgba(18,36,54,0.90) 0%,
    rgba(18,36,54,0.78) 30%,
    rgba(18,36,54,0.50) 50%,
    rgba(18,36,54,0.18) 70%,
    rgba(18,36,54,0.00) 100%);
}

/* Ensure text sits above gradient */
.hero-left, .enquiry-card { position: relative; z-index: 5; }

/* ============================
   TEXT STYLING (MATCHED EXACTLY)
============================ */

.hero-title2 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.hero-accent {
  color: #F3A81C;
  font-size: 60px;
  font-weight: 800;
}

.hero-lead {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.7;
  max-width: 78%;
  margin-top: 12px;
}

.hero-badge {
  background: rgba(243,168,28,0.12);
  color: #F3A81C;
  border-radius: 50px;
  padding: 8px 18px;
  display: inline-block;
  border: 1px solid rgba(243,168,28,0.20);
  font-weight: 600;
  margin-bottom: 16px;
}

/* TAGS like previous design */
.tag {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* CTA BUTTONS */
.hero-btn-primary {
  background: #F3A81C;
  border: 2px solid #F3A81C;
  color: #05203B;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 10px;
}

.hero-btn-outline {
  border: 2px solid rgba(255,255,255,0.25);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 10px;
}

.hero-btn-secondary {
  background: #fff;
  color: #1C325D;
  border-radius: 10px;
}

/* ============================
   ENQUIRY FORM CARD (MATCHED)
============================ */

.enquiry-card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 12px 28px rgba(15,25,44,0.18);
}

.enquiry-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1C325D;
  margin-bottom: 14px;
}

.custom-input {
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  margin-bottom: 12px;
  font-size: 14px;
}

.privacy-note {
  font-size: 12px;
  color: #6F7A88;
  line-height: 1.35;
  display: block;
}

.enq-foot {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: #6F7A88;
}
.enq-foot a { color: #1C325D; font-weight: 700; }


/* Title: bold, centered and responsive */
.title {
  text-align: center;
  color: var(--deep);
  font-weight: 600;                     /* bold */
  margin: 20px 0 12px;
  line-height: 1.03;
  /* responsive size: min 22px, preferred based on viewport, max 40px */
   
  letter-spacing: -0.02em;
  word-break: break-word;
}

/* Accent line below (or part of same heading) */
.title .accent {
  display: block;                       /* keeps accent on its own line */
  color: var(--accent);
  font-weight: 800;
  /* slightly larger accent to echo design */
  font-size: clamp(26px, 5.2vw, 44px);
  margin-top: 10px;
  line-height: 1.02;

}

/* Optional subtle emphasis styling for desktop */
@media (min-width: 1100px){
  .title { font-size: 35px; }
  .title .accent { font-size: 36px; }
 
}

/* Small-screen polish if you prefer stronger reduction */
@media (max-width: 420px){
  .title { margin-bottom: 10px; }
  .title .accent { margin-top: 2px; }
}

.subtitle {
  text-align: center;
  color: var(--muted);
  font-size: clamp(15px, 3.5vw, 18px);
  line-height: 1.65;
  max-width: 720px;
  margin: 10px auto 28px;
  font-weight: 300;
  font-family: var(--font-sans);
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 18px;
  font-family: var(--font-sans);
}

@media (max-width: 480px){
  p {
    font-size: 15px;
    line-height: 1.65;
  }
}

.why-section {
  background: #f3f6f8; /* Light grey background */
  padding: 70px 0;      /* Top & bottom spacing */
  position: relative;
}

.why-section .title {
  margin-bottom: 10px;
}

.why-section .subtitle {
  margin-bottom: 40px;
}


.campus-features {
  background: #f3f6f8; /* Light grey background */
  padding: 70px 0;      /* Top & bottom spacing */
  position: relative;
}

.campus-features .title {
  margin-bottom: 10px;
}

.campus-features .subtitle {
  margin-bottom: 40px;
}

.approach-band {
  width: 75%;
  margin: 60px auto;          /* centers the band */
  background: #d9e3f6;        /* your light blue band BG */
  padding: 34px 24px;
  border-radius: 14px;
  box-sizing: border-box;
}

.approach-inner {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.approach-title {
  font-size: 26px;
  font-weight: 700;
  color: #113048;
  margin-bottom: 20px;
}

/* grid layout */
.approach-list {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.approach-item {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;  /* centers icon + text */
  text-align: left;
}

.ai-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tablet */
@media (min-width: 720px) {
  .approach-band {
    width: 75%;
  }

  .approach-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1100px) {
  .approach-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .approach-title {
    font-size: 30px;
  }
}

.bl-title {
  font-size: 34px;
  font-weight: 700;      /* bold */
  color: #1C325D;        /* your theme navy */
  margin: 10px 0 6px;
  text-align: center;
  line-height: 1.35;
}

/* Mobile (small phones) */
@media (max-width: 480px) {
  .bl-title {
    font-size: 14px;     /* slightly smaller for small screens */
  }
}

/* Tablet and up */
@media (min-width: 768px) {
  .bl-title {
    font-size: 20px;     /* slightly larger on tablets/desktops */
  }
}


.splide__track::before,
.splide__track::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.splide__track::before {
  left: 0;
  background: linear-gradient(to right, #f3f6f8, transparent);
}

.splide__track::after {
  right: 0;
  background: linear-gradient(to left, #f3f6f8, transparent);
}

.splide__track {
  overflow: hidden;
  padding-bottom: 20px;
  border-radius: 18px;
  background: transparent;
}

@media (max-width: 576px) {
  .splide__track {
    padding-bottom: 14px;
  }
}

.image-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Description styling with colored background */
.slide-description {
    padding: 15px;
    font-size: 20px;
    color: #fff;
    background-color: #233565;
    text-align: center;
    flex-grow: 1;
}

/* Ensure track area is visible */
.splide__track {
    overflow: visible !important; /* Allows partial slides to be seen */
}

/* Optional: Fade effect on partially visible slides */
.splide__slide:not(.is-active):not(.is-next):not(.is-prev) {
    opacity: 1; /* Even fainter for slides beyond next/prev */
}

/* ===============================
   CTA BANNER WRAPPER
=============================== */
.custom-bg5 {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px; /* optional premium look */
  margin: 60px auto;
}

/* Desktop Banner */
.banner-desktop {
  width: 100%;
  height: auto;
  display: block;
}

.banner-mobile {
  display: none; /* hidden on desktop */
  width: 100%;
  height: auto;
}

/* ===============================
   GRADIENT OVERLAY + CONTENT
=============================== */
.overlay-content3 {
  position: absolute;
  inset: 0;
  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 20px;
  color: #fff;

  /* subtle dark overlay automatically over background image */
  background: linear-gradient(
    rgba(12, 24, 40, 0.40),
    rgba(12, 24, 40, 0.40)
  );
}

/* ===============================
   TEXT STYLING
=============================== */
.cta-banner-heading {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.cta-text {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* ===============================
   CTA BUTTON
=============================== */
.btn-admission {
  background: #F3A81C;
  border: none;
  color: #082036;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(243,168,28,0.25);
  transition: all 0.25s ease;
}

.btn-admission:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(243,168,28,0.35);
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
=============================== */

/* Tablet */
@media (max-width: 991px) {
  .cta-banner-heading { font-size: 36px; }
  .cta-text { font-size: 16px; }
}

/* Mobile */
@media (max-width: 576px) {
  .banner-desktop { display: none; }
  .banner-mobile { display: block; }

  .overlay-content3 {
    padding: 28px 18px;
    background: linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    ); /* stronger for small screens */
  }

  .cta-banner-heading {
    font-size: 26px;
    line-height: 1.2;
  }

  .cta-text {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .btn-admission {
    width: 100%;
    font-size: 15px;
    padding: 12px 22px;
  }
}


:root{
    --footer-bg: #1C325D;   /* deep navy */
    --footer-elev: #15263f;
    --footer-pad: 48px;
    --muted: #9fb0c5;
    --accent: #F3A81C;
    --radius: 12px;
  }

  .site-footer{ background:var(--footer-bg); color:#fff; font-family:inherit;padding-top: 7px; }

  .site-footer .container { max-width:1200px;
  }

  .footer-top{ padding:54px var(--page-pad); }
  .footer-grid{
    display:grid;
    grid-template-columns: 1fr;
    gap:28px;
    align-items:start;
  }

  /* columns */
  .footer-col{ padding-right:12px; }
  .footer-brand .footer-logo{ height:100%; margin-bottom:14px; filter:brightness(1.05); margin-left: -20px; }
  .footer-desc{ color:#ffffff; margin:0 0 16px; max-width:320px; font-size:14px; line-height:1.7; }

  /* social buttons */
  .social{ display:flex; gap:10px; margin-top:6px; }
  .social-btn{
    width:40px; height:40px; display:inline-flex; align-items:center; justify-content:center;
    border-radius:8px; background: rgba(255,255,255,0.03); color:#fff; border:1px solid rgba(255,255,255,0.04);
    transition: transform .14s ease, background .14s ease;
  }
  .social-btn:hover{ transform:translateY(-3px); background: rgba(255,255,255,0.06); }

  /* headings and lists */
  .footer-col-title{ font-size:18px; font-weight:700; margin-bottom:14px; color:#fff; }
  .footer-links{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
  .footer-links a{ color: rgba(255,255,255,0.92); font-size:15px; font-weight:500; opacity:0.95; }
  .footer-links a:hover{ color:var(--accent); }

  /* contact lines */
  .contact-block{ display:flex; flex-direction:column; gap:12px; margin-top:4px; }
  .contact-line{ display:flex; gap:12px; align-items:flex-start; color:#ffffff; font-size:14px; line-height:1.5; }
  .contact-line .ico{ width:18px; height:18px; margin-top:4px; color:#fff; opacity:0.85; }
  .contact-line a{ color: rgba(255,255,255,0.95); text-decoration:none; }
  .contact-line a:hover{ color:var(--accent); }

  /* footer bottom */
  .footer-bottom{ background: #13263f; padding:22px 0; margin-top:28px; }
  .footer-bottom-inner{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
  .copyright{ margin:0; color:var(--muted); font-size:14px; }
  .footer-legal a{ margin-left:18px; color:var(--muted); font-size:14px; text-decoration:none; }
  .footer-legal a:hover{ color:var(--accent); }

  /* responsive layout */
  @media(min-width:720px){
    .footer-grid{ grid-template-columns: 320px 1fr 1fr 320px; }
  }

  @media(max-width:720px){
    .footer-bottom-inner{ flex-direction:column; align-items:center; text-align:center; gap:8px; }
    .footer-legal a{ margin-left:10px; }
  }

  :root{
  --max-w:1200px;
  --page-pad:20px;
  --deep:#243b6a;
  --navy:#1C325D;
  --green:#0EA463;
  --muted:#6F7A88;
  --card-bg:#fff;
  --radius:12px;
  --shadow: 0 14px 30px rgba(18,36,54,0.06);
}

/* container */
.wrap { max-width: var(--max-w); margin:0 auto; padding: 48px var(--page-pad); box-sizing:border-box; }

/* heading */
.reviews-heading{
  text-align:center;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  font-weight:700;
  font-size:36px; /* you said 36px for title */
  margin:0 0 28px;
  color:var(--deep);
}
.reviews-heading .accent{ color:var(--green); display:block; }

/* controls (prev/next) */
.reviews-controls{
  position:relative;
  max-width:var(--max-w);
  margin: 0 auto 18px;
  height:0;
}
.reviews-btn{
  position:absolute;
  top: -8px;
  background:var(--card-bg);
  border: 1px solid rgba(20,30,50,0.06);
  width:44px; height:44px;
  border-radius:10px;
  box-shadow: 0 8px 18px rgba(12,30,60,0.06);
  display:flex; align-items:center; justify-content:center;
  color:var(--deep);
  font-size:22px;
  cursor:pointer;
}
.reviews-btn.prev{ left: calc(50% - 540px); } /* aligns with track left on large screens */
.reviews-btn.next{ right: calc(50% - 540px); } /* aligns with track right on large screens */
.reviews-btn:focus{ outline:3px solid rgba(34,64,120,0.12); }

/* track wrapper: makes the scroll area */
.reviews-track-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.12) transparent;
  margin: 0 auto;
  padding-bottom:8px;
}

/* the actual horizontal strip */
.reviews-track{
  display:flex;
  gap:22px;
  padding:12px 20px;
  align-items:stretch;
  width:fit-content; /* allows natural width for scroll snapping */
}

/* review card */
.review-card{
  scroll-snap-align:center;
  min-width: 360px;
  width: 360px;
  background:var(--card-bg);
  border-radius:var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
  border:1px solid rgba(27,36,48,0.04);
  position:relative;
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  gap:12px;
}

/* larger cards on desktop */
@media(min-width:1100px){
  .review-card{ min-width:440px; width:440px; }
  .reviews-track{ gap:28px; padding:18px; }
  /* reposition controls to sit outside track neatly */
  .reviews-btn.prev{ left: calc(50% - 600px); }
  .reviews-btn.next{ right: calc(50% - 600px); }
}

/* Stars, quote and meta */
.stars{
  color:#F3A81C;
  font-size:18px;
  letter-spacing:2px;
  font-weight:700;
}
.review-quote{
  font-style:italic;
  color:var(--deep);
  margin:0;
  font-size:16px;
  line-height:1.6;
  min-height:82px;
}
.review-meta{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
  font-weight:600;
}

/* decorative quote mark in top-right */
.quote-mark{
  position:absolute;
  right:14px;
  top:12px;
  font-size:30px;
  color:rgba(34,64,120,0.08);
}

/* small-screen layout: center one card with bigger gutters */
@media(max-width:900px){
  .wrap{ padding-left:18px; padding-right:18px; }
  .reviews-heading{ font-size:30px; }
  .review-card{ min-width:320px; width:320px; }
  .reviews-btn.prev, .reviews-btn.next { display:none; } /* hide arrows on small screens (touch swipe) */
}

/* accessibility helper: show focus ring for keyboard users */
.review-card:focus-within{ box-shadow: 0 18px 38px rgba(18,36,54,0.10); outline: none; }

/* optional: smooth scroll when snapping programmatically */
.reviews-track-wrap { scroll-behavior: smooth; }

.faq-wrap{ max-width:var(--max-w); margin:48px auto; padding: 0 var(--page-pad); box-sizing:border-box; }
  .faq-heading{ text-align:center; font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial; font-weight:800; font-size:36px; margin:0 0 8px; color:var(--deep); }
  .faq-heading .accent{ color:var(--accent); }
  .faq-sub{ text-align:center; color:var(--muted); margin:0 0 28px; font-size:15px; }

  .faq-list{ display:flex; flex-direction:column; gap:14px; align-items:center; }

  .faq-item{ width:100%; max-width:760px; border-radius:var(--radius); overflow:visible; position:relative; }
  .faq-head{ background:transparent; border-radius:var(--radius); }
  .faq-toggle{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:18px 22px;
    background:var(--card-bg);
    border-radius:var(--radius);
    border:1px solid rgba(20,40,60,0.06);
    box-shadow: var(--shadow);
    cursor:pointer;
    font-family:inherit;
    font-size:16px;
    color:var(--deep);
    font-weight:600;
    transition: box-shadow .18s ease, transform .12s ease;
  }
  .faq-toggle:focus{ outline: 3px solid rgba(28,48,78,0.08); outline-offset:2px; }

  .faq-q{ text-align:left; display:block; flex:1; }

  /* chevron */
  .chev{ color:rgba(20,40,60,0.5); transition: transform .28s cubic-bezier(.2,.9,.3,1); }
  .faq-toggle[aria-expanded="true"] .chev{ transform: rotate(180deg); color:rgba(20,40,60,0.75); }

  /* answer region */
  .faq-body{
    background:#fff;
    border-radius:0 0 var(--radius) var(--radius);
    padding:18px 22px 22px;
    border:1px solid rgba(20,40,60,0.06);
    border-top: none;
    box-shadow: 0 10px 24px rgba(20,40,60,0.04);
    color: #324154;
    font-size:15px;
    line-height:1.6;
  }

  /* hide by default handled by 'hidden' attribute; when visible, we'll animate height */
  .faq-body[hidden]{ display:none; }

  /* CTA */
  .faq-cta{ text-align:center; margin-top:30px; }
  .muted-text{ color:var(--muted); margin-bottom:12px; }
  .cta-btn{
    display:inline-block;
    background:var(--deep);
    color:#fff;
    padding:12px 22px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    box-shadow: 0 12px 30px rgba(20,40,60,0.12);
  }
  .cta-btn:hover{ transform:translateY(-3px); }

  /* Responsive */
  @media (max-width: 900px){
    .faq-heading{ font-size:30px; }
    .faq-wrap{ margin:28px auto; }
    .faq-toggle{ padding:14px 16px; font-size:15px; }
    .faq-body{ padding:14px 16px 18px; font-size:14px; }
    .faq-item{ max-width:100%; }
  }

  @media (max-width: 420px){
    .faq-heading{ font-size:24px; }
    .cta-btn{ width:100%; padding:12px; max-width:320px; }
  }

  /* --- Advantage section --- */
.advantage-section { 
  background: #f6f8fb;            /* gentle page background */
  padding: 48px 0;
  font-family: var(--font-sans, "Poppins", system-ui, Arial);
}

.advantage-section .container { max-width: 1200px; padding: 0 22px; }

.advantage-card{
  display: grid;
  grid-template-columns: 1fr 440px;    /* text | image */
  gap: 28px;
  align-items: center;
  background: linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(18,36,54,0.07);
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(20,40,60,0.04);
}

/* LEFT: text */
.advantage-content { padding: 12px 6px; }

.best-cbse-heading{
  font-weight: 800;
  font-size: 36px;          /* you requested 36px */
  line-height: 1.03;
  color: var(--deep, #243b6a);
  margin: 4px 0 12px;
  text-align: left;
  letter-spacing: -0.02em;
}

/* Lead paragraph */
.website-text2{
  color: #556574;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 740px;
  font-weight: 300;
}

/* tags row */
.adv-tags { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px; }
.adv-tag {
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  background: rgba(36,59,106,0.06);
  color: var(--deep,#243b6a);
  border-radius: 999px;
  font-weight:600;
  font-size:13px;
  border: 1px solid rgba(36,59,106,0.06);
}

/* CTAs */
.adv-ctas { display:flex; gap:12px; flex-wrap:wrap; margin-top:6px; }
.adv-btn-primary{
  background: var(--accent-cta, #F3A81C);
  color: #082036;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight:700;
  text-decoration:none;
  box-shadow: 0 10px 24px rgba(243,168,28,0.14);
  display:inline-block;
}
.adv-btn-outline{
  background: transparent;
  color: var(--deep,#243b6a);
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(36,59,106,0.08);
  text-decoration:none;
  display:inline-block;
}

/* RIGHT: image panel */
.adv-image{
  width:100%;
  height: 320px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.00); /* keep image intact */
  min-width: 280px;
}

/* responsive: stack on small screens */
@media (max-width: 1100px){
  .advantage-card{ grid-template-columns: 1fr; padding: 22px; }
  .adv-image{ order: -1; height:220px; border-radius:12px; margin-bottom:12px; }
  .best-cbse-heading { text-align:center; font-size:32px; }
  .advantage-content { text-align:center; }
  .adv-tags { justify-content:center; }
  .adv-ctas { justify-content:center; }
  .website-text2 { margin-left:auto; margin-right:auto; max-width:600px; }
}

/* mobile tweaks */
@media (max-width: 520px){
  .best-cbse-heading { font-size:28px; }
  .website-text2 { font-size:15px; line-height:1.6; }
  .adv-image{ height:180px; }
  .adv-tag { font-size:13px; padding:7px 10px; }
  .adv-btn-primary, .adv-btn-outline { padding:10px 14px; font-size:14px; min-width:150px; }
}

/* --- Advantage section (full width) --- */
.advantage-section { 
  width: 100%;
  padding: 48px 0;
  margin: 0;
  background: #f6f8fb;
  overflow-x: hidden; /* IMPORTANT: no horizontal scroll */
}

/* Card now spans 100% width */
.advantage-card {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 48px;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: 1fr 450px; 
  gap: 40px;

  border-radius: 0px; /* remove rounded corners for full-width look */
  background: linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
  box-shadow: 0 18px 40px rgba(18,36,54,0.07);
  border-top: 1px solid rgba(20,40,60,0.04);
  border-bottom: 1px solid rgba(20,40,60,0.04);
}

/* LEFT content */
.advantage-content { 
  padding: 10px 0; 
}

.best-cbse-heading {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.1;
  color: var(--deep, #243b6a);
  margin-bottom: 16px;
}

.website-text2 {
  color: #556574;
  font-size: 16px;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 20px;
}

/* Tags */
.adv-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.adv-tag {
  padding: 8px 14px;
  background: rgba(36,59,106,0.06);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

/* CTAs */
.adv-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.adv-btn-primary{
  background: #F3A81C;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight:700;
  color: #082036;
  box-shadow: 0 10px 24px rgba(243,168,28,0.14);
}
.adv-btn-outline{
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid rgba(36,59,106,0.2);
  color: #243b6a;
}

/* RIGHT image */
.adv-image {
  height: 320px;
  width: 100%;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}

/* TABLET: shrink layout */
@media (max-width: 992px){
  .advantage-card {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 24px;
  }
  .adv-image {
    height: 220px;
  }
  .advantage-content { text-align: center; }
  .adv-tags, .adv-ctas { justify-content: center; }
}

/* MOBILE */
@media (max-width: 520px){
  .best-cbse-heading { font-size: 28px; }
  .website-text2 { font-size: 15px; }
  .adv-image { height: 180px; }
  .advantage-card { padding: 24px 16px; }
}


  :root{
    --max-w:1200px;
    --pad:20px;
    --navy:#1C325D;
    --accent:#F3A81C;
    --muted:#6F7A88;
    --card-bg:#fff;
    --radius-lg:14px;
    --shadow-lg: 0 24px 40px rgba(18,36,54,0.12);
    --shadow-soft: 0 10px 26px rgba(18,36,54,0.06);
    --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  }

  /* container */
  .wrap{ max-width: var(--max-w); margin:0 auto; padding: 40px var(--pad); box-sizing:border-box; font-family:var(--font-sans); }

  /* header */
  .ds-header{ text-align:center; margin-bottom:34px; }
  .ds-title{
    font-size:40px; /* desktop */
    line-height:1.02;
    font-weight:800;
    margin:0;
    color:var(--navy);
  }
  .ds-accent{ color:var(--accent); display:block; /* makes accent line break if needed */ }
  .ds-sub{
    margin:14px auto 0;
    color:var(--muted);
    font-size:15px;
    max-width:760px;
    font-weight:300;
  }

  /* features grid */
  .ds-features{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:22px;
    grid-template-columns: repeat(5, 1fr); /* desktop: 5 across */
    align-items:stretch;
  }

  /* card */
  .ds-feature{
    background:var(--card-bg);
    border-radius:12px;
    padding:26px 20px;
    border:1px solid rgba(18,36,54,0.06);
    box-shadow: var(--shadow-soft);
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:center;
    text-align:center;
    min-height:170px;
  }

  .ds-feature-icon{
    width:56px; height:56px; border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(243,168,28,0.12);
    margin-bottom:4px;
    flex-shrink:0;
  }

  .ds-feature-title{
    font-size:16px;
    color:var(--navy);
    font-weight:700;
    margin:0;
  }

  .ds-feature-desc{
    color:var(--muted);
    font-size:13px;
    margin:0;
    line-height:1.5;
    font-weight:300;
  }

  /* CTA box */
  .ds-cta-wrap{ display:flex; justify-content:center; margin-top:46px; }
  .ds-cta{
    width:100%;
    max-width:820px;
    background: linear-gradient(180deg, rgba(18,36,54,0.95) 0%, rgba(18,36,54,0.85) 50%, rgba(12,36,68,0.9) 100%);
    color:#fff;
    border-radius:18px;
    padding:36px 42px;
    box-shadow: var(--shadow-lg);
    text-align:center;
  }

  .ds-cta-title{
    font-size:26px;
    font-weight:800;
    margin:0 0 12px;
    line-height:1.2;
  }

  .ds-cta-lead{
    color: rgba(255,255,255,0.9);
    font-size:15px;
    margin: 0 0 20px;
    font-weight:300;
  }

  .ds-cta-btn{
    display:inline-block;
    background:var(--accent);
    color:#042034;
    padding:12px 22px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    box-shadow: 0 8px 18px rgba(243,168,28,0.16);
  }

  /* Responsive breakpoints */
  @media (max-width: 1100px){
    .ds-features{ grid-template-columns: repeat(3, 1fr); }
    .ds-title{ font-size:36px; }
  }

  @media (max-width: 760px){
    .wrap{ padding:28px 16px; }
    .ds-features{ grid-template-columns: repeat(2, 1fr); gap:18px; }
    .ds-title{ font-size:32px; }
    .ds-accent{ display:inline; } /* keep inline on smaller */
    .ds-cta{ padding:28px 20px; border-radius:14px; }
    .ds-cta-title{ font-size:20px; }
  }

  @media (max-width: 420px){
    .ds-features{ grid-template-columns: 1fr; }
    .ds-feature{ min-height: auto; padding:18px; text-align:left; align-items:flex-start; }
    .ds-feature-icon{ margin-bottom:8px; }
    .ds-title{ font-size:28px; }
    .ds-sub{ font-size:14px; }
    .ds-cta{ padding:22px 16px; border-radius:12px; }
    .ds-cta-title{ font-size:18px; }
    .ds-cta-lead{ font-size:14px; }
    .ds-cta-btn{ width:100%; display:block; }
  }

  /* Accessibility / small niceties */
  .ds-feature:focus-within,
  .ds-feature:hover{ transform: translateY(-4px); transition: transform .18s ease; box-shadow: 0 14px 30px rgba(18,36,54,0.08); }
  .ds-cta-btn:focus{ outline: 3px solid rgba(243,168,28,0.18); outline-offset:2px; }

  [class^="flaticon-"]:hover,
[class*=" flaticon-"]:hover {
    color: #ffb400;
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
}

[class^="flaticon-"],
[class*=" flaticon-"] {
    font-size: 35px;      /* Icon size */
    color: #000000;       /* Icon color */
    padding: 10px;        /* Space around each icon */
    display: inline-block;
}

.icon-white-lg {
    color: #ffffff;
    font-size: 25px; /* change size */
    padding-top: 20px;
}

/* Optional hover override */
.icon-white-lg:hover {
    color: #ffb400;
}

.icon-white-lg2 {
    color: #ffffff;
    font-size: 25px; /* change size */
    padding-top: 0px;
}

/* Optional hover override */
.icon-white-lg:hover {
    color: #ffb400;
}

@media (min-width: 768px) {
  .hero-lead,
  .hero-tags {
    display: block;
  }
}
@media (max-width: 767px) {
  .hero-lead,
  .hero-tags {
    display: none !important;
  }
}


/* =====================================
   TRUE CENTER FIX â€“ MOBILE HERO
   ===================================== */
@media (max-width: 767px) {

  /* Remove Bootstrap container padding */
  .hero-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }

  /* Center hero-right column */
  .hero-right {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  /* Override inline width wrapper */
  .hero-right .slide-left {
    max-width: 340px !important;
    margin: 0 auto !important;
  }

  /* Enquiry card â€“ TRUE CENTER */
  .enquiry-card {
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 340px !important;
  }
}

/* ===============================
   LOGO BASE STYLES
   =============================== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Both logos */
.logo img {
  height: 100px;                 /* Desktop size */
  width: auto;
  display: block;
  transition: 
    opacity 0.3s ease,
    transform 0.3s ease,
    height 0.3s ease;
}

/* Default state (hero) */
.logo-light {
  opacity: 1;
}
.logo-dark {
  opacity: 0;
  position: absolute;
}



.loc-map {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.loc-content {
  text-align: center;
}

.loc-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #E62B1E;
  text-decoration: none;
}

.loc-link:hover {
  text-decoration: underline;
}

html {
  scroll-behavior: smooth;
}

/* =========================
     Theme tokens (single source)
     ========================= */

     /* ===============================
   NAVBAR BASE
   =============================== */

 
  :root{
    --max-w:1200px;
    --page-pad:22px;
    --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;

    --navy: #1C325D;
    --deep: #243b6a;
    --green: #0EA463;
    --accent-cta: #F3A81C;
    --muted: #6F7A88;
    --card-bg: #ffffff;

    --radius-lg: 14px;
    --radius-md: 12px;
    --shadow-1: 0 6px 18px rgba(27,36,48,0.03);
    --shadow-2: 0 10px 20px rgba(21,31,39,0.06);
    --shadow-lg: 0 20px 40px rgba(18,36,54,0.18);
  }

  

 

  /* =========================
     Base / reset
     ========================= */
  *{ box-sizing:border-box; }
  body{ margin:0; font-family:var(--font-sans); -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; color:var(--deep); }
  a{ color:inherit; text-decoration:none; }

  .container, .wrap{ max-width:var(--max-w); margin:0 auto; padding:0 var(--page-pad); }
 

  /* =========================
     HERO (full area)
     ========================= */
  .hero-section{ position:relative; min-height:1080px; overflow:hidden; display:block; background:#0b243e; }
  .hero-bg{ position:absolute; inset:0; background-image:url('assets2/images/background/flagship2.png'); background-size:cover; background-position:center; z-index:1; }
  .hero-gradient{
    position:absolute; inset:0; z-index:2;
    background: linear-gradient(90deg,
      rgba(18,36,54,0.92) 0%,
      rgba(18,36,54,0.80) 28%,
      rgba(18,36,54,0.50) 48%,
      rgba(18,36,54,0.20) 68%,
      rgba(18,36,54,0.00) 100%);
    pointer-events:none;
  }

  .hero-inner{ position:relative; z-index:3; min-height:1080px; display:flex; align-items:center; padding:72px var(--page-pad); }

  /* Left text column */
  .hero-left { color:#fff; max-width:920px; }
  .hero-badge{
    display:inline-block;
    background: rgba(243,168,28,0.12);
    color:var(--accent-cta);
    border-radius:999px;
    padding:8px 16px;
    border:1px solid rgba(243,168,28,0.18);
    font-weight:600;
    margin-bottom:18px;
  }

  .hero-title{ color:#fff; font-size:56px; line-height:1.02; margin:8px 0 12px; font-weight:700; text-shadow:0 8px 30px rgba(6,12,24,0.35); }
  .hero-accent{ color:var(--accent-cta); display:block; font-weight:800; font-size:56px; }

  .hero-lead{ color:rgba(255,255,255,0.92); font-size:16px; font-weight:300; line-height:1.7; margin-bottom:22px; max-width:760px; }

  .hero-tags{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:22px; }
  .tag{
    display:inline-flex; align-items:center; gap:8px;
    background: rgba(255,255,255,0.06);
    padding:10px 14px; border-radius:12px;
    color: rgba(255,255,255,0.95); font-weight:600; font-size:14px;
    border: 1px solid rgba(255,255,255,0.04);
  }

  .hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-top:8px; }
  .hero-btn-primary{ background:var(--accent-cta); border:2px solid var(--accent-cta); color:#082036; font-weight:700; padding:12px 22px; border-radius:10px; box-shadow:0 8px 18px rgba(243,168,28,0.18); }
  .hero-btn-outline{ background:transparent; color:#fff; border:2px solid rgba(255,255,255,0.18); padding:12px 22px; border-radius:10px; }

  /* Right column (form) - floating on desktop */
  .hero-right { display:flex; justify-content:center; align-items:center; }
  .enquiry-card{
    width:100%; max-width:420px; background:var(--card-bg); border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow-lg); color:var(--navy); transform:translateX(0);
  }
  @media(min-width:1100px){
    .enquiry-card{ transform: translateX(-6%); } /* slight overlap */
  }

  .enquiry-card h3{ font-size:20px; font-weight:700; margin-bottom:12px; color:var(--deep); }
  .enquiry-card .form-control{ height:48px; border-radius:10px; margin-bottom:12px; border:1px solid rgba(8,16,24,0.06); font-size:14px; }
  .enquiry-card select.form-control{ height:48px; }
  .privacy-note{ font-size:12px; color:var(--muted); margin-bottom:10px; display:block; line-height:1.35; }
  .enq-foot{ text-align:center; margin-top:8px; font-size:13px; color:var(--muted); }

  .enquiry-card .btn-primary{ background:var(--deep); border-color:var(--deep); color:#fff; font-weight:700; border-radius:10px; padding:10px 14px; }
  .enquiry-card .btn-outline-secondary{ background:#fff; border:1px solid rgba(8,16,24,0.08); color:var(--deep); border-radius:10px; padding:10px 14px; }

  /* AOS-like helper classes */
  .fade-up{ opacity:0; transform:translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.9,.3,1); }
  .slide-left{ opacity:0; transform:translateX(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.9,.3,1); }
  .in-view{ opacity:1; transform:none; }

  /* Responsive: stack and full-width form on smaller screens */
  @media(max-width: 992px){
    .hero-inner{ padding:48px var(--page-pad); flex-direction:column; gap:28px; align-items:flex-start; }
    .hero-title{ font-size:36px; }
    .hero-accent{ font-size:36px; }
    .hero-right{ width:100%; }
    .enquiry-card{
      transform:none !important;
      width:100% !important;
      max-width:760px !important;
      margin:18px auto 0 !important;
      box-shadow: 0 12px 30px rgba(12,30,60,0.12);
      padding:20px !important;
      border-radius:12px !important;
    }
    .enquiry-card .form-control, .enquiry-card select.form-control{ height:52px; font-size:15px; }
    .enquiry-card .d-grid .btn{ width:100%; padding:12px 14px; font-size:15px; }
 
  }

  /* Small phones: edge-to-edge card with gutters */
  @media(max-width:576px){
    .hero-inner{ padding-left:16px; padding-right:16px; }
    .hero-title{ font-size:28px; }
    .hero-accent{ font-size:30px; }
    .hero-lead{ font-size:15px; }
    .enquiry-card{ width: calc(100vw - 32px) !important; max-width:none !important; margin:18px auto 0 !important; padding:16px !important; border-radius:12px !important; transform:none !important; }
    .enquiry-card h3{ font-size:18px; }
    .enquiry-card .form-control, .enquiry-card select.form-control{ height:48px; font-size:14px; }
  }

  /* small niceties */
  .text-white-75{ color: rgba(255,255,255,0.85); } 

    
/* ===============================
   HERO
   =============================== */
.hero-section {
  height: 100vh;
  position: relative;
  background: #0b243e;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/assets2/images/background/flagship2.png") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.2) 60%,
    rgba(0,0,0,0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px; /* navbar height */
  color: #fff;
} 
 

 /* ==================================================
   NAVBAR – REAL BACKGROUND LAYER FIX
   ================================================== */

#siteNavbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent !important;
}

/* ACTUAL BACKGROUND LAYER */
#siteNavbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -1;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* SCROLLED STATE */
#siteNavbar.scrolled::before {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* ==================================================
   LOGO SWITCH
   ================================================== */

#siteNavbar .logo-light { display: block; }
#siteNavbar .logo-dark  { display: none; }

#siteNavbar.scrolled .logo-light { display: none; }
#siteNavbar.scrolled .logo-dark  { display: block; }

/* ==================================================
   NAV LINKS
   ================================================== */

#siteNavbar .nav-link {
  color: #ffffff !important;
  font-weight: 600;
}

#siteNavbar.scrolled .nav-link {
  color: #0f172a !important;
}

/* ==================================================
   CTA BUTTON
   ================================================== */

#siteNavbar .btn-primary {
  background: #fbbf24;
  border-radius: 999px;
  color: #111827;
  font-weight: 600;
}

#siteNavbar.scrolled .btn-primary {
  color: #111827;
}
