
/* ====================================================
   INNER PAGE HERO & BREADCRUMBS
   ==================================================== */
.inner-page-hero {
    position: relative;
    /* 180px top padding ensures it completely clears your sticky navbar */
    padding: 180px 0 60px; 
    background-color: var(--color-dark-navy);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image & Gradient Overlay */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a cool parallax effect when scrolling */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Rich Navy to Green gradient overlay */
    background: linear-gradient(135deg, rgba(26, 43, 60, 0.92) 0%, rgba(26, 43, 60, 0.85) 50%, rgba(46, 204, 113, 0.4) 100%);
    z-index: 2;
}

/* Floating Decorative Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.15);
    filter: blur(40px);
    z-index: 2;
    animation: floatUpDown 6s infinite ease-in-out;
}
.hero-shape-1 { width: 300px; height: 300px; top: -100px; left: -100px; }
.hero-shape-2 { width: 250px; height: 250px; bottom: -50px; right: -50px; animation-delay: 2s; }

/* Title Styling */
.inner-page-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 15px;
}

/* --- Frosted Glass Breadcrumb --- */
.custom-breadcrumb {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Creates the frosted glass look */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px; /* Pill shape */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.custom-breadcrumb li {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.custom-breadcrumb a {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.custom-breadcrumb a:hover {
    color: var(--color-primary); /* Turns EVS green on hover */
}

.custom-breadcrumb .separator {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.custom-breadcrumb .current {
    color: var(--color-primary); /* The current page is highlighted in Green */
}

/* ====================================================
   RESPONSIVE ADJUSTMENTS
   ==================================================== */
@media (max-width: 991px) {
    .inner-page-hero {
        padding: 180px 0 80px;
    }
    .inner-page-title {
        font-size: 42px;
    }
    .custom-breadcrumb {
        padding: 10px 20px;
    }
    .custom-breadcrumb li {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .inner-page-hero {
        padding: 150px 0 60px; /* Clears mobile navbar */
    }
    .inner-page-title {
        font-size: 32px;
        margin-top: 50px;
    }
    .custom-breadcrumb {
        padding: 10px 15px;
        flex-wrap: wrap; /* Allows breadcrumbs to wrap if they get too long on tiny phones */
        justify-content: center;
        gap: 5px;
        border-radius: 12px; /* Less pill-like, more box-like on phones to save space */
    }
    .custom-breadcrumb .separator {
        margin: 0 5px;
    }
}
/* ====================================================
   LICENSE & PERMISSIONS ASSISTANCE SECTION
   ==================================================== */
.license-assistance-section {
    background-color: #ffffff;
    overflow: hidden; /* Prevents horizontal scroll from animations */
}

/* --- Image Styling & Continuous Float Animation --- */
@keyframes softFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.license-img-wrapper {
    border: 1px solid #eaeeee;
    animation: softFloat 6s ease-in-out infinite; /* Continuous slow float */
    overflow: hidden;
}

.license-img-wrapper img {
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.license-img-wrapper:hover img {
    transform: scale(1.08); /* Slow zoom inside the frame on hover */
}


/* --- Custom Styled Services List with Interactive Hover --- */
.evs-service-list {
    list-style: none; 
    padding: 0;
    margin: 0;
}

.evs-service-list li {
    position: relative;
    padding-left: 30px; 
    margin-bottom: 22px;
    font-size: 15.5px;
    color: #555555;
    line-height: 1.8;
    transition: transform 0.3s ease; /* Enables the smooth slide */
}

/* 1. Slide the text to the right on hover */
.evs-service-list li:hover {
    transform: translateX(10px);
}

/* The Custom EVS Green Bullet Point */
.evs-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px; 
    width: 10px;
    height: 10px;
    background-color: var(--color-primary); /* Starts EVS Green */
    border-radius: 50%; 
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2); 
    transition: all 0.3s ease; /* Smooth morphing */
}

/* 2. Make the bullet pop and turn Navy Blue on hover */
.evs-service-list li:hover::before {
    transform: scale(1.4); /* Zooms the bullet */
    background-color: var(--color-dark-navy); /* Turns Navy */
    box-shadow: 0 0 0 3px rgba(26, 43, 60, 0.15); /* Navy glow */
}

/* Style the bold titles to use your Dark Navy theme */
.evs-service-list li strong {
    color: var(--color-dark-navy);
    font-weight: 800;
    margin-right: 5px;
    transition: color 0.3s ease;
}

/* 3. Make the title turn Green on hover for contrast */
.evs-service-list li:hover strong {
    color: var(--color-primary);
}


/* ====================================================
   RESPONSIVE ADJUSTMENTS
   ==================================================== */
@media (max-width: 991px) {
    .license-img-wrapper img {
        height: 300px !important; 
    }
}

@media (max-width: 767px) {
    .license-assistance-section {
        padding: 60px 0;
    }
    .license-img-wrapper img {
        height: 250px !important; 
    }
    .evs-service-list li {
        font-size: 14.5px; 
        margin-bottom: 18px;
    }
    .main-heading-dark {
        font-size: 28px !important;
    }
    
    /* Reduce hover slide distance on mobile to prevent clipping */
    .evs-service-list li:hover {
        transform: translateX(5px);
    }
}

/* ====================================================
   GLOBAL PAGE LOAD & SCROLL REVEAL ANIMATIONS
   ==================================================== */

/* Initial Hidden States */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, opacity; /* Hardware acceleration */
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, opacity;
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform, opacity;
}

/* The Active State (Triggered by JavaScript) */
.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* Optional: Add slight delays if you want items side-by-side to load one after another */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }


.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 0rem !important;
}
.mb-5 {
    margin-bottom: 1rem !important;
}