body {
    margin: 0;
    padding: 0;
    background-color: #ECE8E7;
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://nmsadguru.org/temp/images/grainy.webp'); /* Updated path */
    background-size: 300px;
    background-repeat: repeat;
    background-attachment: fixed; /* Helps with performance */
    opacity: 0.25;
    pointer-events: none;
    z-index: -1;
}

/* Annual Report Section */
.annual-report {
    text-align: center;
    padding: 150px 20px;
    font-family: 'Manrope', sans-serif; /* Font family from Figma */
}

.header {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center;
    max-width: 500px;
    margin: auto;
    margin-bottom: -1.6rem;
    text-align: center;
}

.header h2 {
    color: #7452DE;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0; /* Remove margin-left to avoid shifting */
    padding-bottom: 3rem;
}



.view-all {
    text-decoration: none;
    font-size: 15px;
    color: #272727;
    font-weight: 600;
    text-align: right;
    margin-left: 3rem;

}

.subtext {
    font-size: 15px;
    color: #272727;
    margin: 10px 0 30px;
    font-weight: 600;
}

/* Report Container */
.report-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Wrapper to Stack Card and Content Vertically */
.report-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 340px; /* Matches card width */
}

/* Report Card */
.report-card {
    background: white;
    border-radius: 8px;
    width: 108%;
    overflow: hidden;
    text-align: center;
    padding: 13px;
    display: flex;
    flex-direction: column; /* Ensures elements stack when needed */
    align-items: center;
}

/* Top Section: Text + Image */
.report-top {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between; /* Aligns text and image */
}

/* Report Content (Text) */
.report-content {
    text-align: left;
    margin-bottom: -11rem;
}

.report-content h3 {
    font-size: 18.5px;
    color: #272727;
    font-weight: 600;
    text-align: left;
}

/* Image */
.report-card img {
    width: 65%; /* Adjust width as needed */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Year */
.report-year {
    width: 100%; /* Ensures it spans the full width */
    text-align: left; /* Aligns text to the left */
    margin-top: 6px;
}

.report-year h1 {
    font-size: 4.8rem;
    margin: 0;
    margin-bottom: -1rem;
    font-weight: 500;
    color: #272727;
}



/* Extra Content (Placed Directly Below Card) */
.report-extra-content {
    margin-top: 0px;
    text-align: left;
    width: 115%;
}

.report-extra-content p {
    text-align: left;
    width:75%;
    font-size: 12px;
    font-weight: 600;
    color: #272727;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: left;
    gap: 15px;
    margin-top: 10px;
}

.view-highlights {
    text-decoration: none;
    background-color: #7452DE;
    color: white;
    padding: 8px 15px;
    border-radius:40px;
    font-size: 14px;
    display: inline-block;
    border: 2px;
}

.view-highlights i {
    margin-left: 5px;
}

.download {
    text-decoration: none;
    color: #6a2c91;
    margin-left: auto;
}

/* Hover Effects */
.view-highlights:hover {
    background-color: #4e1f6a;
}

.download:hover {
    color: #4e1f6a;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .report-container {
        flex-direction: column;
        align-items: center;
        padding: 0.7rem;
    }
}

.container {
    font-family: 'Manrope', sans-serif; /* Font family from Figma */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0 auto; /* Centers the container */
    max-width: 1200px; /* Ensures the content doesn't stretch too much */
}

/* Left and Right divs */
.left {
    flex: 1;
    font-size: 36px;
    font-weight: bold;
    padding-right: 20px;
    text-align: center;
    margin-bottom: auto;
    margin-top: 1rem;
}

.right {
    flex: 1;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the content horizontally */
}

.right ol {
    text-align: left; /* Ensures text stays left-aligned */
    width: 100%; /* Prevents shrinking and keeps the list properly aligned */
    max-width: 500px; /* Optional: Adjusts content width for better readability */
}


/* Responsive Design: Stack elements vertically on small screens */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack items vertically */
        height: auto; /* Adjust height */
        text-align: center; /* Center-align text */
        padding-bottom: 7rem;
        margin-top: -4rem;
    }

    .left {
        padding-right: 0;
        margin-bottom: 20px; /* Space between sections */
                text-align:left;

    }

    .right ol {
        padding-left: 0; /* Align list properly */
        text-align:left;
    }
}


