:root {
  --navy: #0a2353;
  --navy-dark: #071c40;
  --gold: #b8962e;
  --gold-light: #d4ad50;
  --red: #c0272d;
  --light-bg: #f5f4f0;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  background: var(--light-bg);
  color: var(--text-dark);
}

/* ─── NAVBAR ─── */
.navbar {
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  z-index: 1000;
}
.brand-logo { width: 56px; height: 56px; object-fit: contain; }
.brand-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--navy);
  line-height: 1.1;
}
.brand-sub { font-size: 14px; color: #555; font-weight: 500; }
.nav-link {
  font-weight: 500;
  font-size: 14px;
  color: #1e2a45;
  padding: 8px 14px !important;
  letter-spacing: .3px;
  transition: color .25s;
}
.nav-link:hover { color: var(--gold); }
.enroll-btn {
  background: var(--gold);
  color: #fff !important;
  padding: 11px 28px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: background .25s, transform .2s;
  white-space: nowrap;
}
.enroll-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  padding: 120px 0 80px;
  position: relative;
  background: #f7f6f1;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('building.png') center center no-repeat;
  background-size: contain;
  opacity: .10;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }

/* Hero text */
.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-label::before, .hero-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 50px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--navy);
}
.hero h1 .gold { color: var(--red); display: block; }
.hero-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  color: #4b5563;
  margin: 26px 0 36px;
  max-width: 480px;
}
.cta-wrap { display: flex; gap: 16px; flex-wrap: wrap; }

.primary-btn {
  background: var(--navy);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .25s, transform .2s;
}
.primary-btn:hover { background: var(--navy-dark); color: #fff; transform: translateY(-2px); }

.footer-enroll {
  background: var(--gold);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .25s;
}
.footer-enroll:hover { background: var(--gold-light); color: #fff; }

/* ═══════════════════════════════════════════════
   UNIVERSITY SECTION — REDESIGNED FOR VISIBILITY
   ═══════════════════════════════════════════════ */

.university-section {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  position: relative;
}

/* ─── AND Connector ─── */
.and-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: relative;
  margin: 0 -16px;
  flex-shrink: 0;
}
.and-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 8px 28px rgba(184,150,46,.45);
  border: 4px solid #fff;
  position: relative;
  z-index: 2;
}

/* ─── Dome Wrap ─── */
.dome-wrap {
  position: relative;
  text-align: center;
  flex: 1;
  max-width: 340px;
  min-width: 260px;
}

/* ─── Dome Card — HERO SIZE ─── */
.dome-card {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 160px 160px 28px 28px;
  padding: 48px 36px 44px;
  position: relative;
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
  cursor: default;
}

/* AKU Card — Navy theme */
.dome-wrap:first-child .dome-card {
  background: linear-gradient(165deg, #0d2d6b 0%, #0d2d6b 60%, #0d2d6b 100%);
  box-shadow:
    0 30px 70px rgba(10,35,83,.38),
    0 0 0 1px rgba(255,255,255,.06),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* PPU Card — Deep Red theme */
.dome-wrap:last-child .dome-card {
  background: linear-gradient(165deg, #d42d34 0%, #c0272d 55%, #8e1a1f 100%);
  box-shadow:
    0 30px 70px rgba(192,39,45,.38),
    0 0 0 1px rgba(255,255,255,.06),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.dome-card:hover { transform: translateY(-8px); }
.dome-wrap:first-child .dome-card:hover {
  box-shadow: 0 40px 80px rgba(10,35,83,.5), 0 0 0 1px rgba(255,255,255,.1);
}
.dome-wrap:last-child .dome-card:hover {
  box-shadow: 0 40px 80px rgba(192,39,45,.5), 0 0 0 1px rgba(255,255,255,.1);
}

/* Glass shine on top */
.dome-card::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 48%;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.13) 0%, transparent 100%);
  pointer-events: none;
}

/* Subtle pattern overlay */
.dome-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.08) 0%, transparent 65%);
  pointer-events: none;
}

/* ─── Ribbon ─── */
.uni-ribbon {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  margin-bottom: 4px;
}

