/* ============================================
   AR GENIE TALENT SERVICES — REDESIGNED NAVBAR
   ============================================ */

:root {
  --royal-blue: #0f4c81;
  --white: #ffffff;
  --red-accent: #e31837;
  --light-grey: #f5f7fa;
  --text-dark: #1a1a1a;
  --text-grey: #555555;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 8px;
  --max-width: 1200px;
  --font: 'Poppins', 'Inter', 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--red-accent);
  color: var(--white);
}
.btn-primary:hover { background: #c11230; transform: translateY(-2px); }
.btn-secondary {
  background: var(--royal-blue);
  color: var(--white);
}
.btn-secondary:hover { background: #0a3a63; }
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebe57; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--royal-blue);
  color: var(--royal-blue);
}
.btn-outline:hover { background: var(--royal-blue); color: var(--white); }

/* Section spacing */
.section { padding: 80px 0; }
.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--royal-blue);
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-grey);
  margin-bottom: 48px;
  font-size: 1.1rem;
}
.bg-light { background: var(--light-grey); }











/* ============================================
   HEADER / NAVBAR — REDESIGNED
   ============================================ */

.header-inner{
  height:72px;
  max-width:1400px;
}

/* Logo */
.logo-img{
  width:44px;
  height:44px;
  object-fit:contain;
}

.logo-text{
  display:flex;
  flex-direction:column;
  line-height:1;
}

.main-logo{
  color:var(--royal-blue);
  font-size:1rem;
}

.sub-logo{
  color:var(--red-accent);
  font-size:0.85rem;
  margin-top:3px;
}

/* Desktop Nav */
.nav-box{
  backdrop-filter:blur(10px);
}

.nav-box .nav-link{
  transition:0.3s ease;
}

.nav-box .nav-link:hover{
  background:var(--royal-blue);
  color:#fff !important;
}

/* Active state — same as hover, but permanent */
.nav-box .nav-link.active {
  background: var(--royal-blue);
  color: #fff !important;
}

.mobile-link.active {
  background: var(--royal-blue);
  color: #fff;
}

/* Icon Buttons */
.icon-btn{
  width:42px;
  height:42px;
  transition:0.3s ease;
  font-size:1rem;
}

/* Phone */
.phone{
  background:#f5f5f5;
  color:var(--royal-blue);
}

.phone:hover{
  background:var(--royal-blue);
  color:#fff;
}

/* WhatsApp */
.whatsapp{
  background:#25d366;
  color:#fff;
}

.whatsapp:hover{
  background:#1ebe57;
  transform:translateY(-2px);
  color:#fff;
}

/* Mobile Toggle */
.mobile-toggle{
  font-size:2rem;
  color:#222;
  line-height:1;
}

/* Mobile Menu */
.mobile-menu-wrap{
  animation:fadeDown 0.3s ease;
}

.mobile-link{
  padding:12px 14px;
  border-radius:10px;
  text-decoration:none;
  color:#222;
  font-weight:500;
  transition:0.3s ease;
}

.mobile-link:hover{
  background:var(--royal-blue);
  color:#fff;
}

/* Mobile Buttons */
.mobile-btn{
  flex:1;
  height:46px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.phone-btn{
  background:#f5f5f5;
  color:var(--royal-blue);
  border:1px solid #ddd;
}

.phone-btn:hover{
  background:var(--royal-blue);
  color:#fff;
}

.whatsapp-btn{
  background:#25d366;
  color:#fff;
}

.whatsapp-btn:hover{
  background:#1ebe57;
  color:#fff;
}

/* Animation */
@keyframes fadeDown{
  from{
    opacity:0;
    transform:translateY(-10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Responsive */
@media(max-width:991px){

  .header-inner{
    height:68px;
  }

  .logo-img{
    width:40px;
    height:40px;
  }

  .main-logo{
    font-size:0.95rem;
  }

  .sub-logo{
    font-size:0.20rem;
  }

}
/* Mobile Dropdown Overlay */
#mobileMenu{
  position:absolute;
  top:65px;
  left:0;
  width:100%;
  background:#fff;
  z-index:999;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}




/* ============================================
   HERO SECTION — REDESIGNED v2
   ============================================ */

/* ============================================
   HERO — FULL WIDTH / BIGGER IMAGE / NO COLLISION
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--royal-blue) 0%, #0a3a63 50%, #1a5fa3 100%);
  color: var(--white);
  position: relative;
  overflow: visible;
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255,215,0,0.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,0.03) 0%, transparent 40%);
  z-index: 1;
}

/* =========================
   HERO CONTAINER
========================= */
.hero .container-fluid {
  width: 100%;
  max-width: 100%;
  padding: 90px 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

/* =========================
   HERO CONTENT
========================= */
.hero-content {
  max-width: 620px;
  padding-left: 30px;
  padding-right: 30px;
  justify-self: start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.15);
}

.hero-eyebrow i {
  color: #ffd700;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.18;
  margin-bottom: 18px;
  font-weight: 700;
}

.hero h1 .highlight {
  color: #ffd700;
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255,215,0,0.2);
  border-radius: 3px;
  z-index: -1;
}

.hero-desc {
  font-size: 1.08rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.7;
  max-width: 520px;
}

/* =========================
   BUTTONS
========================= */
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-buttons .btn {
  padding: 14px 28px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-buttons .btn i {
  font-size: 1rem;
}

/* =========================
   TRUST ITEMS
========================= */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 500;
}

.trust-item i {
  color: #ffd700;
  font-size: 0.9rem;
}

/* =========================
   HERO IMAGE
========================= */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
}

/* =========================
   BACKGROUND RECTANGLES
========================= */
.bg-rect {
  position: absolute;
  border-radius: 28px;
  z-index: 0;
  pointer-events: none;
}

.bg-rect.outer {
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.bg-rect.inner {
  top: -25px;
  left: -25px;
  right: -25px;
  bottom: -25px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

.hero-image-frame img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.35);
  position: relative;
  z-index: 2;
  object-fit: cover;
  display: block;
}

/* =========================
   FLOATING ICONS
========================= */
.float-icon {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  animation: float-bob 5s ease-in-out infinite;
}

.float-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.25),
    0 0 0 4px rgba(255,255,255,0.15);
}

