/* ====================================================
   ESG INTRO SECTION - UPDATED
   ==================================================== */
.py-5 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}
.esg-intro-section {
    background-color: var(--color-white);
    overflow: hidden;
    padding-top: 10px; 
}


.esg-intro-section .reveal-left {
   
    padding-bottom: 20px; 
}

/* ---  Image Size --- */
.esg-img-wrapper {
    z-index: 1;
    margin-top: 10px; 
    max-width: 85%; 
    margin-left: auto; 
    margin-right: auto;
}

/* Adds a decorative green blob behind the image to make it dynamic */
.shape-blob {
    position: absolute;
    width: 80%;
    height: 80%;
    background-color: rgba(46, 204, 113, 0.15); 
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -10%;
    right: -10%;
    z-index: 0;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* ====================================================
   ESG RESPONSIVE FIXES (Add to your Media Queries)
   ==================================================== */
   @media (min-width: 992px) {
    .py-lg-5 {
        padding-top: 2rem !important;
        padding-bottom: 0rem !important;
    }
}
@media (max-width: 991px) {
    .esg-img-wrapper {
        margin-top: 10px;
        max-width: 95%;
        margin-bottom: 40px; 
    }
    .esg-intro-section .reveal-left {
        padding-bottom: 0px; 
    }
}

@media (max-width: 767px) {
    .esg-img-wrapper {
        max-width: 100%; 
    }
    
}
/* ====================================================
   ESG GOALS SECTION (Interactive List)
   ==================================================== */
.esg-goals-section {
    background-color: #f8fafc; 
    padding: 30px 0;
}

.esg-category-block {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.esg-category-block:hover {
    border-top-color: var(--color-primary); 
}

.category-icon {
    font-size: 35px;
    color: var(--color-primary);
}

.category-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-dark-navy);
}

/* --- Interactive List Rows --- */
.esg-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.esg-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
    cursor: default;
}

.esg-list-item:hover {
    background-color: #e8eef2; /* Changes to faint green on hover */
    transform: translateX(10px); /* Slides slightly right */
    border-color: rgba(46, 204, 113, 0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);

}

/* Round Checkmark Icon */
.esg-check-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-top: 2px;
}

.esg-item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark-navy);
    margin-bottom: 8px;
}

.esg-item-desc {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* ====================================================
   RESPONSIVE ADJUSTMENTS
   ==================================================== */
@media (max-width: 991px) {
    
    
    
    .esg-category-block {
        padding: 40px 30px;
    }
    .category-title {
        font-size: 26px;
    }

}

@media (max-width: 767px) {
    .esg-intro-section h1 {
        font-size: 36px;
    }
    .esg-category-block {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    .category-icon {
        font-size: 28px;
    }
    .category-title {
        font-size: 22px;
    }
    .esg-list-item {
        padding: 20px 15px;
        flex-direction: column; /* Stack icon on top of text on very small screens */
        gap: 15px;
    }
    .esg-list-item:hover {
        transform: translateY(-5px); /* Slide up instead of right on mobile */
    }
}




/* ====================================================
   INNER PAGE HERO & BREADCRUMBS
   ==================================================== */
.inner-page-hero {
    position: relative;
    /* 180px top padding ensures it completely clears your sticky navbar */
    padding: 200px 0 100px; 
    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;
    }
}


.py-5 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}
.mb-5 {
    margin-bottom: 1rem !important;
}