@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,700;0,800;1,500&family=Roboto:wght@300;400;500;700;800;900&display=swap");

/* General Body Styles */
body {
    background-color: #F1F1F1;
    /* Main background color for the entire site */
    color: #333;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', 'Montserrat';
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

/* Style for the main cover section */
#main-cover {
    background-image: url('../images/cover.png');
    /* Adjust the path if necessary */
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    /* height: 100vh; */
    /* Full viewport height */
    display: flex;
    align-items: center;
    /* Vertically center content */
    justify-content: center;
    /* Horizontally center content */
    text-align: center;
    background-color: #F1F1F1;
    /* Match the site's main background color */
    border: none;
    /* Remove any borders */
    margin: 0;
    /* Remove any margins */
    padding: 0;
    /* Remove any padding */
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Header and Navigation */


.main-header {
    background: #f6f6f6;
    border-bottom: 1px solid #eee;
    padding: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 18px 2vw 10px 2vw;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;

}

.logo img {
    height: 65px;
    width: auto;
}

.logo-text {
    font-size: 15px;
    color: #888;
    line-height: 1.1;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.main-nav .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .nav-links li a {
    color: #222;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Montserrat', Arial, sans-serif;
}

.main-nav .nav-links li a:hover {
    color: #8DC63F;
    transform: translateY(-3px);
    display: inline-block;
}

.download-pdf-btn {
    background-color: #0F9D58;
    color: #fff;
    padding: 8px 30px 8px 30px;
    border-radius: 42px;
    font-size: 1.0rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(141, 198, 63, 0.08);
    margin-left: auto;
}

.download-pdf-btn:hover {
    background-color: #7bbf36;
}

.download-icon {
    background: #fff;
    color: #8DC63F;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-left: 8px;
}

@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 4vw 8px 4vw;
    }

    .main-nav .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .download-pdf-btn {
        align-self: flex-end;
        margin-top: 10px;
    }

    .logo {
        margin-bottom: 5px;
    }
}

@media (max-width: 600px) {
    .header-container {
        padding: 10px 2vw 6px 2vw;
    }

    .logo img {
        height: 48px;
    }

    .logo-text {
        font-size: 12px;
    }

    .main-nav .nav-links li a {
        font-size: 12px;
    }

    .download-pdf-btn {
        font-size: 1rem;
        padding: 10px 20px 10px 16px;
    }

    .download-icon {
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .main-nav .nav-links {
        display: none;
    }
}



/* Main Cover Section */
.main-cover-section {
    height: 70vh;
    /* Adjust as needed */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
    justify-content: flex-end;
    /* Align content to right */
    padding: 50px;
    position: relative;
}

.report-title-card {
    background-color: rgba(141, 198, 63, 0.9);
    /* Semi-transparent green */
    padding: 30px;
    color: white;
    width: 350px;
    /* Adjust as per Figma */
    text-align: center;
}

.report-title-card .report-logo {
    height: 60px;
    /* Adjust */
    margin-bottom: 15px;
}

.report-title-card h2 {
    font-size: 24px;
    margin: 0 0 10px 0;
    font-weight: bold;
    line-height: 1.2;
}

.report-title-card .year {
    font-size: 72px;
    /* Large year */
    font-weight: bold;
    line-height: 1;
}

/* CEO Message Section */


/* CEO Message Section */
.ceo-message-section {
    padding: 60px 20px;
    background-color: #F1F1F1;
    /* Match the site's main background color */
    display: flex;
    justify-content: center;
    align-items: center;
}

.ceo-message-container {
    background-color: white;
    border-radius: 20px;
    background-image: url('../images/water color3.png');
    background-position: -10px;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 40px;
    position: relative;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    overflow: visible;
}

.ceo-message-container .quote-icon {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 80px;
    height: 80px;
    z-index: 2;
}

.quote-icon img {
    height: 70px;
    opacity: 1;
    /* Ensure full visibility */
}

.ceo-message-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.read-full-message {
    color: #8DC63F;
    /* Green color */
    text-decoration: underline;
    font-weight: bold;
    display: block;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.read-full-message:hover {
    transform: translateX(5px);
}

.ceo-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.ceo-info img {
    height: 150px;
    border-radius: 50%;
    margin-right: 20px;
    transition: transform 0.3s;
}

.ceo-info img:hover {
    transform: scale(1.05);
}

.ceo-info h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #333;
}

.ceo-info p {
    margin: 0;
    font-size: 14px;
    color: #777;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .ceo-message-container {
        padding: 20px;
    }

    .quote-icon {
        top: -20px;
        right: -10px;
        height: 60px;
    }

    .quote-icon img {
        height: 50px;
    }

    .frame-image {
        left: -30px;
        height: 80%;
    }

    .ceo-message-container p {
        font-size: 14px;
    }

    .ceo-info img {
        margin-right: 10px;
    }

    .ceo-info h4 {
        font-size: 16px;
    }

    .ceo-info p {
        font-size: 12px;
    }
}

