/* Define the custom font using @font-face */
@font-face {
    font-family: 'FuturaBoldItalic';
    src: url('https://cdn.glitch.global/79b3fc14-ada4-4089-83ff-953f22e44797/Futura%20Bold%20Italic%20font.ttf?v=1726270885030') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SourceSansPro-Semibold'; /* Give your new font a name */
    src: url('https://cdn.glitch.global/79b3fc14-ada4-4089-83ff-953f22e44797/SourceSansPro-Semibold.otf?v=1726274815814') format('truetype'); /* URL to your font file */
    font-weight: normal; /* Define the weight */
    font-style: normal;   /* Define the style */
}


/* Global styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #015476;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Ensure header has a fixed height */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px; /* Set a fixed height for the header */
    background-color: rgb(1, 84, 118, 0.9);
    padding: 10px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Adjust the header content to properly center the image */
.header-content {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    position: relative;
    height: 100%; /* Make sure it takes up the full height of the header */
    align-items: center;
}

/* Adjust the logo size to ensure it stays within the header */
header .logo {
    max-height: 100%; /* Constrain the logo to the header's height */
    max-width: 350px; /* Set a maximum width to avoid horizontal overflow */
    height: auto; /* Maintain aspect ratio */
    width: auto; /* Maintain aspect ratio */
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Center the image */
}

.menu-btn {
    font-size: 1.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-btn:focus {
    outline: none;
}

.menu-btn i {
    font-size: 2rem;
}

/* Side Menu styles */
.side-menu {
    position: fixed;
    left: -300px;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #015476;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 2000;
}

/* When the side menu is open */
.side-menu.open {
    left: 0;
}

/* Close Button */
.close-btn {
    font-size: 1.5rem;
    color: #fff;
    background: none;
    border: none;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

/* Menu List Styles */
.menu-list {
    margin-top: 60px; /* Moves the menu items further down */
    list-style-type: none;
    padding: 0;
}

.menu-list li {
    margin-bottom: 20px;
}

/* Styling for menu links */
.menu-list li a {
    display: flex;
    align-items: center; /* Align icon and text */
    padding: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.menu-list li a i {
    margin-right: 10px; /* Spacing between icon and text */
    font-size: 1.5rem;
}

/* Hover effect on menu links */
.menu-list li a:hover {
    background-color: #E8B421;
}

/* Overlay for background darkening */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    z-index: 1999;
    visibility: hidden;
}

.overlay.active {
    background-color: rgba(0, 0, 0, 0.5);
    visibility: visible;
}

.overlay.fade-out {
    background-color: rgba(0, 0, 0, 0);
}

/* Add button margin for small screens */
@media (max-width: 768px) {
    .menu-list {
        margin-top: 80px; /* More spacing on mobile */
    }

    .menu-list li a {
        font-size: 1.5rem;
    }
}

/* Hero Section with Static Background Image */
.hero {
    height: 100vh; /* Full height */
    background: url('https://cdn.glitch.global/79b3fc14-ada4-4089-83ff-953f22e44797/IMG_7553.jpg?v=1726338925696') no-repeat center center/cover; /* Replace with your image */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

/* Optional: Dark overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent dark overlay */
    z-index: 1;
}

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

.hero h2 {
    max-width: 700px;
    font-family: 'SourceSansPro-Semibold', sans-serif;
    font-size: 3rem;
    margin: 0;
    color: #ffffff;
    margin-top: -50px;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
    color: #ffffff;
    max-width: 700px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

/* Content inside the hero section */
.hero div {
    position: relative;
    z-index: 2; /* Ensures content is above the overlay */
    color: white; /* White text for readability */
    margin-top: 0px;
}

/* Modern-tech style for the buttons */
.hero .buttons a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    background-color: #0178A9;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Adding a futuristic pattern on the button background */
.hero .buttons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 50px 50px;
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.5s ease;
    z-index: 0;
}

/* Hover effect - the futuristic pattern moves */
.hero .buttons a:hover::before {
    transform: translateX(0) translateY(0);
}

/* Adding some animation to the hover effect */
.hero .buttons a:hover {
    background-color: #008C8D;
    box-shadow: 0 6px 25px rgba(0, 140, 141, 0.4);
    transform: translateY(-3px);
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
}

/* Adding animated border effect */
.hero .buttons a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: border 0.3s ease;
    pointer-events: none;
}

.hero .buttons a:hover::after {
    border-color: #E8B421;
}

/* Button in the hero section */
.btn-download {
    background-color: white; /* White background */
    color: #000; /* Black text */
    border: 2px solid transparent;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-transform: none;
    border-radius: 50px; /* Rounded corners */
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

/* Button hover effect */
.btn-download:hover {
    background-color: #E8B421; /* Orange hover background */
    color: white;
    border: 2px solid #E8B421;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* Optional: center button inside a parent container */
.btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Add space if needed */
}


main {
    padding: 60px 20px 20px;
    margin-top: 60px;
}

.section {
    padding: 60px 0;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #015476;
}

.section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #5A9A9B;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    background-color: #5AABBC;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 200px;
    max-width: 300px;
    text-align: left;
    color: #fff;
}

.video-section iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 10px;
}