.float-label {
  background: var(--white);
  color: var(--royal-blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.float-blue .float-circle {
  background: var(--royal-blue);
  color: var(--white);
}

.float-red .float-circle {
  background: var(--red-accent);
  color: var(--white);
}

.float-gold .float-circle {
  background: #ffd700;
  color: var(--royal-blue);
}

.float-white .float-circle {
  background: var(--white);
  color: var(--royal-blue);
}

/* =========================
   DESKTOP FLOAT POSITIONS
========================= */
.float-1 {
  top: -35px;
  left: -10px;
  animation-delay: 0s;
}

.float-2 {
  top: 1%;
  right: -35px;
  animation-delay: 1s;
}

.float-3 {
  top: 38%;
  left: -45px;
  animation-delay: 0.5s;
}

.float-4 {
  bottom: 18%;
  right: -35px;
  animation-delay: 1.5s;
}

.float-5 {
  bottom: -25px;
  left: 15%;
  animation-delay: 2s;
}

.float-6 {
  top: 25%;
  right: -5px;
  animation-delay: 0.8s;
}

@keyframes float-bob {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ==========================================
   TABLET & MOBILE
========================================== */
@media (max-width: 900px) {

  .hero .container-fluid {
    grid-template-columns: 1fr;
    padding: 40px 0 70px;
    gap: 20px;
  }

  .hero-content {
    padding: 0 20px;
    justify-self: start;
    text-align: start;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 28px;
  }

  .hero-buttons {
    justify-content: start;
  }

  .hero-trust {
    justify-content: start;
    gap: 14px;
  }

  .trust-item {
    font-size: 0.78rem;
  }

  .hero-visual {
    order: -1;
    padding: 30px 0;
    width: 100%;
  }

  .hero-image-frame {
    width: 82%;
    max-width: 340px;
    margin: 0 auto;
  }

  .bg-rect.outer {
    top: -18px;
    left: -18px;
    right: -18px;
    bottom: -18px;
  }

  .bg-rect.inner {
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
  }

  .float-icon {
    transform: scale(0.72);
    gap: 2px;
  }

  .float-circle {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .float-label {
    font-size: 0.55rem;
    padding: 3px 7px;
  }

  .float-1 {
    top: -15px;
    left: -5px;
  }

  .float-2 {
    top: -20px;
    right: -5px;
  }

  .float-3 {
    top: 35%;
    left: -18px;
  }

  .float-4 {
    top: 68%;
    right: -18px;
  }

  .float-5 {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) scale(0.72);
  }

  .float-6 {
    display: flex;
    top: 18%;
    right: -10px;
  }

}

/* ==========================================
   SMALL MOBILE
========================================== */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-image-frame {
    width: 80%;
  }

  .float-icon {
    transform: scale(0.62);
  }

}

@media(max-width:480px){

  .float-circle{
    width:38px;
    height:38px;
    min-width:38px;
    min-height:38px;

    border-radius:50% !important;
  }

}



/* ============================================
   ABOUT SECTION
============================================ */

.about-section{
  background: var(--white);
  padding: 80px 40px;
}

.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */

.about-left{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-label{
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red-accent);
}

.about-left h2{
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--royal-blue);
  line-height: 1.2;
  margin: 0;
}

.accent-line{
  width: 60px;
  height: 3px;
  background: #ffd700;
  border-radius: 2px;
}

.about-left p{
  font-size: 1rem;
  color: var(--text-grey);
  line-height: 1.8;
  margin: 0;
}

/* =========================
   STATS
========================= */

.stats-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 10px;
}

.stat-item{
  border-left: 3px solid #ffd700;
  padding-left: 14px;
}

.stat-number{
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--royal-blue);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label{
  font-size: 0.9rem;
  color: var(--text-grey);
  line-height: 1.5;
}

/* =========================
   RIGHT IMAGE
========================= */

.about-right{
  width: 100%;
}

.about-image-frame{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-image-frame img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.image-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,76,129,0.12) 0%,
    transparent 40%
  );
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 900px){

  .about-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-left h2{
    font-size: 2rem;
  }

  .about-image-frame img{
    height: 380px;
  }

}

