@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700;800;900&display=swap');

:root {
      --primary: #e63027;
      --primary-dark: #c0221a;
      --primary-light: #ff5a4e;
      --dark: #0f1523;
      --dark2: #1a2138;
      --accent: #f5a623;
      --gray-light: #f6f8fc;
      --gray: #6b7280;
      --text: #1e2d3d;
    }

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

   body{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--text);
}

h1,h2,h3,h4,h5,h6,
.display-font{
    font-family: 'Playfair Display', serif;
}


    /* --- UTILITIES --- */
    .text-primary-brand { color: var(--primary) !important; }
    .bg-primary-brand   { background-color: var(--primary) !important; }
    .btn-primary-brand {
      background: var(--primary);
      color: #fff;
      border: none;
      padding: 12px 32px;
      border-radius: 4px;
      font-weight: 600;
      letter-spacing: .5px;
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
    }
    .btn-primary-brand::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,.15);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s ease;
    }
    .btn-primary-brand:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,48,39,.35); }
    .btn-primary-brand:hover::after { transform: scaleX(1); }

    .section-tag {
      display: inline-block;
      font-size: .72rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 10px;
      background: rgba(230,48,39,.08);
      padding: 4px 14px;
      border-radius: 20px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      line-height: 1.2;
      color: var(--text);
    }
    .section-title.light { color: #fff; }

    /* --- NAVBAR --- */
    #mainNav {
      background: #fff;
      box-shadow: 0 2px 20px rgba(0,0,0,.07);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: all .3s;
    }
    #mainNav .navbar-brand-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
    }
    .brand-logo {
      background: var(--primary);
      color: #fff;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 900;
      padding: 6px 14px;
      border-radius: 4px;
      letter-spacing: 1px;
    }
    .brand-divider { width: 1px; height: 32px; background: #e0e0e0; }
    .brand-partner {
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--dark);
      border: 2px solid var(--dark);
      padding: 4px 10px;
      border-radius: 3px;
    }
    #mainNav .nav-link {
      font-size: .88rem;
      font-weight: 500;
      color: #333 !important;
      padding: 28px 14px !important;
      position: relative;
      transition: color .2s;
    }
    #mainNav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%; right: 50%;
      height: 3px;
      background: var(--primary);
      transition: all .3s;
    }
    #mainNav .nav-link:hover { color: var(--primary) !important; }
    #mainNav .nav-link:hover::after { left: 0; right: 0; }
    .nav-cta {
      background: var(--primary);
      color: #fff !important;
      border-radius: 4px;
      padding: 10px 20px !important;
      font-size: .82rem !important;
      margin-left: 8px;
    }
    .nav-cta:hover { background: var(--primary-dark); }
    .nav-cta::after { display: none !important; }

    /* --- HERO --- */
    #hero {
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #2a1f3d 100%);
      min-height: 88vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute;
      top: -20%; right: -10%;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(230,48,39,.18) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    #hero::after {
      content: '';
      position: absolute;
      bottom: -15%; left: -5%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(102,126,234,.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .8rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 700;
      margin-bottom: 16px;
    }
    .hero-tag span { width: 30px; height: 2px; background: var(--accent); display: inline-block; }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.6rem, 5.5vw, 4.2rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .hero-title em {
      color: var(--primary-light);
      font-style: normal;
      position: relative;
    }
    .hero-title em::after {
      content: '';
      position: absolute;
      bottom: 4px; left: 0; right: 0;
      height: 3px;
      background: var(--primary-light);
      opacity: .4;
    }
    .hero-desc {
      color: rgba(255,255,255,.72);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 480px;
      margin-bottom: 36px;
    }
    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 40px;
    }
    .hero-stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }
    .hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.55); letter-spacing: 1px; margin-top: 4px; }
    .hero-stat-divider { width: 1px; background: rgba(255,255,255,.15); }

    .hero-image-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 16px;
      position: relative;
    }
    .hero-img-card {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
    }
    .hero-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hero-img-card:nth-child(1) { grid-column: 1/3; height: 230px; }
    .hero-img-card:nth-child(2) { height: 160px; }
    .hero-img-card:nth-child(3) { height: 160px; }
    .hero-badge {
      position: absolute;
      bottom: -10px; left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      color: #fff;
      padding: 8px 20px;
      border-radius: 30px;
      font-size: .78rem;
      font-weight: 700;
      white-space: nowrap;
      box-shadow: 0 8px 24px rgba(230,48,39,.4);
      animation: float 3s ease-in-out infinite;
    }
    @keyframes float { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

    /* --- ABOUT / SOLUTIONS --- */
    #about { padding: 90px 0; background: #fff; }
    .vision-card, .mission-card {
      background: var(--gray-light);
      border-radius: 14px;
      padding: 28px;
      border-left: 5px solid var(--primary);
      transition: all .3s;
      height: 100%;
    }
    .vision-card:hover, .mission-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,.1);
    }
    .card-icon {
      width: 52px; height: 52px;
      background: var(--primary);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 1.4rem;
      margin-bottom: 16px;
    }
    .solution-box {
      background: var(--gray-light);
      border-radius: 12px;
      padding: 20px 24px;
      margin-bottom: 16px;
      border-left: 4px solid var(--primary);
      transition: all .3s;
    }
    .solution-box:hover { background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,.08); transform: translateX(6px); }

    /* --- EXPERIENCE --- */
    #experience {
      background: var(--dark);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }
    #experience::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(ellipse at 80% 50%, rgba(230,48,39,.1) 0%, transparent 60%);
      pointer-events: none;
    }
    .milestone-item {
      border-left: 2px solid rgba(255,255,255,.12);
      padding: 0 0 32px 24px;
      position: relative;
    }
    .milestone-item::before {
      content: '';
      position: absolute;
      left: -7px; top: 4px;
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 4px rgba(230,48,39,.25);
    }
    .milestone-year {
      font-size: .78rem;
      letter-spacing: 2px;
      color: var(--primary-light);
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .milestone-title { color: #fff; font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
    .milestone-desc { color: rgba(255,255,255,.45); font-size: .85rem; }

    .progress-label { color: rgba(255,255,255,.75); font-size: .88rem; margin-bottom: 6px; display: flex; justify-content: space-between; }
    .progress { height: 8px; border-radius: 10px; background: rgba(255,255,255,.1); margin-bottom: 18px; }
    .progress-bar { background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 10px; }

    .exp-image-wrap {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
    }
    .exp-image-wrap img { width: 100%; height: 380px; object-fit: cover; display: block; }
    .exp-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,.8));
      padding: 24px;
      color: #fff;
    }

    /* --- COACHING --- */
    #coaching { padding: 90px 0; background: var(--gray-light); }
    .coaching-featured {
      background: var(--primary);
      color: #fff;
      border-radius: 16px;
      padding: 36px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: transform .3s;
    }
    .coaching-featured:hover { transform: translateY(-6px); }
    .coaching-featured::after {
      content: '';
      position: absolute;
      bottom: -40px; right: -40px;
      width: 160px; height: 160px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
    }
    .coaching-featured h4 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 12px; }
    .coaching-featured p { opacity: .85; font-size: .9rem; line-height: 1.7; }

    .coaching-card {
      background: #fff;
      border-radius: 14px;
      padding: 28px;
      text-align: center;
      transition: all .3s;
      border: 1px solid transparent;
      height: 100%;
    }
    .coaching-card:hover {
      border-color: var(--primary);
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(230,48,39,.12);
    }
    .coaching-icon {
      width: 64px; height: 64px;
      background: rgba(230,48,39,.08);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
      color: var(--primary);
      margin: 0 auto 16px;
      transition: all .3s;
    }
    .coaching-card:hover .coaching-icon { background: var(--primary); color: #fff; }
    .coaching-card h6 { font-weight: 700; margin-bottom: 8px; }
    .coaching-card p { font-size: .84rem; color: var(--gray); }

    /* --- HOW TO GET VISA --- */
    #howto { padding: 90px 0; background: #fff; position: relative; overflow: hidden; }
    #howto::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(230,48,39,.04);
      pointer-events: none;
    }
    .step-card {
      text-align: center;
      padding: 36px 24px;
      border-radius: 16px;
      background: var(--gray-light);
      position: relative;
      transition: all .3s;
    }
    .step-card:hover { background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,.1); transform: translateY(-8px); }
    .step-num {
      position: absolute;
      top: -14px; left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      color: #fff;
      width: 28px; height: 28px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .75rem;
      font-weight: 800;
    }
    .step-icon {
      width: 72px; height: 72px;
      background: var(--primary);
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem;
      color: #fff;
      margin: 0 auto 18px;
      box-shadow: 0 12px 30px rgba(230,48,39,.35);
      transition: all .3s;
    }
    .step-card:hover .step-icon { transform: rotate(-6deg) scale(1.08); }
    .step-card h6 { font-weight: 700; margin-bottom: 8px; }
    .step-card p { font-size: .84rem; color: var(--gray); }
    .step-connector {
      position: absolute;
      top: 50%; right: -12px;
      width: 24px; height: 2px;
      background: var(--primary);
      opacity: .3;
    }

    /* --- VISAS --- */
    #visas { padding: 90px 0; background: var(--gray-light); }
    .visa-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      transition: all .35s;
      border: 1px solid #eee;
      height: 100%;
    }
    .visa-card:hover { transform: translateY(-10px); box-shadow: 0 30px 70px rgba(0,0,0,.12); }
    .visa-card-img { height: 180px; overflow: hidden; position: relative; }
    .visa-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .visa-card:hover .visa-card-img img { transform: scale(1.08); }
    .visa-card-body { padding: 22px; }
    .visa-card-body h6 { font-weight: 700; margin-bottom: 8px; color: var(--text); }
    .visa-card-body p { font-size: .82rem; color: var(--gray); margin-bottom: 12px; }
    .visa-list { list-style: none; padding: 0; margin: 0 0 14px; }
    .visa-list li {
      font-size: .82rem;
      color: var(--gray);
      padding: 3px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .visa-list li::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--primary);
      flex-shrink: 0;
    }
    .visa-link {
      font-size: .82rem;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: gap .2s;
    }
    .visa-link:hover { gap: 8px; }
    .visa-badge {
      position: absolute;
      top: 12px; left: 12px;
      background: var(--primary);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
    }

    /* --- TESTIMONIALS --- */
    #testimonials { padding: 90px 0; background: var(--dark); position: relative; overflow: hidden; }
    #testimonials::before {
      content: '"';
      position: absolute;
      top: -20px; left: 5%;
      font-family: 'Playfair Display', serif;
      font-size: 18rem;
      color: rgba(255,255,255,.03);
      pointer-events: none;
      line-height: 1;
    }
    .testimonial-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px;
      padding: 36px;
      height: 100%;
      transition: all .3s;
      backdrop-filter: blur(6px);
    }
    .testimonial-card:hover {
      background: rgba(255,255,255,.09);
      transform: translateY(-8px);
      border-color: rgba(230,48,39,.4);
    }
    .testimonial-stars { color: var(--accent); margin-bottom: 16px; font-size: 1.1rem; }
    .testimonial-text { color: rgba(255,255,255,.8); font-size: .92rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 14px; }
    .testimonial-avatar {
      width: 52px; height: 52px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid var(--primary);
    }
    .testimonial-name { color: #fff; font-weight: 700; font-size: .95rem; }
    .testimonial-role { color: rgba(255,255,255,.45); font-size: .78rem; }

    /* --- CTA --- */
    #cta {
      background: linear-gradient(135deg, var(--primary) 0%, #c0221a 100%);
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      top: -50%; right: -10%;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: rgba(255,255,255,.07);
      pointer-events: none;
    }
    #cta::after {
      content: '';
      position: absolute;
      bottom: -50%; left: -5%;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(0,0,0,.08);
      pointer-events: none;
    }
    .cta-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); color: #fff; font-weight: 900; }
    .cta-sub { color: rgba(255,255,255,.8); font-size: 1rem; max-width: 480px; }
    .btn-cta-white {
      background: #fff;
      color: var(--primary);
      border: none;
      padding: 14px 38px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      transition: all .3s;
      box-shadow: 0 10px 30px rgba(0,0,0,.2);
    }
    .btn-cta-white:hover { background: var(--dark); color: #fff; transform: translateY(-3px) scale(1.03); }

    /* --- FOOTER --- */
    #footer { background: #0a0f1e; padding: 70px 0 0; }
    .footer-brand { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 900; margin-bottom: 14px; }
    .footer-brand span { color: var(--primary); }
    .footer-desc { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.8; margin-bottom: 20px; }
    .footer-social a {
      width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 8px;
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.6);
      text-decoration: none;
      font-size: 1rem;
      transition: all .3s;
      margin-right: 8px;
    }
    .footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
    .footer-heading { color: #fff; font-weight: 700; font-size: .95rem; margin-bottom: 20px; letter-spacing: .5px; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(255,255,255,.5);
      text-decoration: none;
      font-size: .85rem;
      transition: all .2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .footer-links a::before { content: '»'; color: var(--primary); font-size: 1rem; }
    .footer-links a:hover { color: var(--primary); padding-left: 4px; }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      color: rgba(255,255,255,.5);
      font-size: .85rem;
    }
    .footer-contact-item i { color: var(--primary); font-size: 1.1rem; margin-top: 2px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      margin-top: 50px;
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-bottom p { color: rgba(255,255,255,.35); font-size: .8rem; margin: 0; }

    /* --- SCROLL TO TOP --- */
    #scrollTop {
      position: fixed;
      bottom: 30px; right: 30px;
      width: 46px; height: 46px;
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      transition: all .3s;
      z-index: 999;
      box-shadow: 0 8px 24px rgba(230,48,39,.4);
    }
    #scrollTop.show { opacity: 1; transform: translateY(0); }
    #scrollTop:hover { background: var(--primary-dark); transform: translateY(-3px); }

    /* --- ANIMATIONS --- */
    @keyframes slideInLeft  { from{opacity:0;transform:translateX(-60px)} to{opacity:1;transform:translateX(0)} }
    @keyframes slideInRight { from{opacity:0;transform:translateX(60px)}  to{opacity:1;transform:translateX(0)} }
    @keyframes slideInUp    { from{opacity:0;transform:translateY(40px)}  to{opacity:1;transform:translateY(0)} }
    @keyframes fadeIn       { from{opacity:0} to{opacity:1} }
    @keyframes pulse-ring   { 0%{box-shadow:0 0 0 0 rgba(230,48,39,.4)} 100%{box-shadow:0 0 0 16px rgba(230,48,39,0)} }

    .hero-content-wrap .hero-tag    { animation: slideInLeft .7s ease both; }
    .hero-content-wrap .hero-title  { animation: slideInLeft .8s .15s ease both; }
    .hero-content-wrap .hero-desc   { animation: slideInLeft .8s .3s ease both; }
    .hero-content-wrap .hero-btns   { animation: slideInLeft .8s .45s ease both; }
    .hero-content-wrap .hero-stats  { animation: slideInUp .8s .6s ease both; }
    .hero-image-grid                { animation: slideInRight .9s .2s ease both; }

    /* Navbar scroll effect */
    #mainNav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.12); }

    /* counter */
    .counter { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--primary); line-height: 1; }

    /* Responsive */
    @media (max-width: 768px) {
      #hero { min-height: auto; padding: 80px 0 60px; }
      .hero-image-grid { margin-top: 40px; }
      .hero-stats { flex-wrap: wrap; gap: 20px; }
    }