/* Add space between footer sections */
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 60px; /* Add space between Connect With Us and Contact Us */
}

.footer-column {
    flex: 1 1 300px;
    margin-bottom: 20px;
}

/* Footer Contact Us Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    margin-top: 30px; /* Extra margin above Contact Us form */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f0f4fa;
    color: #000;
}

.hero .btn-submit {
        font-size: 1rem; /* Smaller button */
        padding: 10px 20px;
        margin-top: 20px;
    }

/* Explore More Button Styling */
.btn-explore {
    background-color: #1a4eff; /* Blue background */
    color: white; /* White text */
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: normal;
    text-transform: none; /* No uppercase */
    border-radius: 50px; /* Fully rounded button */
    text-align: center;
    transition: all 0.3s ease; /* Smooth transitions */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
    text-decoration: none; /* Remove underline */
    display: inline-block;
}

/* Hover effect: turns orange */
.btn-explore:hover {
    background-color: #E8B421; /* Orange background on hover */
    color: white; /* Keep white text */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Enhance shadow on hover */
}

/* Make the LinkedIn icon larger */
.social-icons a .fa-linkedin {
    font-size: 2.5rem; /* Increase size for LinkedIn icon */
}

/* General icon styling for other icons */
.social-icons a {
    color: #ffffff;
    margin-right: 15px;
    font-size: 1.5rem; /* Default size for other icons */
    transition: color 0.3s ease;
}

.scroll-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* Below the side menu */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scroll-buttons button {
    background-color: #0178A9;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.scroll-buttons button:hover {
    background-color: #E8B421;
}

.scroll-buttons .scroll-down {
    display: block;
}

.scroll-buttons .scroll-to-top {
    display: none;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .video-section iframe {
        height: 300px;
    }
}









/* Benefits Section Styles */
.benefits-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    /* width: 100vw; Full viewport width */
    margin-left: calc(-50vw + 50%); /* Stretch to the left */
    margin-right: calc(-50vw + 50%); /* Stretch to the right */
    margin-top: -120px; /* Adjust this value to close the gap */
}

.benefits-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    /* width: 100vw; Full viewport width */
    margin-left: calc(-50vw + 50%); /* Stretch to the left */
    margin-right: calc(-50vw + 50%); /* Stretch to the right */
    margin-top: -120px; /* Adjust this value to close the gap */
}

@media (max-width: 768px) {
    .benefits-section {
        width: 100vw; /* Full viewport width */
    }
}

/* Grid Layout for Benefits and Features */
.benefits-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

/* Benefit Boxes Styling */
.benefit-box {
    background-color: #ffffff; /* White background */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    opacity: 1; /* Start fully visible */
    text-align: center;
}

/* Hover effect - Animation */
.benefit-box:hover {
    transform: translateY(-10px) scale(1.05); /* Slight lift and scale */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Stronger shadow */
    opacity: 0.95; /* Slight fade */
}

/* Icon Styling (for consistency) */
.benefit-box i {
    font-size: 2.5rem;
    color: #0178A9; /* Icon color */
    margin-bottom: 15px;
}

/* Benefit Title */
.benefit-box h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000; /* Black text */
    margin-bottom: 10px;
}

/* Benefit Description */
.benefit-box p {
    font-size: 1rem;
    color: #6e6e6e; /* Light grey text */
    line-height: 1.6;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr; /* Stack the boxes on smaller screens */
    }
}






