/* ==========================================
   GLOBAL STYLES & RESET
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* Color Palette */
    --primary-navy: #212B55;
    --secondary-navy: #2c3e67;
    --dark-navy: #212B55;
    --light-blue: #c9e5f5;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e8e8e8;
    --dark-gray: #212B55;
    --text-gray: #212B55;
    --green-accent: #4a7c59;
    --teal: #00BCD4;
    --pink: #E91E63;
    --purple: #9C27B0;
    --yellow: #FFC107;
    
    /* Typography */
    /*--font-primary: 'Arial', 'Helvetica', sans-serif;*/
    /*--font-size-base: 16px;*/
    /*--line-height-base: 1.6;*/
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-xxl: 50px;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 20px;
}

body {
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    /*display: block;*/
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

p{
     font-family: 'GT-Walsheim-Light';
     font-weight: 300;
    line-height: 130%;
}


/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-block;
    padding: 9.5px 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 0px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: none;
}


.btn-primary, .btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-navy);
    border: 2px solid var(--white);
}


.btn-secondary, .btn-secondary:hover{
    background-color: var(--primary-navy);
    color: var(--white);
    border: 2px solid var(--primary-navy);
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
     color: var(--primary-navy);
    background-color: var(--white)  !important;
    border-color: transparent;
}
.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle {
     background-color: var(--primary-navy);
    color: var(--white);
    border-color: transparent;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
}
.btn-secondary.focus, .btn-secondary:focus {
    color: #fff;
    background-color:  var(--primary-navy);
   border-color: transparent;
}

/* ==========================================
   ESG HERO SECTION
   ========================================== */
   
   .esgOnly .topheading_bannersection {
    margin: 160px auto 60px;
}

