#section-banner {
    position: relative;
    background: url('../../images/banner.jpg') center/cover no-repeat;
    min-height: 91vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* The Dark Overlay */
#section-your-destination::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    /* Black color */
    opacity: 0.6;
    /* 60% dark - adjust this to make it darker/lighter */
    z-index: 1;
}

/* Make sure all content sits ON TOP of the dark overlay */
#section-your-destination .container {
    position: relative;
    z-index: 2;
}

#section-your-destination {
    position: relative;
    background: url('../../images/our_services.jpg') center/cover no-repeat;
    min-height: 91vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* The Dark Overlay */
#section-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    /* Black color */
    opacity: 0.6;
    /* 60% dark - adjust this to make it darker/lighter */
    z-index: 1;
}

/* Make sure all content sits ON TOP of the dark overlay */
#section-banner .container {
    position: relative;
    z-index: 2;
}

/* Optional: Round the carousel corners like your image */
.custom-carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Force all images to be the same height and cover the area */
.card-img-custom {
    height: 240px;
    object-fit: cover;
    width: 100%;
}

/* Create the hover "lift" effect */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    /* Moves card up slightly */
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    /* Stronger shadow on hover */
}

/* Truncate text after 3 lines (Webkit/Modern Browsers) */
.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 1. The Purple Icon Circle */
.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #5a5af3;
    /* The purple color from your screenshot */
    border-radius: 50%;
    /* Makes it a perfect circle */
    display: flex;
    align-items: center;
    /* Centers icon vertically */
    justify-content: center;
    /* Centers icon horizontally */
    box-shadow: 0 4px 10px rgba(90, 90, 243, 0.3);
    /* Soft purple shadow */
}

/* 2. Soft rounded corners for the card */
.rounded-4 {
    border-radius: 20px !important;
}

/* 3. Hover Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* 4. Text Color utility (if not using standard Bootstrap primary) */
/* .text-primary {
    color: #2c3e50 !important;
} */

:root {
    --brand-blue: #233355;
    --brand-gold: #fecb46;
    --brand-light-gold: #fff9e6;
    /* Very light yellow for icon bg */
}

/* Section Background */
.bg-brand-blue {
    background-color: var(--brand-blue);
}

/* TEXT UTILITIES */
.text-brand-gold {
    color: var(--brand-gold) !important;
}

.text-brand-blue {
    color: var(--brand-blue) !important;
}

/* MODERN CARD STYLING */
.feature-card {
    background: #fff;
    border: none;
    /* REMOVED THE BORDER */
    border-radius: 16px;
    /* Softer, rounder corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Hover Effect: Card moves up, shadow gets bigger */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Decorative Gold Line at top of card */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-gold);
    transform: scaleX(0);
    /* Hidden by default */
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
    /* Slide in on hover */
}

/* Modern Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--brand-light-gold);
    /* Soft background */
    color: var(--brand-blue);
    /* Dark icon for contrast */
    border-radius: 12px;
    /* Rounded square instead of circle */
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.feature-card:hover .icon-box {
    background-color: var(--brand-gold);
    color: #fff;
}

/* Overriding the header title color specifically to match screenshot blue */
h2.text-primary,
h5.text-primary,
h6.text-primary {
    color: #1a4fa0 !important;
}

/* Background Color (Dark Slate Blue) */
.footer-custom {
    background-color: #243b55;
    font-size: 0.95rem;
}

/* Light Blue Accent Color for titles/icons */
.section-title {
    color: #3498db;
}

/* Link Hover Effect */
.footer-link:hover {
    color: #3498db !important;
    padding-left: 5px;
    transition: all 0.3s ease;
}

/* Round Social Buttons */
.btn-social {
    background-color: rgba(255, 255, 255, 0.1);
    /* See-through white */
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background-color: #3498db;
    transform: translateY(-3px);
}



.sticky-top-card {
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    z-index: 90;
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid #e9ecef;
}

.timeline-dot {
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    background: #0d6efd;
    border-radius: 50%;
    border: 2px solid white;
}

.gallery-grid-container {
    height: 400px;
    cursor: pointer;
}

.object-fit-cover {
    object-fit: cover;
}

.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.03);
    filter: brightness(0.95);
}

/* WhatsApp Button Color */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

body {
    padding-bottom: 80px;
}

/* Space for mobile bar */
@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}