@media (max-width: 480px){

  .about-section{
    padding: 60px 16px;
  }

  .about-left h2{
    font-size: 1.7rem;
  }

  .stats-grid{
    gap: 18px;
  }

  .stat-number{
    font-size: 1.4rem;
  }

  .stat-label{
    font-size: 0.8rem;
  }

  .about-image-frame img{
    height: 300px;
  }


}




/* ============================================
   WHY JOIN — MINIMAL SOFT CARDS WITH ICONS
   ============================================ */

.why-join-section {
  padding: 100px 0;
}

.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 28px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  position: relative;
  margin-top: 30px;
  border: 1px solid rgba(0,0,0,0.04);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* Icon overlapping top */
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--royal-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 20px rgba(15,76,129,0.25);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(15,76,129,0.35);
}

/* Icon color variants */
.why-icon.icon-red {
  background: var(--red-accent);
  box-shadow: 0 6px 20px rgba(227,24,55,0.25);
}
.why-card:hover .why-icon.icon-red {
  box-shadow: 0 8px 25px rgba(227,24,55,0.35);
}

.why-icon.icon-blue {
  background: #1a5fa3;
  box-shadow: 0 6px 20px rgba(26,95,163,0.25);
}
.why-card:hover .why-icon.icon-blue {
  box-shadow: 0 8px 25px rgba(26,95,163,0.35);
}

.why-icon.icon-gold {
  background: #ffd700;
  color: var(--royal-blue);
  box-shadow: 0 6px 20px rgba(255,215,0,0.3);
}
.why-card:hover .why-icon.icon-gold {
  box-shadow: 0 8px 25px rgba(255,215,0,0.4);
}

/* Card text */
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--royal-blue);
  margin-bottom: 12px;
  margin-top: 8px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-grey);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   WHY JOIN RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .why-join-section { padding: 70px 0; }
  .why-card { padding: 44px 24px 28px; }
}

@media (max-width: 767px) {
  .why-join-section { padding: 60px 0; }
  .why-card { margin-top: 28px; padding: 40px 22px 26px; }
  .why-icon { width: 56px; height: 56px; font-size: 1.2rem; top: -28px; }
  .why-card h3 { font-size: 1.05rem; }
}




/* ============================================
   BENEFITS — SEAMLESS BLEND WITH BACKGROUND
   ============================================ */

.benefits-section {
  padding: 100px 0;
  background-color: #f5f7fa;
  position: relative;
  overflow: hidden;
}

/* Subtle texture — same tone as background */
.benefits-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(15,76,129,0.07) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(227,24,55,0.045) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(255,215,0,0.035) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Full bleed */
.benefits-section .container-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0;
  position: relative;
  z-index: 2;
}

/* ---- Header ---- */
.benefits-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.benefits-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-grey);
  margin-bottom: 24px;
}

.benefits-pill i {
  font-size: 0.75rem;
  color: var(--red-accent);
}

.benefits-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.benefits-header p {
  font-size: 1.05rem;
  color: var(--text-grey);
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Grid — NO outer borders at all ---- */
.benefits-grid {
  border: none;
  background: transparent;
}

/* ---- Cell — transparent, subtle internal lines ---- */
.benefit-cell {
  padding: 48px 40px;
  border-right: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  background: transparent;
}

/* Remove right border on 3rd column */
.col-lg-4:nth-child(3n) .benefit-cell {
  border-right: none;
}

/* Remove bottom border on last row */
.benefits-grid .row > div:nth-last-child(-n+3) .benefit-cell {
  border-bottom: none;
}

/* Icon */
.benefit-cell > i {
  font-size: 1rem;
  color: var(--royal-blue);
  margin-bottom: 16px;
  display: block;
  opacity: 0.8;
}

/* Title */
.benefit-cell h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

/* Description */
.benefit-cell p {
  font-size: 0.95rem;
  color: var(--text-grey);
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}

/* Hover — slight lift, soft shadow */
.benefit-cell:hover {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  border-color: transparent;
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .benefits-section { padding: 70px 0; }
  .benefits-header h2 { font-size: 2.2rem; }
  .benefits-header { margin-bottom: 50px; }
  
  .benefit-cell { padding: 36px 30px; }
  
  .col-lg-4:nth-child(3n) .benefit-cell { border-right: 1px solid rgba(0,0,0,0.06); }
  .col-md-6:nth-child(2n) .benefit-cell { border-right: none; }
  
  .benefits-grid .row > div:nth-last-child(-n+2) .benefit-cell { border-bottom: none; }
  .benefits-grid .row > div:nth-last-child(3) .benefit-cell { border-bottom: 1px solid rgba(0,0,0,0.06); }
}

@media (max-width: 767px) {
  .benefits-section { padding: 60px 0; }
  .benefits-header h2 { font-size: 1.8rem; }
  .benefits-header { margin-bottom: 40px; }
  
  .benefit-cell {
    padding: 32px 24px;
    border-right: none !important;
  }
  
  .benefits-grid .row > div .benefit-cell { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .benefits-grid .row > div:last-child .benefit-cell { border-bottom: none; }
}



/* ============================================
   ELIGIBILITY — FULL WIDTH / BIGGER / DESCRIPTION
   ============================================ */

.eligibility-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a3a63 0%, var(--royal-blue) 50%, #1a5fa3 100%);
  position: relative;
  overflow: hidden;
}

/* Texture */
.eligibility-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.eligibility-section .container-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0;
  position: relative;
  z-index: 2;
}