.esg-hero {
    background-color: var(--primary-navy);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.esg-title {
    font-size: 40px;
    font-family: 'GT-Walsheim-Bold';
    line-height: 120%;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.esg-subtitle {
    font-size: 15px;
    color: var(--white);
    max-width: 800px;
    font-weight: 300;
    line-height: 130%;
     font-family: 'GT-Walsheim-Light';
}

/* ==========================================
   IMAGE GALLERY SECTION
   ========================================== */

.image-gallery {
    padding: 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    /*height: 250px;*/
    object-fit: cover;
    /*transition: transform 0.3s ease;*/
}

/*.gallery-item:hover img {*/
/*    transform: scale(1.05);*/
/*}*/

/* ==========================================
   REPORTS SECTION
   ========================================== */

.reports-section {
    padding: 33px 30px 50px ;
    background-color: var(--white);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.report-card {
    background-color:  #F5F6FA;
    border-radius: 5px;
    overflow: hidden;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.report-card-primary {
    background-color: var(--primary-navy);
    color: var(--white);
}

.report-image {
    width: 100%;
    height: fit-content;
    overflow: hidden;
}

.report-image img {
    width: 100%;
    /*height: 100%;*/
    /*object-fit: cover;*/
    padding: 30px 38px 0;
}

.report-content {
    padding: 17px 38px 30px;
}

.report-title {
    font-family: 'GT-Walsheim-Bold';
    font-size: 30px;
    font-style: normal;
    /*font-weight: 700;*/
    line-height: 100%;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-navy);
}

.report-card-primary .report-title {
    color: var(--white);
}

.report-description {
    font-size: 15px;
    /*line-height: 1.6;*/
    margin-bottom: var(--spacing-md);
    color: var(--dark-navy);
}

.report-card-primary .report-description {
    color: var(--white);
}

/* ==========================================
   CDP BANNER SECTION
   ========================================== */

.cdp-banner {
    background-color: #C4DEF5;
    padding: 34px 0;
}

.cdp-content {
    max-width: 1000px;
}

.cdp-badge {
    display: inline-block;
}

.badge-label {
    background: #00AFAA;
    color: var(--white);
    padding: 7px 10px;
    font-size: 12px;
    /*font-weight: 700;*/
    font-family: 'GT-Walsheim-Bold';
}

.cdp-title {
    font-size: 22px;
    font-family: 'GT-Walsheim-Bold';
    /*font-weight: 700;*/
    color: var(--primary-navy);
    margin: 25px 0 15px;
}

.cdp-description {
    font-size: 15px;
    color: var(--dark-gray);
    margin: 0;
}

/* ==========================================
   CONTENT SECTION
   ========================================== */

.section-content-main {
    padding: 25px 0 50px;
    background-color: #F5F6FA;
}
.content-section {
    padding: 25px 0 0;
    
}

.content-section-white {
    background-color: var(--white);
}

.section-content-wrapper {
    background-color: #FFF;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-heading {
    font-size: 24px;
    font-family: 'GT-Walsheim-Bold';
    /*font-weight: 700;*/
    color: var(--primary-navy);
    margin-bottom: 0;
    line-height: normal;
}

.section-subheading {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
}

.content-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.content-item {
    background-color: transparent;
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.content-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.content-text-wrapper {
    flex: 1;
}

.content-title {
    font-size: 15px;
    font-family: 'GT-Walsheim-Bold';
    color: var(--primary-navy);
    margin-bottom: 4.5px;
}

.content-text {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

.link-arrow {
    color: var(--primary-navy);
    font-weight: 400;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    border-bottom: 2px solid var(--primary-navy);
    padding-bottom: 2px;
    font-family: Arial;
}

.link-arrow:hover {
     font-weight: 700;
     text-decoration: none;
     color: var(--primary-navy);
}

/* ==========================================
   RESPONSIBLE BUSINESS SECTION
   ========================================== */

.responsible-business {
    padding: var(--spacing-xl) 0;
    background-color: #C4DEF5;
}

.section-title-center {
    font-size: 30px;
     font-family: 'GT-Walsheim-Bold';
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 25px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.business-card {
    background-color: var(--white);
    padding: 35px 22px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.business-card-title {
    font-size: 24px;
     font-family: 'GT-Walsheim-Bold';
    color: var(--primary-navy);
    margin-bottom: 16px;
    line-height: 28px;
}

.disclosure-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}
.btn{
    font-family: Arial;
}

.disclosure-list li:last-child {
    border-bottom: none;
}

.disclosure-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #212b55;
    transition: all 0.3s ease;
    cursor: pointer;
}

.disclosure-link:hover {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
    margin: 0 calc(-1 * var(--spacing-sm));
    text-decoration: none;
}

.disclosure-link:hover .disclosure-text {
    color: var(--primary-navy);
}

.disclosure-link:hover .pdf-badge {
    background-color: var(--primary-navy);
}

.disclosure-text {
    font-size: 15px;
     font-family: 'GT-Walsheim-Light';
    color: var(--dark-gray);
    transition: color 0.3s ease;
    border-bottom: 1px solid #212B55;
    line-height: 19.5px;
}

.file-size {
    font-size: 15px;
     font-family: 'GT-Walsheim-Light';
    color: var(--text-gray);
}

.business-card-text {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 35px;
}

/* ==========================================
   DISCOVER SECTION
   ========================================== */

.discover-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--primary-navy);
}

.section-title-white {
    color: var(--white);
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    max-width: 1060px;
    margin: 0 auto;
}

.discover-card {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.discover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.discover-icon {
    margin-bottom: var(--spacing-md);
}

.discover-icon svg {
    width: 48px;
    height: 48px;
}

.discover-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-navy);
    line-height: 1.4;
}

/* ==========================================
   RESPONSIVE DESIGN - TABLET
   ========================================== */

@media (min-width:768px) and (max-width: 1024px) {
    .esgOnly .topheading_bannersection{
    margin: 110px auto 60px;
}
    .esg-title {
        font-size: 40px;
    }
    
    .esg-subtitle {
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-md);
    }
    
    .reports-grid {
        gap: var(--spacing-md);
    }
    
    .reports-section {
    padding: 33px 0px 50px;
    }
    
    .report-image img{
    padding: 30px 20px 0;
    }
    .report-content {
    padding: 17px 20px 30px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .cdp-title {
        font-size: 22px;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .discover-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE
   ========================================== */

@media (max-width: 767px) {
    .gallery-item:nth-child(2), .gallery-item:nth-child(4) {
    display: none;
}
    .esg-hero {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }
    
    .esg-title {
        font-size: 32px;
        margin-bottom: var(--spacing-sm);
    }
    
    .esg-subtitle {
       padding: 0 40px;
    }
    
    .image-gallery {
        padding: var(--spacing-md) 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .reports-section {
        padding: var(--spacing-md) 40px;
    }
    
    .report-content {
        padding: var(--spacing-md);
    }
    
    .report-title {
        font-size: 22px;
    }
    
    .report-description {
        font-size: 15px;
    }
    .reports-grid {
    grid-template-columns: 1fr;
}
.report-image img {
    padding: 21px 20px 0;
}
.cdp-content {
    padding: 0 40px;
}
.section-content-wrapper {
    padding: 25px 40px;
    border-radius: 0;
}
    
    .cdp-banner {
        padding: var(--spacing-md) 0;
    }
    
    .cdp-title {
        font-size: 22px;
    }
    
    .cdp-description {
        font-size: 15px;
    }
    
    .content-section {
        padding: 20px 0 0;
    }
    .section-content-main {
    padding: 5px 0 25px;
}
    
    .section-heading {
        font-size: 24px;
    }
    
    .section-subheading {
        font-size: 15px;
    }
    
    .content-title {
        font-size: 15px;
    }
    
    .content-item {
        padding-bottom: var(--spacing-sm);
    }
    
    .responsible-business {
        padding: var(--spacing-lg) 0;
    }
    
    .section-title-center {
        font-size: 30px;
        margin-bottom: var(--spacing-md);
    }
    
    .business-card {
        padding: 25px 40px;
        border-radius: 0;
    }
    
    .business-card-title {
        font-size: 24px;
    }
    .disclosure-list {
    margin-bottom: 0;
}
    
        .disclosure-link {
               align-items: center;
        gap: 10px;
        width: 80%;
    }
 .pdf-icons {
    width: 20%;
    display: flex;
    gap: 5px;
}
    
    .discover-section {
        padding: var(--spacing-lg) 0;
    }
    
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .discover-card {
        padding: var(--spacing-md);
        min-height: 140px;
    }
    
    .discover-card-title {
        font-size: 14px;
    }
    
    .discover-icon svg {
        width: 40px;
        height: 40px;
    }
    .business-grid {
    grid-template-columns: 1fr;
}
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 0;
    outline-offset: 2px;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.esgOnly .breadcrumb li, .esgOnly .breadcrumb li a, .esgOnly .breadcrumb span {
    color: #212B55;
 } 
 .esgOnly .heroexebanner_with_image_divtxt {
    min-height: 200px;
    padding: 52px 0;
}

@media screen and (max-width: 767px) {
    .esgOnly .esg-discover-section {
        margin-top: 0;
    }
      .esgOnly  .discover-title {
        margin-bottom: 20px;
        line-height: 28px;
    }
}

@media (min-width: 1025px) and (max-width: 1100px){
    .discover-grid {
    column-gap: 20px !important;
}
}

.btn-primary.focus, .btn-primary:focus {
    color: #212b55;
    background-color: #fff;
        border-color: transparent;
}