  <style>
    :root {
      --primary-color: #2a5d84;
      --secondary-color: #f8b739;
      --accent-color: #e74c3c;
      --light-color: #f8f9fa;
      --dark-color: #343a40;
      --text-color: #333;
      --text-light: #6c757d;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      color: var(--text-color);
      overflow-x: hidden;
    }
    /* Ensure fast loading on slow connections */
img {
    loading:"lazy";
    width: 100%;
    height: auto;
}
    
    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
    }
    
    .navbar-brand img {
      height: 50px;
      transition: all 0.3s ease;
    }
    
    .navbar {
      padding: 15px 0;
      background-color: rgba(255,255,255,0.95) !important;
      box-shadow: 0 2px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }
    
    .navbar.scrolled {
      padding: 10px 0;
      background-color: rgba(255,255,255,0.98) !important;
    }
    
    .navbar.scrolled .navbar-brand img {
      height: 40px;
    }
    
    .nav-link {
      color: var(--primary-color) !important;
      font-weight: 500;
      padding: 8px 15px !important;
      margin: 0 5px;
      position: relative;
    }
    
    .nav-link:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--secondary-color);
      transition: width 0.3s ease;
    }
    
    .nav-link:hover:before {
      width: 100%;
    }
    
    .nav-link.active:before {
      width: 100%;
    }
    
    .btn-primary {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      padding: 8px 25px;
      border-radius: 30px;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
      background-color: #1d4565;
      border-color: #1d4565;
      transform: translateY(-2px);
    }
    
    .btn-secondary {
      background-color: var(--secondary-color);
      border-color: var(--secondary-color);
      color: #000;
      padding: 8px 25px;
      border-radius: 30px;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    
    .btn-secondary:hover {
      background-color: #e6a922;
      border-color: #e6a922;
      color: #000;
      transform: translateY(-2px);
    }
    
    /* Hero Banner */
    .hero-banner {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/banner.jpg');
      background-size: cover;
      background-position: center;
      height: 80vh;
      display: flex;
      align-items: center;
      color: white;
      position: relative;
    }
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    
    .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    }
    
    .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }
    
    /* Packages Section */
    .packages-section {
      padding: 80px 0;
      background-color: #f9f9f9;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    
    .section-title h1 {
      font-size: 2.5rem;
      color: var(--primary-color);
      position: relative;
      display: inline-block;
      margin-bottom: 15px;
    }
    
    .section-title h1:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--secondary-color);
    }
    
    .section-title h2 {
      font-size: 1.2rem;
      color: var(--text-light);
      font-weight: 300;
    }
    
    .package-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      margin-bottom: 30px;
    }
    
    .package-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
    
    .package-img {
      height: 200px;
      overflow: hidden;
    }
    
    .package-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .package-card:hover .package-img img {
      transform: scale(1.1);
    }
    
    .package-body {
      padding: 20px;
    }
    
    .package-body h3 {
      color: var(--primary-color);
      margin-bottom: 10px;
      font-size: 1.4rem;
    }
    
    .package-meta {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
      color: var(--text-light);
      font-size: 0.9rem;
    }
    
    .package-price {
      color: var(--accent-color);
      font-weight: 700;
      font-size: 1.2rem;
      margin: 10px 0;
    }
    
    .package-features {
      margin-bottom: 15px;
      font-size: 0.9rem;
    }
    
    .view-btn {
      display: inline-block;
      background-color: var(--primary-color);
      color: white;
      padding: 8px 20px;
      border-radius: 30px;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .view-btn:hover {
      background-color: var(--secondary-color);
      color: #000;
      transform: translateY(-2px);
    }
    
    /* Why Choose Us Section */
    .why-choose-us {
      padding: 80px 0;
      background-color: white;
    }
    
    .feature-box {
      text-align: center;
      padding: 30px 20px;
      border-radius: 10px;
      transition: all 0.3s ease;
      margin-bottom: 30px;
    }
    
    .feature-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .feature-icon {
      font-size: 3rem;
      color: var(--secondary-color);
      margin-bottom: 20px;
    }
    
    .feature-box h3 {
      color: var(--primary-color);
      margin-bottom: 15px;
    }
    
    /* Stats Section */
    .stats-section {
      padding: 60px 0;
      background: linear-gradient(rgba(42,93,132,0.9), rgba(42,93,132,0.9)), url('images/stats-bg.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: white;
    }
    
    .stat-item {
      text-align: center;
      padding: 30px 15px;
    }
    
    .stat-icon {
      font-size: 3rem;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }
    
    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    
    .stat-text {
      font-size: 1.1rem;
      opacity: 0.9;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .hero-content h1 {
        font-size: 2.8rem;
      }
    }
    
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.2rem;
      }
      
      .hero-content p {
        font-size: 1rem;
      }
      
      .section-title h1 {
        font-size: 2rem;
      }
    }
    
    @media (width: 576px) {
      .hero-banner {
        height: 70vh;
      }
      
      .hero-content h1 {
        font-size: 1.8rem;
      }
    }
  </style>