/* ---- Header ---- */
.eligibility-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.eligibility-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.eligibility-pill i {
  font-size: 0.75rem;
  color: #ffd700;
}

.eligibility-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.eligibility-header p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
}

/* ---- Full Width Row ---- */
.eligibility-row {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ---- Chip ---- */
.eligibility-chip {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  flex: 1;
  background: rgba(255,255,255,0.03);
}

.eligibility-chip:last-child {
  border-right: none;
}

.eligibility-chip:hover {
  background: rgba(255,255,255,0.08);
}

/* Icon */
.eligibility-chip > i {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
  font-size: 1.3rem;
}

/* Text */
.eligibility-chip div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eligibility-chip strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.eligibility-chip span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  line-height: 1.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .eligibility-section { padding: 60px 0; }
  .eligibility-header h2 { font-size: 2.2rem; }
  .eligibility-header p { font-size: 1rem; }
  
  .eligibility-chip {
    padding: 28px 24px;
    gap: 14px;
  }
  
  .eligibility-chip > i {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  
  .eligibility-chip strong { font-size: 1.1rem; }
  .eligibility-chip span { font-size: 0.85rem; }
}

@media (max-width: 767px) {
  .eligibility-header h2 { font-size: 1.8rem; }
  .eligibility-header { margin-bottom: 30px; }
  
  .eligibility-row {
    flex-wrap: wrap;
  }
  
  .eligibility-chip {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 24px 20px;
  }
  
  .eligibility-chip:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  
  .eligibility-chip:nth-last-child(-n+2) {
    border-bottom: none;
  }
  
  .eligibility-chip > i {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .eligibility-chip strong { font-size: 1rem; }
  .eligibility-chip span { font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .eligibility-chip {
    flex: 1 1 100%;
    border-right: none !important;
  }
  
  .eligibility-chip:nth-last-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

/* ============================================
   PROCESS — CIRCLES CONNECTED BY LINES
   ============================================ */

.process-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.process-section .container-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0;
  position: relative;
  z-index: 2;
}

/* ---- Header ---- */
.process-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 20px;
}

.process-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-grey);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-grey);
  margin-bottom: 16px;
}

.process-pill i {
  font-size: 0.75rem;
  color: var(--red-accent);
}

.process-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--royal-blue);
  line-height: 1.15;
  margin-bottom: 12px;
}

.process-header p {
  font-size: 1.05rem;
  color: var(--text-grey);
  max-width: 480px;
  margin: 0 auto;
}

/* ---- Track ---- */
.process-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* ---- Step ---- */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 200px;
  position: relative;
  z-index: 2;
}

/* Circle */
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.step-circle span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--royal-blue);
}

.step-circle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(15,76,129,0.15);
  transition: all 0.3s ease;
}

.process-step:hover .step-circle {
  background: var(--royal-blue);
  transform: scale(1.05);
}

.process-step:hover .step-circle span {
  color: var(--white);
}

.process-step:hover .step-circle::after {
  inset: -10px;
  border-color: rgba(15,76,129,0.08);
}

/* Content */
.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-grey);
  line-height: 1.5;
  margin: 0;
}

/* ---- Connector Line ---- */
.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--royal-blue), var(--red-accent));
  margin-top: 32px;
  position: relative;
  opacity: 0.4;
}

.process-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .process-section { padding: 70px 0; }
  .process-header h2 { font-size: 2rem; }
  .process-header { margin-bottom: 40px; }
  
  .process-track {
    flex-wrap: wrap;
    gap: 40px;
    max-width: 600px;
  }
  
  .process-step {
    flex: 1 1 40%;
    max-width: none;
  }
  
  .process-connector {
    display: none;
  }
  
  .step-circle {
    width: 56px;
    height: 56px;
  }
  
  .step-circle span {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .process-track {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 20px;
    max-width: 400px;
    width: 100%;
  }
  
  .step-circle {
    margin-bottom: 0;
    min-width: 56px;
  }
  
  .step-content h3 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
}

/* ============================================
   APPLICATION FORM — SOFT / BEAUTIFUL / MINIMAL
   ============================================ */

.form-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fb 0%, var(--white) 100%);
  position: relative;
}

.form-section .container-fluid {
  width: 100%;
  max-width: 100%;
  padding: 0;
  position: relative;
  z-index: 2;
}

/* ---- Grid ---- */
.form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 700px;
}

/* ---- Left: Form ---- */
.form-left {
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-header {
  margin-bottom: 36px;
}

.form-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-grey);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-grey);
  margin-bottom: 16px;
}

.form-pill i {
  font-size: 0.75rem;
  color: var(--red-accent);
}

.form-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--royal-blue);
  line-height: 1.2;
  margin-bottom: 10px;
}

.form-header p {
  font-size: 1rem;
  color: var(--text-grey);
  margin: 0;
}

/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group label span {
  font-weight: 400;
  color: var(--text-grey);
}

