  :root {
      --primary-blue: #1b3256;
      --secondary-blue: #23406d;
      --accent-gold: #d4ae36;
      --text-dark: #222;
      --text-light: #666;
      --bg-light: #f8f9fa;
  }

  body {
      font-family: 'Poppins', sans-serif;
      color: var(--text-dark);
      overflow-x: hidden;
      background-color: #fff;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-weight: 600;
  }

  .text-gold {
      color: var(--accent-gold) !important;
  }

  .bg-blue {
      background-color: var(--primary-blue) !important;
  }

  .bg-gold {
      background-color: var(--accent-gold) !important;
  }

  . {
      color: var(--primary-blue) !important;
  }

  /* Navbar */
  .navbar {
      padding: 15px 0;
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .navbar-brand {
      line-height: 1.2;
  }

  .nav-link {
      color: var(--text-dark);
      font-weight: 500;
      margin: 0 10px;
      font-size: 14px;
  }

  .nav-link.active {
      color: var(--accent-gold);
      border-bottom: 2px solid var(--accent-gold);
  }

  .social-icons a {
      color: var(--primary-blue);
      margin-left: 15px;
      font-size: 16px;
  }

  .navbar-toggler {
      background-color: var(--accent-gold);
      border: none;
      border-radius: 4px;
      padding: 6px 10px;
  }

  /* Hero Section - Base Desktop */
  .hero-section {
      background-color: var(--primary-blue);
      color: white;
      position: relative;
  }

  .hero-badge {
      background-color: var(--accent-gold);
      color: var(--primary-blue);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 8px;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 20px;
  }

  .hero-title {
      font-size: 2.5rem;
      margin-bottom: 15px;
      line-height: 1.2;
  }

  .hero-subtitle {
      font-size: 11px;
      color: #d1d5db;
      margin-bottom: 30px;
      line-height: 1.6;
      max-width: 90%;
  }

  .service-btn {
      background: #3b5672;
      /* border: 1px solid rgba(255, 255, 255, 0.15); */
      color: white;
      padding: 12px 15px;
      /* border-radius: 5px; */
      font-size: 14px;
      width: 100%;
      text-align: left;
      text-decoration: none;
      display: flex;
      align-items: center;
      transition: 0.3s;
      box-shadow: 0px 2px 6px #0000002b;
  }

  .service-btn i {
      color: var(--accent-gold);
      margin-right: 12px;
      font-size: 16px;
  }

  .service-btn:hover {
      background: var(--accent-gold);
      color: var(--primary-blue);
      border-color: var(--accent-gold);
  }

  .service-btn:hover i {
      color: var(--primary-blue);
  }

  /* Stats */
  .stats-container {
      position: absolute;
      bottom: -35px;
      left: 50%;
      transform: translateX(-50%);
      width: 85%;
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      display: flex;
      justify-content: space-between;
      text-align: center;
      z-index: 10;
  }

  .stat-item {
      flex: 1;
  }

  .stat-item.border-side {
      border-left: 1px solid #eee;
      border-right: 1px solid #eee;
  }

  .stat-item h3 {
      color: var(--text-dark);
      margin: 0;
      font-size: 24px;
      font-weight: 700;
  }

  .stat-item p {
      color: var(--text-light);
      margin: 0;
      font-size: 12px;
      font-weight: 500;
  }

  /* Services Section */
  .services-section {
      padding: 90px 0 60px;
  }

  .section-pretitle {
      color: var(--primary-blue);
      font-weight: 600;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 5px;
  }

  .service-card {
      border: 1px solid #eaeaea;
      border-radius: 8px;
      padding: 12px;
      height: 100%;
      background: white;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  }

  .service-card.blue-card {
      background-color: var(--primary-blue);
      color: white;
      border: none;
  }

  .service-card p {
      font-size: 12px;
      font-weight: bold;
  }

  .service-card .badge {
      font-size: 8px;
  }

  .icon-box-lg {
      background: var(--primary-blue);
      color: white;
      width: 30px;
      height: 30px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
  }

  .blue-card .icon-box-lg {
      background: var(--accent-gold);
      color: var(--primary-blue);
  }

  .country-pill {
      border: 1px solid #f0f0f0;
      border-radius: 6px;
      padding: 15px 10px;
      text-align: center;
      background: var(--bg-light);
      height: 100%;
  }

  .country-pill h6 {
      margin: 0 0 5px 0;
      font-size: 15px;
      color: var(--text-dark);
  }

  .country-pill p {
      margin: 0;
      font-size: 11px;
      color: var(--text-light);
  }

  .feature-list {
      list-style: none;
      padding: 0;
  }

  .feature-list li {
      margin-bottom: 15px;
      font-size: 14px;
      display: flex;
      align-items: center;
  }

  .feature-list li i {
      color: var(--accent-gold);
      margin-right: 12px;
      font-size: 12px;
  }

  .btn-enroll {
      /* border: 1px solid rgba(255, 255, 255, 0.2); */
      color: var(--accent-gold);
      background: rgba(255, 255, 255, 0.05);
      font-weight: 500;
      padding: 12px;
      border: 1px solid var(--accent-gold);
      border-radius: 0;
  }

  /* CTA Banner */
  .cta-banner {
      background-color: var(--accent-gold);
      padding: 50px 0;
      text-align: center;
  }

  .cta-btn {
      background-color: var(--primary-blue);
      color: white;
      padding: 12px 25px;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      font-weight: 600;
      margin: 0 10px;
      transition: 0.3s;
      text-align: left;
  }

  .cta-btn.bg-dark {
      background-color: #1a1a1a !important;
  }

  .cta-btn i {
      background: white;
      color: var(--primary-blue);
      padding: 12px;
      border-radius: 4px;
      margin-right: 15px;
      font-size: 18px;
  }

  .cta-btn.bg-dark i {
      color: #1a1a1a;
  }

  /* Location */
  .location-section {
      padding: 20px 0;
      background: #fff;
  }

  .contact-info-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
  }

  .contact-info-list li {
      display: flex;
      margin-bottom: 25px;
      align-items: flex-start;
  }

  .contact-info-list .icon-box {
      background-color: var(--primary-blue);
      color: var(--accent-gold);
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      margin-right: 15px;
      flex-shrink: 0;
      font-size: 18px;
  }

  .img-with-btn {
      position: relative;
      /* border-radius: 8px; */
      overflow: hidden;
  }

  .btn-directions {
      position: absolute;
      bottom: 15px;
      right: 15px;
      background: white;
      color: var(--text-dark);
      padding: 10px 20px;
      border-radius: 4px;
      font-weight: 600;
      text-decoration: none;
      font-size: 13px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .btn-directions i {
      color: var(--primary-blue);
      margin-right: 8px;
  }

  /* Form Section */
  .contact-section {
      background-color: var(--primary-blue);
      color: white;
      padding: 80px 0;
      position: relative;
  }

  .dash-line {
      width: 30px;
      height: 2px;
      background: #666;
      margin-right: 15px;
  }

  .dash-line-gold {
      background: var(--accent-gold);
  }

  .form-wrapper {
      position: relative;
      padding: 15px 15px 15px 0;
  }

  .form-bg-shape {
      position: absolute;
      background: var(--accent-gold);
      width: 50px;
      height: 250px;
      bottom: 0;
      right: 0;
      z-index: 1;
  }

  .form-bg-shape-2 {
      position: absolute;
      background: var(--accent-gold);
      width: 250px;
      height: 50px;
      top: 0;
      left: -20px;
      z-index: 1;
  }

  .contact-form {
      background: white;
      padding: 35px;
      position: relative;
      z-index: 2;
  }

  .form-control {
      border: none;
      border-bottom: 1px solid #e0e0e0;
      border-radius: 0;
      padding: 12px 0;
      margin-bottom: 25px;
      font-size: 14px;
      box-shadow: none !important;
  }

  .form-control::placeholder {
      color: #999;
  }

  .btn-submit {
      background-color: var(--accent-gold);
      color: var(--text-dark);
      width: 100%;
      padding: 14px;
      font-weight: 600;
      font-size: 14px;
      border: none;
      border-radius: 4px;
  }

  /* Footer */
  .footer {
      background-color: var(--accent-gold);
      padding: 40px 0 20px;
      color: var(--text-dark);
  }

  .footer-links a {
      color: var(--text-dark);
      text-decoration: none;
      display: block;
      margin-bottom: 10px;
      font-weight: 500;
      font-size: 14px;
  }

  .footer-social a {
      color: var(--text-dark);
      margin-right: 15px;
      font-size: 18px;
  }

  /* =========================================
           MOBILE SPECIFIC STYLING (MATCHING IMAGE)
           ========================================= */
  @media (max-width: 991px) {

      .custom-container {
          padding: 10px !important;
      }

      .img-with-btn img {
          height: 300px !important;
      }

      .back-square {
          position: absolute !important;
          top: 540px !important;
          left: 0px !important;
          width: 45px !important;
          height: 601px !important;
          background-color: var(--accent-gold);
          transform: rotate(90deg) !important;
      }


      /* Hero Restructure */
      .hero-section {
          padding: 0;
          background: transparent;
      }

      .hero-mobile-bg-wrapper {
          position: relative;
          padding: 20px;
          height: 90vh;
          background-image: linear-gradient(rgba(27, 50, 86, 0.75), rgba(27, 50, 86, 0.85)), url('../images/Tru\ Blu\ Image.png');
          background-size: cover;
          background-position: center;
          color: white;
      }

      .hero-title {
          font-size: 1.5rem;
          line-height: 1.5;
      }

      /* Stats Overlap Match */
      .stats-container {
          bottom: 22px;
          width: 90%;
          padding: 15px 10px;
          border-radius: 4px;
      }

      .stat-item h3 {
          font-size: 18px;
      }

      .stat-item p {
          font-size: 10px;
      }

      /* Mobile Buttons Grid Area */
      .hero-mobile-buttons {
          background-color: var(--primary-blue);
          padding: 30px 0 30px;
          /* Pad top to clear stats */
      }

      .mobile-btn-grid .col-6,
      .mobile-btn-grid .col-4,
      .mobile-btn-grid .col-12 {
          padding: 4px;
      }

      .service-btn {
          padding: 12px 10px;
          font-size: 13px;
          justify-content: center;
      }

      .service-btn i {
          margin-right: 8px;
      }

      /* 3-col specific buttons */
      .col-4 .service-btn {
          padding: 10px 5px;
          font-size: 12px;
      }

      .col-4 .service-btn i {
          margin-right: 6px;
      }

      /* Services tweaks */
      .services-section {
          padding-top: 50px;
      }

      .country-pill {
          padding: 12px 5px;
      }

      /* CTA Section Stacking */
      .cta-banner {
          padding: 40px 0;
      }

      .cta-banner .d-flex {
          flex-direction: column;
          width: 100%;
          max-width: 350px;
          margin: 0 auto;
      }

      .cta-btn {
          margin: 8px 0;
          width: 100%;
      }

      /* Location ordering */
      .location-section .row {
          display: flex;
          flex-direction: column;
      }

      .location-text-col {
          order: 1;
          margin-bottom: 30px;
      }

      .location-img-col {
          order: 2;
      }

      /* Form Shape Offset */
      .contact-section {
          padding: 60px 0;
      }

      .form-wrapper {
          padding: 0 15px 15px 0;
          margin-top: 30px;
      }

      .form-bg-shape {
          display: block;
          width: 60px;
          height: 220px;
          bottom: 0px;
          /* left: 15px; */
          right: 0;
          /* bottom: auto; */
      }

      .form-bg-shape-2 {
          display: block;
          width: 220px !important;
          height: 60px !important;
          top: -13px !important;
          /* left: 15px; */
          left: 25 !important;
          /* bottom: auto; */
          left: -8px;
      }


      /* Footer Mobile Layout */
      .footer-row-mobile {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
      }

      .footer-links a {
          text-align: left;
          font-size: 13px;
      }
  }

  .back-square {
      position: absolute;
      top: 40px;
      left: 0px;
      width: 80px;
      height: 500px;
      background-color: var(--accent-gold);

  }

  .custom-container {
      padding: 40px;
  }

   .footer-row-mobile {
          display: flex ;
          justify-content: space-between;
      }

      .footer-links {
          display: flex;
          justify-content: space-between;
          gap: 20px;

      }

  @media (max-width: 768px) {
      .footer-row-mobile {
          display: block !important;
        
      }

      .footer-links {
          display: block !important;
         

      }
  }

  .toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 14px 20px;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    z-index: 9999;
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}
.toast.success {
    background: #28a745;
}
.toast.error {
    background: #dc3545;
}