.section + .section {
    margin-top: 0px; /* Adjust to close the gap */
}





/* Our Expertise Section */
.expertise-section {
    background: url('') no-repeat center center/cover; /* New background image */
    background-color: #093045;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Ensures it stretches from left to right */
    margin-right: calc(-50vw + 50%); /* Ensures it stretches from left to right */
    color: white; /* Optional: if you want to change text color */
}

.expertise-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.text-content {
    max-width: 600px;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #6e6e6e;
}

/* Expertise Image Container */
.expertise-image {
    width: 100%;
    height: auto;
    border-radius: 15px; /* Keep the rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
}

/* Image hover effect */
.expertise-image:hover {
    transform: scale(1.05); /* Zoom in by 5% */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}










/* Press Release Section Styles */
.press-release-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    /* width: 100vw; */
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.press-release-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.press-release-header {
    text-align: center;
    margin-bottom: 40px;
}

.press-release-header h2 {
    font-family: 'FuturaBoldItalic', Arial, sans-serif;
    font-size: 3rem;
    color: #015476;
    margin-bottom: 10px;
}

.press-release-date {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.press-release-content h3 {
    font-family: 'SourceSansPro-Semibold', Arial, sans-serif;
    font-size: 1.8rem;
    color: #015476;
    line-height: 1.4;
    margin-bottom: 30px;
    text-align: center;
}

.press-release-body {
    max-width: 900px;
    margin: 0 auto;
    text-align: unset;
}

.press-release-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.press-release-body p strong {
    color: #015476;
}

.press-release-quotes {
    margin: 40px 0;
    padding: 30px;
    background-color: #ffffff;
    border-left: 5px solid #015476;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.press-release-quotes h4 {
    font-family: 'SourceSansPro-Semibold', Arial, sans-serif;
    font-size: 1.5rem;
    color: #015476;
    margin-bottom: 25px;
    text-align: center;
}

.quote {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #0178A9;
}

.quote p {
    font-style: italic;
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.quote cite {
    display: block;
    font-size: 0.9rem;
    color: #015476;
    font-weight: bold;
    text-align: right;
    font-style: normal;
}

.press-release-about {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-section {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-section h4 {
    font-family: 'SourceSansPro-Semibold', Arial, sans-serif;
    font-size: 1.3rem;
    color: #015476;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.about-section a {
    color: #0178A9;
    text-decoration: none;
    font-weight: bold;
}

.about-section a:hover {
    color: #E8B421;
    text-decoration: underline;
}

/* Responsive styles for press release */
@media (max-width: 768px) {
    .press-release-section {
        padding: 60px 15px;
        margin-left: calc(-50vw + 50%);
    }
    
    .press-release-header h2 {
        font-size: 2.2rem;
    }
    
    .press-release-content h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .press-release-body p {
        font-size: 1rem;
        text-align: left;
    }
    
    .press-release-quotes {
        padding: 20px;
        margin: 30px 0;
    }
    
    .quote p {
        font-size: 0.95rem;
    }
    
    .press-release-about {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-section {
        padding: 20px;
    }
}

/* Footer Section Styles */
.footer {
    background-color: rgb(1, 84, 118); /* Dark background */
    color: #ffffff; /* White text */
    padding: 60px 20px;
    margin-top: -10; /* Remove any top margin */
    padding-top: -10; /* Remove any top padding */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 300px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-column p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer Image Styles */
.footer-image {
    max-width: 35%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Contact Us Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 8px;
    display: block;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f0f4fa;
    color: #000;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1a4eff;
    outline: none;
}

/* Default button style (white background) */
.btn-submit {
    background-color: white; /* White background */
    color: #000; /* Black text */
    padding: 12px 24px; /* Add padding for a wider button */
    border: none;
    border-radius: 50px; /* Rounded edges */
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover state (orange background) */
.btn-submit:hover {
    background-color: #E8B421; /* Orange background */
    color: white; /* White text */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3); /* Deeper shadow */
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Adjust the form styles for mobile responsiveness */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 30px;
    }
}












/* Developmental Progress Section with Background Image */
.progress-section {
    background: url('') no-repeat center center/cover; /* Background image */
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: #f9f9f9; /* Optional: change text color for better visibility */
    position: relative;
}

/* Dark overlay to improve text readability on background image */
.progress-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Content inside the section */
.progress-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 2; /* Ensures content stays above the overlay */
    margin-bottom: 0; /* Remove any extra margin */
    padding-bottom: 0; /* Remove extra padding */
}

/* Text content */
.text-content {
    max-width: 600px;
}

/* Progress Image Styling */
.image-content {
    max-width: 500px;
    flex-shrink: 0;
}

/* Developmental Progress Image Container */
.progress-image {
    width: 100%;
    height: auto;
    border-radius: 15px; /* Keep the rounded corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animation */
}

/* Image hover effect for Developmental Progress section */
.progress-image:hover {
    transform: scale(1.05); /* Zoom in by 5% */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}


@media (max-width: 768px) {
    .progress-content {
        flex-direction: column;
        text-align: center;
        margin-bottom: 0; /* Remove any extra margin */
        padding-bottom: 0; /* Remove extra padding */
    }

    .progress-image {
        margin-bottom: 30px;
    }
}

html {
    width: 100%;
}








/* Mobile-friendly adjustments */
@media (max-width: 768px) {

    /* Disable horizontal scrolling on mobile */
    body {
        overflow-x: hidden; /* Prevent horizontal scroll on mobile */
    }

    /* Center the logo on mobile */
    header {
        justify-content: center;
    }
  
    .benefit-box {
        padding: 10px;
        text-align: center; /* Align text to the left */
        margin-left: 7px; /* Shift each box slightly to the left */
        width: 90%; /* Adjust the width */
    }

    /* Logo resizing */
    .header-content .logo {
        max-width: 150px; /* Smaller logo size for mobile */
    }

    /* Hero Section - Shift items slightly to the left */
    .hero {
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Shift items to the left */
        margin-left: 0; /* Slight left shift */
    }

    .hero h2 {
        font-size: 1.8rem; /* Smaller header text */
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1rem; /* Adjust paragraph text size */
        line-height: 1.4;
        margin-top: 10px;
    }

    .hero .btn-download {
        font-size: 1rem; /* Smaller button */
        padding: 10px 20px;
        margin-top: 20px;
    }

    /* Section Content - Shift items slightly to the left */
    .section {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Align items to the left */
        justify-content: center;
        padding: 40px 20px;
        text-align: center; /* Align text to the left */
        /* margin-left: -23.5px; Shift entire section slightly left */
    }

    /* Expertise Section: Image and text left-aligned */
    .expertise-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        margin-left: 2px; /* Slight left shift */
    }

    .expertise-image {
        max-width: 300px;
        width: 100%;
        margin-bottom: 2px;
        margin-left: 36.5px; /* Slight left shift */
    }


    .expertise-content .text-content {
        max-width: 90%; /* Adjust text container width */
        margin-top: 20px;
    }

    /* Developmental Progress Section - Image and text left-aligned */
    .progress-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
        margin-left: 2px; /* Slight left shift */
    }

    .progress-image {
        max-width: 300px;
        width: 100%;
        margin-bottom: 2px;
        margin-left: 36px; /* Slight left shift */
    }

    .progress-content .text-content {
        max-width: 90%; /* Keep text within bounds on mobile */
        margin-top: 20px;
    }

    .benefits-grid,
    .features-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr); /* Stack benefits vertically */
        gap: 20px;
        margin-left: -23.5px; /* Shift grid to the left */
    }
  
    /* Remove the up and down arrow buttons on mobile */
    .scroll-buttons {
        display: none; /* Hide up/down buttons on mobile */
    }
  
    .section h2,
    .section h3.sub-header,
    .section h3 {
        text-align: center; /* Center header text */
        margin-left: 0; /* Remove the left shift for headers */
        width: 100%; /* Ensure the header takes full width for centering */
        margin-left: -15px; /* Shift grid to the left */
    }
  
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Footer Section - Left-align footer content */
    footer {
        padding: 20px;
        text-align: center; /* Align footer text to the left */
        margin-left: -10px; /* Shift footer content slightly to the left */
    }

    .footer-container {
        flex-direction: column; /* Stack the footer columns vertically */
        align-items: center;
    }
}