/* ─── Badge (Logo Circle) ─── */
.uni-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.badge-navy {
  background: #fff;
  box-shadow: 0 12px 36px rgba(0,0,0,.22), 0 0 0 5px rgba(255,255,255,.15);
}
.badge-red {
  background: #fff;
  box-shadow: 0 12px 36px rgba(0,0,0,.22), 0 0 0 5px rgba(255,255,255,.15);
}
.uni-badge img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

/* ─── University Title ─── */
.uni-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  min-height: 0;
}
.red-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}

/* ─── Divider ─── */
.dome-divider {
  height: 1px;
  width: 70%;
  background: rgba(255,255,255,.2);
  margin: 4px auto;
}

/* ─── Visit Button ─── */
.visit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 32px;
  background: rgba(255,255,255,.15);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  transition: all .3s;
  letter-spacing: .3px;
}
.visit-btn:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.dome-wrap:first-child .visit-btn:hover { color: var(--navy); }
.dome-wrap:last-child .visit-btn:hover { color: var(--red); }
.visit-btn i { font-size: 12px; }

/* ─── Dome Base ─── */
.dome-base {
  width: 75%;
  height: 20px;
  border-radius: 0 0 24px 24px;
  margin: 0 auto;
  box-shadow: 0 8px 22px rgba(0,0,0,.15);
}
.dome-wrap:first-child .dome-base {
  background: linear-gradient(90deg, #071c40, #0d2d6b, #071c40);
}
.dome-wrap:last-child .dome-base {
  background: linear-gradient(90deg, #8e1a1f, #d42d34, #8e1a1f);
}

/* ─── FEATURE STRIP ─── */
.feature-strip {
  margin-top: 60px;
  background: #fff;
  border-radius: 20px;
  padding: 8px 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 18px;
  border-right: 1px solid #f0ece4;
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fdf6e8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon i { font-size: 22px; color: var(--gold); }
.feature-text h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.feature-text p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ─── STATS ─── */
.stats-bar {
  margin-top: 22px;
  background: var(--navy);
  border-radius: 20px;
  padding: 6px 10px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon i { font-size: 20px; color: var(--gold); }
.stat-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}
.stat-text p { font-size: 13px; color: rgba(255,255,255,.65); }

/* ─── FLOATING BUTTONS ─── */
.floating-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
}
.float-btn {
  position: relative;
  right: -120px;
  width: 170px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: .35s ease;
}
.float-btn:hover { right: 0; color: #fff; }
.float-btn:first-child { border-radius: 12px 0 0 0; }
.float-btn:last-child { border-radius: 0 0 0 12px; }
.float-btn.call-btn { background: var(--navy); }
.float-btn.wa-btn { background: #25d366; }
.float-btn.mail-btn { background: var(--red); }
.float-btn i { width: 24px; text-align: center; font-size: 18px; flex-shrink: 0; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-dark);
  color: #fff;
  padding: 50px 0 28px;
  /* margin-top: 80px; */
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}
footer p, footer li, footer a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
}
footer a { text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--gold); }
footer h5 { font-size: 16px; font-weight: 700; margin-bottom: 18px; color: #fff; }
footer ul { list-style: none; padding: 0; }
footer li { margin-bottom: 8px; }
.footer-divider {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* ─── MODAL ─── */
.custom-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.custom-modal-content {
  background: #fff;
  width: 100%;
  max-width: 820px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  animation: zoomIn .4s ease;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}
@keyframes zoomIn {
  from { transform: scale(.88); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.custom-close{
  position:absolute;
  right:15px;
  top:8px;
  font-size:30px;
  cursor:pointer;
  z-index:5;
  font-weight:700;
}
.modal-wrapper { display: flex; flex-wrap: wrap; }
.modal-left { flex: 1; min-width: 300px; }
.modal-left img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-right { flex: 1; padding: 28px 28px; background: #fff; }
.modal-right form input,
.modal-right form select {
  width: 100%;
  margin-bottom: 10px;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
}
.modal-right button {
  width: 100%;
  background: #0a2353;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 40px;
  font-weight: 600;
  font-size:15px;
}
.approval-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.approval-badge span {
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 25px;
  font-size: 12px;
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */

/* Large screens */
@media (max-width: 1199px) {
  .dome-wrap { max-width: 300px; }
  .dome-card { min-height: 370px; padding: 40px 28px 38px; }
}

/* Tablet landscape */
@media (max-width: 991px) {
  .hero { padding: 110px 0 60px; }
  .university-section { margin-top: 50px; }

  .feature-item { border-right: none; border-bottom: 1px solid #f0ece4; padding: 18px 14px; }
  .feature-item:last-child { border-bottom: none; }

  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding: 18px 16px; }
  .stat-item:last-child { border-bottom: none; }

  .floating-btns { top: auto; bottom: 60px; transform: none; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px 16px; border-radius: 0; right: 0; width: auto; }
  .float-btn:first-child { border-radius: 12px 0 0 0; }
  .float-btn:last-child { border-radius: 0 0 0 12px; }
}

/* Tablet portrait */
@media (max-width: 767px) {
  .hero h1 { font-size: clamp(30px, 8vw, 48px); }
  .hero-desc { font-size: 14px; }
  .primary-btn, .footer-enroll { width: 100%; justify-content: center; }
  .cta-wrap { flex-direction: column; }
  .brand-title { font-size: 20px; }
  .brand-sub { font-size: 12px; }

  /* Cards SIDE BY SIDE on mobile — row layout maintain */
  .university-section {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
  }
  .dome-wrap {
    flex: 1;
    min-width: 0;
    max-width: none;
  }
  .dome-card {
    min-height: 300px;
    border-radius: 100px 100px 16px 16px;
    padding: 28px 12px 28px;
  }
  .uni-badge { width: 80px; height: 80px; }
  .uni-badge img { width: 64px; height: 64px; }
  .uni-title, .red-title { font-size: 14px; }
  .uni-ribbon { font-size: 9px; padding: 4px 10px; letter-spacing: 1px; }
  .visit-btn { padding: 9px 14px; font-size: 11px; gap: 5px; }
  .dome-base { height: 14px; width: 80%; }
  .and-connector { margin: 0 -12px; }
  .and-circle { width: 48px; height: 48px; font-size: 20px; border-width: 3px; }

  /* Footer contact fix */
  footer .col-6 { width: 100% !important; flex: 0 0 100%; max-width: 100%; }
  footer .row > div { margin-bottom: 8px; }
}

/* Mobile */
@media (max-width: 576px) {
  .hero { padding: 95px 0 40px; }
  .enroll-btn { padding: 10px 20px !important; font-size: 13px; }

  /* Cards still side by side, more compact */
  .dome-card {
    min-height: 260px;
    border-radius: 80px 80px 14px 14px;
    padding: 22px 8px 22px;
  }
  .uni-badge { width: 64px; height: 64px; }
  .uni-badge img { width: 52px; height: 52px; }
  .uni-title, .red-title { font-size: 12px; line-height: 1.2; }
  .uni-ribbon { font-size: 8px; padding: 3px 8px; letter-spacing: .8px; }
  .visit-btn { padding: 8px 10px; font-size: 10px; gap: 4px; }
  .visit-btn i { display: none; }
  .dome-divider { display: none; }
  .dome-base { height: 12px; }
  .and-circle { width: 40px; height: 40px; font-size: 16px; border-width: 2px; }
  .and-connector { margin: 0 -10px; }

  .stat-text h3 { font-size: 22px; }
  .modal-left { display: none; }
  .modal-right { padding: 30px 20px; }

  /* Footer full-width columns */
  footer .col-6 { width: 100% !important; flex: 0 0 100%; max-width: 100%; }
  footer .col-lg-2, footer .col-lg-3 { width: 100% !important; flex: 0 0 100%; max-width: 100%; }
}

/* Very small phones */
@media (max-width: 380px) {
  .dome-card { padding: 18px 6px 18px; min-height: 230px; }
  .uni-title, .red-title { font-size: 11px; }
  .uni-badge { width: 54px; height: 54px; }
  .uni-badge img { width: 44px; height: 44px; }
  .uni-ribbon { display: none; }
}

/* Why MGM Page CSS Here  */
/* =========================
BREADCRUMB HERO
========================= */

.inner-hero{
padding:145px 0 70px;
background:
linear-gradient(rgba(10,35,83,.60),rgba(10,35,83,.60)),
url('images/why-mgm-banner.jpg') center/cover no-repeat;
color:#fff;
position:relative;
}

.inner-hero .container{
position:relative;
z-index:2;
}

.breadcrumb-wrap{
display:flex;
align-items:center;
gap:8px;
margin-bottom:20px;
font-size:13px;
}

.breadcrumb-wrap a{
color:#d4aa44;
text-decoration:none;
font-weight:500;
}

.breadcrumb-wrap a:hover{
color:#fff;
}

.breadcrumb-wrap span{
color:rgba(255,255,255,.75);
}

.inner-hero h1{
font-family:'Playfair Display',serif;
font-size:clamp(34px,5vw,56px);
font-weight:800;
line-height:1.2;
margin-bottom:18px;
color:#fff;
}

.inner-hero p{
max-width:540px;
line-height:1.8;
color:rgba(255,255,255,.88);
margin:0;
}


/* =========================
WHY MGM SECTION
========================= */

.why-mgm-page{
padding:90px 0;
background:#fff;
}

.why-label{
display:inline-block;
background:#f8f4e7;
color:#b8962e;
padding:8px 18px;
border-radius:30px;
font-size:12px;
font-weight:700;
letter-spacing:2px;
margin-bottom:20px;
}

.why-mgm-page h2{
font-family:'Playfair Display',serif;
font-size:clamp(30px,4vw,48px);
line-height:1.25;
font-weight:800;
color:#0a2353;
margin-bottom:18px;
}

.why-mgm-page h2 span{
color:#b8962e;
}

.why-mgm-page p{
line-height:1.8;
color:#5f6978;
}

.why-points{
display:flex;
flex-direction:column;
gap:14px;
margin:30px 0;
}

.point-item{
display:flex;
gap:12px;
align-items:flex-start;
font-weight:500;
color:#0a2353;
}

.point-item i{
color:#b8962e;
margin-top:4px;
}

.why-main-btn{
display:inline-block;
background:#0a2353;
color:#fff;
padding:14px 30px;
border-radius:40px;
text-decoration:none;
font-weight:600;
}

.why-main-btn:hover{
background:#173b80;
color:#fff;
}



/* =========================
FEATURE STATS BOX
========================= */

.why-feature-box{
background:linear-gradient(135deg,#0a2353,#173b80);
padding:42px;
border-radius:30px;
box-shadow:0 18px 50px rgba(10,35,83,.16);
}

.feature-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:20px;
}

.feature-row:last-child{
margin-bottom:0;
}

.feature-block{
background:rgba(255,255,255,.08);
padding:32px;
border-radius:22px;
text-align:center;
}

.feature-block h3{
font-size:48px;
font-family:'Playfair Display',serif;
color:#d4aa44;
margin-bottom:8px;
}

.feature-block p{
color:#fff;
margin:0;
}



/* =========================
WHAT MAKES MGM DIFFERENT
========================= */

.why-panel{
background:#f8f4ed;
padding:60px 50px;
border-radius:34px;
margin-top:70px;
}

.why-left-panel h3{
font-size:40px;
font-weight:800;
color:#0a2353;
margin-bottom:20px;
}

.why-left-panel p{
margin-bottom:22px;
}

.why-left-panel ul{
list-style:none;
padding:0;
margin:0;
}

.why-left-panel li{
margin-bottom:12px;
padding-left:24px;
position:relative;
}

.why-left-panel li:before{
content:'✦';
position:absolute;
left:0;
color:#b8962e;
}


.why-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:22px;
}

.why-box{
background:#fff;
padding:32px;
border-radius:24px;
box-shadow:0 8px 30px rgba(0,0,0,.05);
height:100%;
transition:.3s;
}

.why-box:hover{
transform:translateY(-6px);
}

.why-box i{
font-size:30px;
color:#b8962e;
margin-bottom:16px;
}

.why-box h4{
color:#0a2353;
margin-bottom:10px;
font-weight:700;
}

.why-box p{
margin:0;
}



/* =========================
CTA BAND
========================= */

.why-cta-band{
background:linear-gradient(135deg,#0a2353,#173b80);
padding:45px 50px;
border-radius:30px;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
margin-top:60px;
}

.why-cta-band h3{
color:#fff;
margin:0 0 8px;
font-size:34px;
font-weight:800;
}

.why-cta-band p{
color:rgba(255,255,255,.85);
margin:0;
}

.why-cta-btn{
background:#b8962e;
padding:14px 30px;
border-radius:40px;
display:inline-block;
text-decoration:none;
color:#fff;
font-weight:600;
}



/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

.why-feature-box{
padding:34px;
}

.why-panel{
padding:45px 35px;
}

.why-grid{
gap:18px;
}

}


@media(max-width:767px){

.inner-hero{
padding:110px 0 55px;
}

.why-mgm-page{
padding:60px 0;
}

.feature-row,
.why-grid{
grid-template-columns:1fr;
}

.why-feature-box{
padding:28px 22px;
}

.why-panel{
padding:35px 25px;
}

.why-left-panel h3{
font-size:30px;
}

.why-box{
padding:24px;
}

.why-cta-band{
padding:32px 24px;
text-align:center;
justify-content:center;
}

.why-cta-band h3{
font-size:28px;
}

}


@media(max-width:480px){

.why-mgm-page{
padding:50px 0;
}

.why-panel{
padding:28px 18px;
}

.why-cta-band{
padding:26px 18px;
border-radius:22px;
}

}

/* About Page Css here  */
.about-image-wrap{
position:relative;
padding-left:40px;
}

.about-main-img{
width:100%;
border-radius:34px;
box-shadow:0 20px 60px rgba(0,0,0,.12);
display:block;
}

.about-badge{
position:absolute;
background:#fff;
padding:18px 28px;
border-radius:20px;
box-shadow:0 12px 35px rgba(0,0,0,.08);
text-align:center;
}

.about-badge h4{
margin:0;
font-size:34px;
color:#0a2353;
font-weight:800;
}

.about-badge span{
font-size:14px;
color:#666;
}

.badge-one{
left:0;
bottom:50px;
}

.badge-two{
right:-15px;
top:50px;
background:linear-gradient(135deg,#0a2353,#173b80);
}

.badge-two h4,
.badge-two span{
color:#fff;
}

@media(max-width:767px){

.about-image-wrap{
padding-left:0;
margin-top:20px;
}

.badge-one{
left:10px;
bottom:20px;
}

.badge-two{
right:10px;
top:20px;
}

.about-badge{
padding:12px 18px;
}

.about-badge h4{
font-size:24px;
}

}

/* Contact page css here  */
.contact-box{
display:flex;
gap:18px;
align-items:flex-start;
margin-bottom:28px;
}

.contact-box i{
width:60px;
height:60px;
border-radius:50%;
background:#f8f4e7;
display:flex;
align-items:center;
justify-content:center;
color:#b8962e;
font-size:22px;
flex-shrink:0;
}

.contact-box h5{
margin-bottom:8px;
color:#0a2353;
}

.contact-form-box{
background:#fff;
padding:45px;
border-radius:30px;
box-shadow:0 12px 45px rgba(0,0,0,.06);
}

.contact-form-box h3{
margin-bottom:30px;
color:#0a2353;
}

.contact-form-box input,
.contact-form-box textarea{
width:100%;
border:1px solid #0a2353;
padding:14px 18px;
border-radius:14px;
outline:none;
}

.contact-form-box button{
background:#0a2353;
color:#fff;
border:none;
padding:14px 28px;
border-radius:40px;
font-weight:600;
}

@media(max-width:767px){

.contact-form-box{
padding:28px 22px;
}

.contact-box{
gap:14px;
}

.contact-box i{
width:50px;
height:50px;
font-size:18px;
}

}