.form-group input,
.form-group select {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.25s ease;
}

.form-group input::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 4px rgba(15,76,129,0.08);
}

/* Actions */
.form-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.form-actions .btn {
  padding: 14px 28px;
  font-size: 0.95rem;
}

/* ---- Right: Visual ---- */
.form-right {
  background: linear-gradient(135deg, var(--royal-blue) 0%, #0a3a63 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

/* Texture */
.form-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.form-visual {
  position: relative;
  z-index: 2;
  max-width: 340px;
}

.visual-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-bottom: 24px;
}

.visual-card > i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: #ffd700;
}

.visual-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.visual-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.visual-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.visual-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.visual-contact a:hover {
  background: rgba(255,255,255,0.2);
}

.visual-contact a i {
  font-size: 1rem;
}

/* Trust badges */
.visual-trust {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
}

.trust-badge i {
  font-size: 0.85rem;
  color: #ffd700;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-left {
    padding: 50px 40px;
  }
  
  .form-right {
    padding: 50px 40px;
    min-height: 400px;
  }
  
  .form-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .form-left {
    padding: 40px 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  
  .form-header h2 {
    font-size: 1.7rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .form-right {
    padding: 40px 24px;
  }
  
  .visual-card {
    padding: 32px 24px;
  }
}



/* ================= TESTIMONIALS CSS ================= */
.testimonials-slider {
  position: relative;
  padding: 0 4px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.testimonial-card:hover::before { opacity: 1; }

.quote-icon {
  margin-bottom: 12px;
  opacity: 0.25;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-grey);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-grey);
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.author-info span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-grey);
}

.author-location {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  color: var(--royal-blue) !important;
  font-weight: 500;
}

.stars {
  display: flex;
  gap: 2px;
  align-items: center;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--royal-blue);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--royal-blue);
  color: var(--white);
  border-color: var(--royal-blue);
}

.slider-btn.prev { left: -22px; }
.slider-btn.next { right: -22px; }
.slider-btn.hidden { display: none; }

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot.active {
  background: var(--royal-blue);
  width: 28px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .slider-btn.prev { left: 10px; }
  .slider-btn.next { right: 10px; }
}

@media (max-width: 640px) {
  .testimonial-card {
    flex: 0 0 100%;
    padding: 24px;
  }
  .slider-btn {
    width: 38px;
    height: 38px;
  }
  .slider-btn.prev { left: 6px; }
  .slider-btn.next { right: 6px; }
}




/* Bootstrap accordion brand override */
.accordion-button:not(.collapsed) {
  background-color: #0f4c81 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(15, 76, 129, 0.25) !important;
  border-color: #0f4c81 !important;
}