/* Mission, Vision, Mandate Section */
.mission-vision-mandate-section {
    padding: 60px 20px;
    background-color: #F1F1F1;
    text-align: center;
}

.mission-vision-mandate-section .card-group {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.mission-vision-mandate-section .card {
    background-color: #0F9D58;
    border-top-left-radius: 14px !important;
    border-top-right-radius: 14px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 365px;
    flex: 1;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mission-vision-mandate-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.mission-vision-mandate-section .card img {
    width: 100%;
    height: auto;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    transition: transform 0.3s;
}

.mission-vision-mandate-section .card:hover img {
    transform: scale(1.05);
}

.mission-vision-mandate-section .card-content {
    padding: 20px;
    color: white;
}

.mission-vision-mandate-section .card-content h3 {
    margin-top: 0;
    font-size: 24px;
    font-weight: bold;
}

.mission-vision-mandate-section .card-content hr {
    width: 50px;
    margin: 15px auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.mission-vision-mandate-section .card-content p {
    font-size: 16px;
    line-height: 1.5;
}

.learn-more-link {
    display: inline-block;
    margin-top: 30px;
    color: #8DC63F;
    text-decoration: underline;
    font-weight: bold;
    transition: transform 0.3s;
}

.learn-more-link:hover {
    transform: translateX(5px);
}

/* ITFC Values Section */
.ITFCValue {
    padding: 60px 20px;
    background-color: white;
}

.global-development-agenda {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.agenda-text {
    flex: 1;
    min-width: 300px;
}

.agenda-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.agenda-text .highlight {
    color: #8DC63F;
}

.agenda-text ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.agenda-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.agenda-text ul li:before {
    content: "•";
    color: #8DC63F;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -5px;
}

.agenda-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.sdg-wheel {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.sdg-wheel:hover {
    transform: rotate(10deg);
}

/* Executive Summary Section */
.executive-summary-section {
    padding: 60px 20px;
    position: relative;
}

.left-spot {
    position: relative;
    background-image: url('../images/green water color.png');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}

.green-spot {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background-color: rgba(141, 198, 63, 0.2);
    border-radius: 50%;
    z-index: -1;
}

.summary-content {
    position: relative;
    z-index: 1;
}

.video-player {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.video-player:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(141, 198, 63, 0.8);
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-play:hover {
    background-color: #8DC63F;
    transform: scale(1.1);
}

/* SDG Goals Section */
.section__sdg-goals {
    padding: 60px 20px;
    background-color: #F1F1F1;
}

.Section-header-01 {
    margin-bottom: 40px;
}

.sdg-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 380px;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
    cursor: pointer;
}

.sdg-item:hover {
    transform: translateY(-10px);
}

.sdg-item .number {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
}

.sdg-item .goal-number {
    font-size: 14px;
    margin-bottom: 5px;
}

.sdg-item .goal {
    font-size: 18px;
    font-weight: bold;
}

.sdg-item .item-img {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
}

.sdg-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sdg-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.sdg-item:hover .sdg-hidden {
    opacity: 1;
}

.sdg-hidden p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.highlight-figure {
    font-size: 20px;
    font-weight: bold;
    color: #8DC63F;
    margin-top: 10px;
}

.normal-text {
    color: white;
    margin-top: 10px;
}

.more-info {
    background-color: #8DC63F;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s;
    margin-top: 10px;
    align-self: flex-end;
}

.more-info:hover {
    background-color: #7bbf36;
}

/* SDG Modal Styles */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background-color: #8DC63F;
    color: white;
    border-bottom: none;
}

.modal-title {
    font-weight: bold;
}

.btn-close {
    color: white;
}

.modal-body {
    padding: 30px;
}

.modal-body h4 {
    color: #8DC63F;
    margin-bottom: 20px;
}

.modal-body ul {
    list-style-type: none;
    padding: 0;
}

.modal-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-body ul li:before {
    content: "•";
    color: #8DC63F;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -5px;
}

.modal-footer {
    border-top: none;
}

.btn-secondary {
    background-color: #8DC63F;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7bbf36;
}

/* Spotlights Section */
.spotlights-section {
    padding: 60px 20px;
    background-color: white;
}

.spotlight-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.spotlight-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.spotlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.spotlight-image {
    height: 200px;
    overflow: hidden;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.spotlight-card:hover .spotlight-image img {
    transform: scale(1.1);
}

.spotlight-text {
    padding: 20px;
}

.spotlight-text h4 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.spotlight-text a {
    color: #8DC63F;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s;
}

.spotlight-text a:hover {
    transform: translateX(5px);
}

/* What is ADER Section */
.what-is-ader-section {
    padding: 60px 20px;
    background-color: #F1F1F1;
}

.ader-content-left h1 {
    font-size: 36px;
    margin: 0;
    color: #333;
}

.ader-highlight {
    font-size: 75px;
    font-weight: bold;
    color: #8DC63F;
    margin-left: 0px;
}

.subtitle {
    font-size: 18px;
    color: #777;
    margin-top: 5px;
    margin-bottom: 30px;
}

.ader-reports-stack {
    margin-top: 30px;
}

.ader-content-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* BlueMark Section */
.bluemark-section {
    background-color: white;
}

.bluemark-logo-col {
    text-align: center;
    margin-bottom: 30px;
}

.link {
    color: #8DC63F;
    text-decoration: underline;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.link:hover {
    transform: translateX(5px);
}

/* Footer Styles */
.itfc-footer {
    background-color: #333;
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 80px;
    margin-bottom: 15px;
}

.footer-org {
    font-size: 16px;
    line-height: 1.5;
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #8DC63F;
}

.footer-contact {
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-contact a {
    color: #8DC63F;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}

.footer-getintouch {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s;
}

.footer-social a:hover {
    background-color: #8DC63F;
    transform: translateY(-5px);
}

.footer-links {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}

.footer-links li a:hover {
    color: #8DC63F;
    transform: translateX(5px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0 0 30px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #aaa;
}

.footer-policies {
    font-size: 14px;
}

.footer-policies a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-policies a:hover {
    color: #8DC63F;
}

/* Loading Screen */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F1F1F1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

#loading img {
    width: 150px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F1F1F1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader {
    display: flex;
    gap: 15px;
}

.circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #8DC63F;
    animation: bounce 1.5s infinite ease-in-out;
}

.circle.one {
    animation-delay: 0s;
}

.circle.two {
    animation-delay: 0.2s;
}

.circle.three {
    animation-delay: 0.4s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .global-development-agenda {
        flex-direction: column;
    }

    .agenda-image {
        order: -1;
    }

    .sdg-wheel {
        max-width: 300px;
    }

    .sdg-item {
        height: 350px;
    }

    .what-is-ader-section .container {
        flex-direction: column;
        gap: 30px;
    }

    .ader-content-left {
        text-align: center;
    }

    .bluemark-section .container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-row {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
}

/* Animation Styles */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade"] {
    opacity: 0;
}

[data-aos="fade"].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="zoom-out"] {
    transform: scale(1.1);
}

[data-aos="zoom-out"].aos-animate {
    transform: scale(1);
}

/* Animation Durations */
[data-aos][data-aos-duration="1000"] {
    transition-duration: 1000ms;
}

[data-aos][data-aos-duration="1500"] {
    transition-duration: 1500ms;
}

[data-aos][data-aos-duration="2000"] {
    transition-duration: 2000ms;
}

/* Animation Delays */
[data-aos][data-aos-delay="100"] {
    transition-delay: 100ms;
}

[data-aos][data-aos-delay="200"] {
    transition-delay: 200ms;
}

[data-aos][data-aos-delay="300"] {
    transition-delay: 300ms;
}

[data-aos][data-aos-delay="400"] {
    transition-delay: 400ms;
}

[data-aos][data-aos-delay="500"] {
    transition-delay: 500ms;
}

[data-aos][data-aos-delay="600"] {
    transition-delay: 600ms;
}

[data-aos][data-aos-delay="700"] {
    transition-delay: 700ms;
}

[data-aos][data-aos-delay="800"] {
    transition-delay: 800ms;
}

[data-aos][data-aos-delay="900"] {
    transition-delay: 900ms;
}

[data-aos][data-aos-delay="1000"] {
    transition-delay: 1000ms;
}

/* Show one card per row on mobile */
@media (max-width: 767.98px) {
    /* .card-group {
        flex-direction: column !important;
        align-items: stretch;
    }

    .card-group .card {
        width: 100% !important;
        margin-bottom: 1.5rem;
    } */


    .card-group {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
        /* adjust as needed */
    }

    .card {
        width: 100%;
        box-sizing: border-box;
        border-radius: 16px;
        /* other card styles */
    }

}

@media (max-width: 575.98px) {
    #main-cover {
        background-image: url('../images/Cover-mobile.png') !important;
        background-size: cover;
        background-position: center;
    }

    .ceo-message-container {
        background-position: left top !important;
        background-size: 0% auto !important;
        padding: 20px !important;
    }

    .left-spot {
        background-size: 0% auto !important;
    }

    .executive-summary-section {
        margin: -23px;

    }

    .green-spot {
        width: 240px;
        height: 240px;

    }

}

.dropdown {
    margin-left: 30px;
}

/* Make the modal and video larger */
#executiveSummaryVideoModal .modal-dialog {
    max-width: 1400px; /* Increase as needed */
}

#executiveSummaryVideoModal .ratio {
    min-height: 600px; /* Increase as needed */
}
