        :root {
            /* Branding colors based on the Antek header and your forms */
            --bs-primary-dark: #212121; /* Dark Grey for Top Bar */
            --bs-brand-yellow: #fdd835; /* Primary Brand Yellow/Orange */
            --bs-primary: #ff5722;      /* Original Orange for consistency */
            --form-orange: #f5843a;     /* Booking button orange */
            --bs-light-bg: #f7f7f7;
            --bs-secondary: #333;
        }

        /* --- Global & Branding Styles --- */
        .btn-primary { background-color: var(--bs-primary); border-color: var(--bs-primary); }
        .btn-primary:hover { background-color: #e64a19; border-color: #e64a19; }
        .bg-light-gray { background-color: var(--bs-light-bg); }
        
        /* --- New Header Styles --- */
        .top-bar {
            background-color: #002273;
            color: #ddd;
            font-size: 0.85rem;
            padding: 8px 0;
        }
        .top-bar a, .top-bar span { color: #ddd; text-decoration: none; transition: color 0.3s; }
        .top-bar a:hover { color: white; }
        .main-header { padding: 10px 0; }
        
        /* LOGO STYLES */
        .logo-img { 
            height: 55px; /* Adjust size as needed */
            width: auto;
        }
        .logo-text {
            font-weight: 900;
            font-size: 1.8rem;
            color: var(--bs-secondary);
            display: none; /* HIDE the text when image is used */
        }
        .logo-container {
            display: flex;
            align-items: center;
        }

        .support-info { line-height: 1.2; color: var(--bs-secondary); }
        .support-number { font-size: 1.5rem; font-weight: 700; color: var(--bs-secondary); }
        .nav-link.active, .nav-link:hover { color: var(--bs-brand-yellow) !important; }
        .cta-button {
            background-color: var(--bs-brand-yellow);
            color: var(--bs-secondary);
            width: 80px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
            cursor: pointer;
        }
        .cta-button:hover { background-color: #f7b731; }

        /* --- Hero Section --- */
        .hero-section {
            background: url('https://via.placeholder.com/1920x800/212529/ffffff?text=SRI+LANKA+ADVENTURE') no-repeat center center;
            background-size: cover;
            height: 80vh;
            color: white;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
        }

        /* --- Booking Form Section --- */
        .booking-form-container {
            position: relative;
            z-index: 10;
            margin-top: -117px; /* Pull the form up over the hero section */

        }
        .booking-form-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        .whatsapp-btn {
            background-color: var(--form-orange);
            color: rgb(0, 0, 0);
            font-weight: bold;
            padding: 15px 0;
            border: none;
            background-color: var(--bs-brand-yellow);
        }
        .whatsapp-btn:hover { background-color: #002273; color: white; }

        /* --- Other Section Styles --- */
        .card-img-top { height: 200px; object-fit: contain; padding: 10px; }
        .feature-icon { font-size: 2rem; color: #ffc107; }
        .step-circle {
            width: 60px; height: 60px; line-height: 58px; font-size: 1.8rem;
            font-weight: bold; color: white; background-color: var(--bs-primary);
            border-radius: 50%; display: inline-block; margin-bottom: 15px; border: 2px solid white;
        }
/* --- Hero Section - STATIC IMAGE WITH NEW BACKGROUND --- */
.hero-section {
    /* Updated background image URL */
    background: url('..//images/slider.jpg') no-repeat center center;
    background-size: cover;
    height: 80vh; 
    min-height: 500px;
    color: white;
    display: flex;
    align-items: center;
    position: relative; 
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.123); /* Darker overlay for better text contrast */
    z-index: 0;
}
.hero-content {
    z-index: 1;
    margin: 0 auto;
}

.custom-toggler-icon {
    background-image: url("...") !important;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05); /* zoom on hover */
}

/* Fix image size */
.service-card .service-img {
    width: 100%;
    height: 250px; /* Adjust card height */
    object-fit: cover; /* Crop image neatly */
    border-radius: 12px;
}

/* Service label */
.service-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    font-size: 1.1rem;
    text-align: center;
    color: #fff;
    background: rgba(255, 128, 0, 0.9); /* orange background with transparency */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.reviews{
    background-color: #002273;
}

.permit-section {
  background: url('https://images.unsplash.com/photo-1526676037777-05b88c3bca6e') center/cover no-repeat;
  position: relative;
}

.permit-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.permit-section .container {
  position: relative;
  z-index: 2;
}

.permit-section .subtitle {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #000;
}

.permit-section .title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.permit-section .description {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 30px;
}

.call-btn {
  border-width: 2px;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background-color: #ffcc00;
  color: #000;
  border-color: #ffcc00;
}
.permit-img {
  width: 60%;         /* Adjust 50–90% as needed */
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  border: 2px solid #fff;
}