.footer .hover-link {
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer .hover-link:hover {
  color: #fff !important;
  padding-left: 4px;
}

.footer .social-link {
  transition: all 0.3s ease;
  color: #fff;
}

.footer .social-link:hover {
  background: var(--red-accent, #e31837) !important;
  transform: translateY(-3px);
}

.footer .border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Soft elevated cards */
.soft-card {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.soft-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Smooth section background transition */
#about {
  background: linear-gradient(to bottom, #f8f9fb 0%, #f0f2f5 100%);
}







/* ========== ROADMAP DESKTOP ========== */
.roadmap-line-desktop {
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(to right, var(--royal-blue, #0f4c81), var(--red-accent, #e31837), var(--royal-blue, #0f4c81));
  border-radius: 3px;
  z-index: 0;
  opacity: 0.35;
}

.roadmap-item-desktop { position: relative; z-index: 1; }

.roadmap-node {
  width: 76px;
  height: 76px;
  border-width: 3px !important;
  border-color: #dee2e6 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.roadmap-item-desktop:hover .roadmap-node {
  transform: scale(1.15) translateY(-4px);
  border-color: var(--royal-blue, #0f4c81) !important;
  box-shadow: 0 8px 24px rgba(15, 76, 129, 0.18);
}

/* ========== ROADMAP MOBILE ========== */
.roadmap-line-mobile {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27px;
  width: 3px;
  background: linear-gradient(to bottom, var(--royal-blue, #0f4c81), var(--red-accent, #e31837), var(--royal-blue, #0f4c81));
  border-radius: 3px;
  opacity: 0.3;
  z-index: 0;
}

.roadmap-item-mobile { position: relative; z-index: 1; }

.roadmap-node-mobile {
  width: 56px;
  height: 56px;
  border-width: 3px !important;
  border-color: #dee2e6 !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

/* ========== BENEFIT CARDS ========== */
.benefit-card {
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: all 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  background-color: #fff !important;
}

.benefit-card:hover i { transform: scale(1.15); }
.benefit-card i { transition: transform 0.3s ease; }














/* =========================================
   MINI HERO SECTION
========================================= */

.advisor-mini-hero{
  position: relative;
  overflow: hidden;
  padding: 90px 0 75px;
  background:
    linear-gradient(135deg,
    #0a3a63 0%,
    var(--royal-blue) 45%,
    #1565a8 100%);
}

/* Soft Glow */
.advisor-mini-hero::before{
  content:'';
  position:absolute;
  top:-120px;
  right:-120px;
  width:320px;
  height:320px;
  background:rgba(255,255,255,0.05);
  border-radius:50%;
}

.advisor-mini-hero::after{
  content:'';
  position:absolute;
  bottom:-120px;
  left:-120px;
  width:260px;
  height:260px;
  background:rgba(227,24,55,0.12);
  border-radius:50%;
}

/* Center Content */
.advisor-mini-content{
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Tag */
.advisor-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff;
  padding:8px 18px;
  border-radius:50px;
  font-size:0.82rem;
  margin-bottom:22px;
}

.advisor-tag i{
  color:#ffd700;
}

/* Heading */
.advisor-mini-hero h1{
  font-size:3rem;
  line-height:1.15;
  color:#fff;
  font-weight:700;
  margin-bottom:18px;
}

.advisor-mini-hero h1 span{
  color:#ffd700;
}

/* Description */
.advisor-mini-hero p{
  color:rgba(255,255,255,0.82);
  font-size:1.02rem;
  line-height:1.8;
  max-width:700px;
  margin:0 auto 30px;
}

/* Points */
.advisor-mini-points{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

.advisor-mini-points div{
  display:flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.08);
  color:#fff;
  padding:10px 16px;
  border-radius:12px;
  font-size:0.9rem;
  font-weight:500;
  backdrop-filter: blur(8px);
}

.advisor-mini-points i{
  color:#ffd700;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

  .advisor-mini-hero{
    padding:70px 0 55px;
  }

  .advisor-mini-content{
    text-align:start;
  }

  .advisor-mini-hero h1{
    font-size:2.2rem;
  }

  .advisor-mini-hero p{
    margin:0 0 24px;
    max-width:100%;
  }

  .advisor-mini-points{
    justify-content:flex-start;
  }
}

@media(max-width:576px){

  .advisor-mini-hero{
    padding:60px 0 50px;
  }

  .advisor-mini-hero h1{
    font-size:1.8rem;
  }

  .advisor-mini-points{
    gap:10px;
  }

  .advisor-mini-points div{
    font-size:0.8rem;
    padding:8px 12px;
  }
}




/* =========================================
   CONTACT SECTION
========================================= */

.contact-section{
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* LEFT SIDE */
.contact-content{
  height: 100%;
  padding: 90px 60px;
  background:
    linear-gradient(135deg,
    #0a3a63 0%,
    var(--royal-blue) 50%,
    #1565a8 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Decorative Glow */
.contact-content::before{
  content:'';
  position:absolute;
  top:-120px;
  right:-120px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
}

.contact-content::after{
  content:'';
  position:absolute;
  bottom:-100px;
  left:-100px;
  width:240px;
  height:240px;
  border-radius:50%;
  background:rgba(227,24,55,0.12);
}

/* Tag */
.contact-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.12);
  padding:8px 18px;
  border-radius:50px;
  font-size:0.82rem;
  margin-bottom:24px;
  position: relative;
  z-index: 2;
}

.contact-tag i{
  color:#ffd700;
}

/* Heading */
.contact-content h2{
  font-size:3rem;
  line-height:1.15;
  font-weight:700;
  margin-bottom:18px;
  position: relative;
  z-index: 2;
}

.contact-content h2 span{
  color:#ffd700;
}

/* Description */
.contact-content p{
  color:rgba(255,255,255,0.82);
  line-height:1.8;
  font-size:1rem;
  margin-bottom:36px;
  max-width:520px;
  position: relative;
  z-index: 2;
}

/* Contact List */
.contact-list{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-bottom:34px;
  position: relative;
  z-index: 2;
}

/* Card */
.contact-card{
  display:flex;
  align-items:flex-start;
  gap:16px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.08);
  padding:18px;
  border-radius:18px;
  backdrop-filter: blur(8px);
}

/* Icon */
.contact-icon{
  width:52px;
  height:52px;
  min-width:52px;
  border-radius:14px;
  background:rgba(255,255,255,0.1);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.1rem;
  color:#ffd700;
}

/* Text */
.contact-card h6{
  font-size:0.9rem;
  margin-bottom:4px;
  font-weight:600;
  color:rgba(255,255,255,0.75);
}

.contact-card a,
.contact-card span{
  font-size:1rem;
  color:#fff;
  font-weight:600;
}

/* Buttons */
.contact-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  position: relative;
  z-index: 2;
}

.contact-buttons .btn{
  padding:14px 24px;
  border-radius:14px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

/* MAP */
.map-wrapper{
  width:100%;
  height:100%;
  min-height:720px;
}

.map-wrapper iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter: grayscale(10%);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

  .contact-content{
    padding:70px 24px;
  }

  .contact-content h2{
    font-size:2.2rem;
  }

  .map-wrapper{
    min-height:420px;
  }
}

@media(max-width:576px){

  .contact-content{
    padding:60px 20px;
  }

  .contact-content h2{
    font-size:1.8rem;
  }

  .contact-buttons{
    flex-direction:column;
  }

  .contact-buttons .btn{
    width:100%;
    justify-content:center;
  }

  .map-wrapper{
    min-height:350px;
  }
}

/* ==========================================
   INQUIRY SECTION
========================================== */
.inquiry-section{
  background: #fff;
}

/* Heading */
.inquiry-head{
  max-width: 720px;
  margin: 0 auto 55px;
}

.inquiry-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15,76,129,0.08);
  color: var(--royal-blue);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.inquiry-tag i{
  color: var(--red-accent);
}

.inquiry-head h2{
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: 14px;
  line-height: 1.2;
}

.inquiry-head p{
  color: var(--text-grey);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

/* ==========================================
   FORM
========================================== */
.inquiry-form{
  width: 100%;
}

/* Field */
.field-group{
  display: flex;
  flex-direction: column;
}

.field-group label{
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--royal-blue);
  margin-bottom: 10px;
}

/* Inputs */
.field-group input,
.field-group textarea{
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #d8dee8;
  padding: 14px 0;
  background: transparent;
  font-size: 1rem;
  color: var(--text-dark);
  transition: 0.3s ease;
  outline: none;
  border-radius: 0;
}

.field-group textarea{
  resize: none;
}

/* Focus */
.field-group input:focus,
.field-group textarea:focus{
  border-color: var(--royal-blue);
}

/* Placeholder */
.field-group input::placeholder,
.field-group textarea::placeholder{
  color: #9aa5b1;
}

/* Button */
.inquiry-btn-wrap{
  margin-top: 45px;
  text-align: center;
}

.inquiry-btn-wrap .btn{
  padding: 14px 34px;
  font-size: 0.95rem;
  border-radius: 10px;
}

/* ==========================================
   MOBILE
========================================== */
@media (max-width:768px){

  .inquiry-section{
    padding: 70px 0;
  }

  .inquiry-head{
    text-align: start;
    margin-bottom: 40px;
  }

  .inquiry-head h2{
    font-size: 2rem;
  }

  .inquiry-head p{
    font-size: 0.95rem;
  }

  .inquiry-btn-wrap{
    text-align: start;
  }

}


/* ==========================================
   BLOG HERO
========================================== */
.blog-hero{
  padding: 90px 0 70px;
  background:
    linear-gradient(
      135deg,
      #0a3a63 0%,
      var(--royal-blue) 45%,
      #1565a8 100%
    );
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Soft glow */
.blog-hero::before{
  content:'';
  position:absolute;
  top:-120px;
  right:-120px;
  width:350px;
  height:350px;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
}

.blog-hero-content{
  max-width:760px;
  margin:auto;
  position:relative;
  z-index:2;
}

/* Tag */
.blog-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.15);
  padding:8px 18px;
  border-radius:50px;
  font-size:0.82rem;
  font-weight:600;
  margin-bottom:22px;
}

.blog-tag i{
  color:#ffd700;
}

/* Heading */
.blog-hero h1{
  font-size:3.2rem;
  font-weight:700;
  margin-bottom:18px;
  line-height:1.1;
}

.blog-hero h1 span{
  color:#ffd700;
}

.blog-hero p{
  max-width:620px;
  margin:auto;
  color:rgba(255,255,255,0.8);
  line-height:1.8;
  font-size:1.02rem;
}

/* ==========================================
   BLOG SECTION
========================================== */
.blog-section{
  padding:90px 0;
  background:#fff;
}

/* Card */
.blog-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,0.06);
  transition:0.35s ease;
  height:100%;
  border:1px solid #edf1f5;
}

.blog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,0.1);
}

/* Image */
.blog-image{
  overflow:hidden;
  height:260px;
}

.blog-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}

.blog-card:hover .blog-image img{
  transform:scale(1.08);
}

/* Content */
.blog-content{
  padding:28px;
}

/* Category */
.blog-category{
  display:inline-block;
  background:rgba(15,76,129,0.08);
  color:var(--royal-blue);
  padding:7px 14px;
  border-radius:50px;
  font-size:0.75rem;
  font-weight:600;
  margin-bottom:18px;
}

/* Title */
.blog-content h3{
  font-size:1.45rem;
  line-height:1.4;
  margin-bottom:16px;
  color:var(--text-dark);
  font-weight:700;
}

/* Description */
.blog-content p{
  color:var(--text-grey);
  line-height:1.8;
  font-size:0.95rem;
  margin-bottom:26px;
}

/* Footer */
.blog-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

/* Meta */
.blog-meta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.blog-meta span{
  display:flex;
  align-items:center;
  gap:6px;
  color:#7a7a7a;
  font-size:0.82rem;
}

.blog-meta i{
  color:var(--red-accent);
}

/* Button */
.blog-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--royal-blue);
  font-weight:600;
  transition:0.3s ease;
}

.blog-btn:hover{
  gap:12px;
  color:var(--red-accent);
}

/* ==========================================
   MOBILE
========================================== */
@media (max-width:768px){

  .blog-hero{
    padding:75px 0 60px;
  }

  .blog-hero-content{
    text-align:start;
  }

  .blog-hero h1{
    font-size:2.2rem;
  }

  .blog-hero p{
    margin:0;
    font-size:0.95rem;
  }

  .blog-section{
    padding:70px 0;
  }

  .blog-image{
    height:220px;
  }

  .blog-content{
    padding:22px;
  }

  .blog-content h3{
    font-size:1.2rem;
  }

  .blog-footer{
    flex-direction:column;
    align-items:flex-start;
  }

}


/* ==========================================
   LEGAL PAGE
========================================== */
.legal-page{
  padding: 90px 0;
  background: #fff;
}

/* ==========================================
   HEADER
========================================== */
.legal-header{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.legal-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15,76,129,0.08);
  color: var(--royal-blue);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.legal-tag i{
  color: var(--red-accent);
}

.legal-header h1{
  font-size: 3rem;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: 16px;
  line-height: 1.1;
}

.legal-header p{
  color: var(--text-grey);
  line-height: 1.8;
  font-size: 1rem;
}

/* ==========================================
   ARTICLE
========================================== */
.legal-article{
  max-width: 950px;
  margin: auto;
}

/* Each section */
.legal-block{
  margin-bottom: 42px;
}

/* Headings */
.legal-block h2{
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--royal-blue);
  margin-bottom: 14px;
  position: relative;
  padding-left: 18px;
}

/* Left accent line */
.legal-block h2::before{
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 22px;
  border-radius: 10px;
  background: var(--red-accent);
}

/* Paragraphs */
.legal-block p{
  color: var(--text-grey);
  line-height: 1.9;
  font-size: 1rem;
}

/* ==========================================
   MOBILE
========================================== */
@media (max-width:768px){

  .legal-page{
    padding: 70px 0;
  }

  .legal-header{
    text-align: start;
    margin-bottom: 45px;
  }

  .legal-header h1{
    font-size: 2.1rem;
  }

  .legal-header p{
    font-size: 0.95rem;
  }

  .legal-block{
    margin-bottom: 34px;
  }

  .legal-block h2{
    font-size: 1.15rem;
  }

  .legal-block p{
    font-size: 0.95rem;
    line-height: 1.8;
  }

}








/* Hero */
    .blog-hero {
      background: linear-gradient(135deg, #0a3a63 0%, #0f4c81 100%);
      padding: 50px 0;
    }

    .blog-hero h1 {
      color: #fff;
      font-weight: 700;
      font-size: 2rem;
      line-height: 1.3;
    }

    .blog-hero p {
      color: rgba(255,255,255,0.8);
      font-size: 1rem;
    }

    .blog-meta {
      color: rgba(255,255,255,0.6);
      font-size: 0.8rem;
    }

    /* Article */
    .article-content h2 {
      color: var(--royal-blue);
      font-weight: 700;
      font-size: 1.3rem;
      margin-top: 40px;
      margin-bottom: 16px;
      padding-bottom: 8px;
      border-bottom: 2px solid #e9ecef;
    }

    .article-content h3 {
      font-weight: 600;
      font-size: 1.1rem;
      margin-top: 24px;
      margin-bottom: 12px;
    }

    .article-content p,
    .article-content li {
      color: var(--text-grey);
      font-size: 0.95rem;
    }

    .article-content ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .article-content li {
      margin-bottom: 8px;
    }

    /* Featured Image */
    .featured-img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 32px;
    }

    /* Highlight Box */
    .highlight-box {
      background: #f8f9fa;
      border-left: 4px solid var(--royal-blue);
      border-radius: 0 8px 8px 0;
      padding: 20px 24px;
      margin: 24px 0;
    }

    .highlight-box h4 {
      color: var(--royal-blue);
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 8px;
    }

    /* Step */
    .step-item {
      display: flex;
      gap: 16px;
      margin-bottom: 20px;
      padding: 20px;
      background: #f8f9fa;
      border-radius: 10px;
    }

    .step-num {
      width: 40px;
      height: 40px;
      background: var(--royal-blue);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      flex-shrink: 0;
    }

    /* CTA */
    .inline-cta {
      background: linear-gradient(135deg, var(--royal-blue) 0%, #1565a8 100%);
      border-radius: 12px;
      padding: 32px;
      text-align: center;
      margin: 40px 0;
    }

    .inline-cta h3 {
      color: #fff;
      font-weight: 700;
      font-size: 1.3rem;
      margin-bottom: 8px;
    }

    .inline-cta p {
      color: rgba(255,255,255,0.85);
      margin-bottom: 20px;
    }

    /* Author */
    .author-box {
      display: flex;
      align-items: center;
      gap: 16px;
      background: #f8f9fa;
      border-radius: 12px;
      padding: 20px;
      margin-top: 40px;
    }

    .author-box img {
      width: 56px;
      height: 56px;
      border-radius: 50%;
    }

    /* Share */
    .share-bar {
      display: flex;
      gap: 10px;
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid #e9ecef;
    }

    .share-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      font-size: 0.9rem;
    }

    .share-btn.whatsapp { background: #25d366; }
    .share-btn.facebook { background: #1877f2; }
    .share-btn.linkedin { background: #0a66c2; }

    /* Breadcrumb */
    .breadcrumb-nav {
      background: #f8f9fa;
      padding: 12px 0;
      font-size: 0.8rem;
    }

    .breadcrumb {
      margin: 0;
    }

    .breadcrumb a {
      color: var(--royal-blue);
      text-decoration: none;
    }

    @media (max-width: 768px) {
      .blog-hero h1 { font-size: 1.5rem; }
      .featured-img { height: 250px; }
    }