<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Cursor Styles */
body {
    cursor: url('/images/kitecursor.png'), auto; /* Fallback to default cursor */
}



/* NAVBAR CONTAINER */
.navbar {
    background-color: #1C3664;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
    flex-wrap: nowrap;
}


/* LOGO */
.navbar-logo img {
    max-height: 50px;
    display: block;
}

/* BURGER ICON - ALWAYS VISIBLE */
.navbar-toggler {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1100;
    position: absolute;
    right: 20px; /* ðŸŸ¢ This keeps it on the right */
    top: 50%;
    transform: translateY(-50%);
}



.navbar-toggler span {
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* ANIMATE TO "X" */
.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* SLIDE-OUT NAV LINKS (INITIALLY HIDDEN) */
.navbar-links {
    position: fixed;
    top: 0;
    right: 0;
    background-color: #1C3664;
    padding: 80px 0 20px 0;
    width: 220px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1050;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.3);
    list-style: none;
    height: auto;

    /* âœ… Rounded corners */
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}


.navbar-links.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* LINK STYLES */
.navbar-links li {
    margin: 20px 0;
    text-align: center;
}

.navbar-links a {
    position: relative;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Smooth underline animation */
.navbar-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

/* Hover state */
.navbar-links a:hover {
    color: #dcdcdc;
    text-decoration: none;
}

.navbar-links a:hover::after {
    width: 100%;
}



      




#backToTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #1C3664; /* Use the same blue as your navbar */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif; /* Set font to Montserrat */
    font-weight: bold; /* Make the font bold */
    cursor: pointer;
    display: none; /* Hide the button initially */
    z-index: 1000; /* Make sure it appears on top */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transition for smooth effect */
}

#backToTop:hover {
    background-color: #154D7E; /* Darker shade on hover */
    transform: scale(1.1); /* Slightly increase size on hover */
}



.btn {
    display: inline-block; /* Makes the button inline */
    padding: 10px 20px; /* Adjust padding for size */
    background-color: white; /* Button background color */
    color: #000000; /* Text color (nav bar color) */
    border: none; /* Remove default border */
    border-radius: 25px; /* Rounded edges */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    font-size: 1.2em; /* Adjust font size */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
    font-weight: bold;
    
    min-width: 150px; /* Ensure buttons are readable */
    max-width: 250px; /* Optional: prevent too wide on large screens */
 
}

.btn:hover {
    background-color: #1C3664; /* Change background to nav bar color */
    color: white; /* Change text color to white */
    cursor: pointer; /* Change cursor to pointer */
    text-decoration: none;
    font-weight: bold;
    transform: scale(1.1); /* Slightly increase size on hover */
}

/* Button Container */
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center buttons */
    gap: 10px; /* Space between buttons */
    margin-top: 20px;
    width: 100%; /* Full container width */
    
}

/* Resetting default styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}


h1 {
    font-size: 7.2em; /* Adjust font size */
    font-weight: bold; /* Make the paragraph bold */
    color: #ffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: #007bff;
}

a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
    margin: 0; /* Remove any margin */
    padding: 0; /* Remove any padding */
    height: auto; /* Allow height to adjust based on content */
    min-height: 70vh; /* Ensure a minimum height for the section */
}

.hero::before {
    content: ''; /* Required for the pseudo-element */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(216, 216, 216, 0.5); /* Tint color */
    z-index: 1; /* Ensure overlay is below the content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative; /* Keep content above the overlay */
    z-index: 2; /* Bring content above the overlay */
    padding: 20px 0; /* Add minimal padding above and below */
}

/* Text styling */

.hero-content h1,

.hero-content p {
    color: #274ea3; /* White text color for readability */
    text-shadow: 1px 0px 0px rgba(0, 0, 0, 0.7); /* Optional: Add shadow for improved readability */
    margin-top: 0px;
    
}

.hero-description {
    font-size: 1.5em; /* Adjust font size */
    font-weight: bold;
    color: #274ea3; /* Match the brand style */
    margin: 10px 0; /* Reduce spacing */

}

.hero-content img {
    width: 60%;            /* Makes the image stretch to fit the container */
    height: 200px;          /* Set the container height to crop the image */
    object-fit: cover;      /* Ensures the image fills the container and crops excess */
    object-position: center center; /* Centers the cropping on the image */
    display: block;
    margin: 0 auto;
    
}

/* General Row Styles */
.row {
    padding: 40px 20px;
    text-align: center;
}



/* Redesigned About Us Section */
.about-overlay {
    position: relative;
    background: url('/Enrichwebpage/enrichimages/AboutUsImage.png') center center / cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: white;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Overlay tint */
.about-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 54, 100, 0.6); /* Slight blue tint */
    z-index: 1;
}

.about {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* About Heading on Top */
.about-heading {
    width: 100%;
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}

/* Image styling */
.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: auto;
}

/* Left column - Image */
.about-image {
    flex: 1 1 350px;
    max-width: 450px;
}

/* Right column - Text */
.about-content {
    flex: 1 1 400px;
    font-size: 1.1em;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* Responsive layout */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        font-size: 1em;
    }
}




/* Locations Section */

.locations {
    background-color: #eaeaea; /* Gray background for the Locations section */
    padding: 40px 20px; /* Add padding for spacing */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    
}

.locations-header {
    text-align: center; /* Center the header */
    font-size: 2em; /* Adjust font size as needed */
    color: #000000; /* Match the navbar color */
    margin-bottom: 20px; /* Space below the header */
}


.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns for the top row */
    gap: 0%;
}



/* Bottom row styling */
.bottom-row {
    grid-column: 1 / 4; /* Spans across all columns in the grid */
    display: flex; /* Arrange the bottom cards horizontally */
    justify-content: center; /* Center them in the row */
    gap: 25%; /* Space between the two cards */
    margin-top: 40px; /* Add spacing below the top row */
    margin-right: 100px;
    
}


.card-container2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three cards in a row */
    grid-template-rows: auto;
    gap: 24px;
    
}

.location-card {
    
    border-radius: 10px;
    padding: 0px;
    text-align: center;
    transition: transform 0.3s; /* Animation on card hover */
}

.location-icon {
    width: 50px;
    height: 50px;
    margin: 20px auto 10px auto;
    object-fit: contain;
    display: block;
}

.location-card:hover {
    transform: scale(1.05); /* Animation effect on hover */
}

.location-description {
    margin: 10px 0; /* Space between title and description */
}

.city-button {
    background-color: white; /* Button background color */
    color: black; /* Text color */
    padding: 10px 20px; /* Padding for the button */
    border-radius: 25px; /* Rounded edges */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.city-button:hover {
    background-color: #1C3664; /* Change background color to navbar color on hover */
    color: white; /* Change text color to white on hover */
    font-weight: bold; /* Ensure font is bold on hover */
    text-decoration: none; /* Ensure underline is removed on hover */
}










/* Brochure Section */

.brochure h3 {
    text-align: center;
    color: #000000; /* Change this to match your desired color */
    margin-bottom: 20px; /* Adjust spacing as needed */
    font-family: 'Montserrat', sans-serif; /* Ensure it uses the Montserrat font */
    font-weight: bold; /* Make it bold */
    font-size: 2em;
}

.brochure-section {
    display: flex;
    
    justify-content: space-between; /* Horizontal layout of the boxes */
    padding: 20px;
    gap: 20px; /* Space between boxes */
}

.brochure-box {

    display: flex;
    flex-direction: column; /* Stack the images vertically inside each box */
    align-items: center;
    width: 45%; /* Set box width */
    
    background-color: #f5f5f5; /* Background color for the boxes */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
}

.brochure-thumbnail {
    max-width: 90%;
    margin-bottom: 15px; /* Space between images */
    cursor: pointer;
    border-radius: 5px;
}

.brochure-box a {
    margin: 5px 0; /* Space between buttons */
}

.brochure-box .brochure-download-btn-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 3 buttons per row */
    gap: 10px; /* Space between buttons */
    width: 100%; /* Ensure buttons span the full width */
}
.brochure-download-btn {
    
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    border: 2px solid #1C3664; /* Same color as navbar */
    color: #1C3664;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 15px;
    transform: scale(1); /* Initial scale */
}

.brochure-download-btn:hover {
    background-color: #1C3664;
    color: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.1); /* Slightly increase size on hover */
    text-decoration: none;
}

.brochure-download-btn .language {
    text-align: left;
}

.brochure-download-btn .translation {
    text-align: right;
    opacity: 0.7;
    font-size: 16px;
    
}
/* Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Dark background */
    text-align: center;
}

/* Modal Content (image) */
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}

/* Close Button */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}


.additional-content {
    background-color: #eaeaea; /* Gray background */
    padding: 40px 0px; /* Add padding for spacing */
    
    
    box-sizing: border-box; /* Include padding in width calculation */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}


.enrich-collaboration {
    padding: 40px 20px; /* Add padding for spacing */
    text-align: center; /* Center the text */
    /* Removed background-color */
}

.collaboration-description {
    font-size: 1.5em; /* Adjust font size as necessary */
    margin-bottom: 20px; /* Space below the paragraph */
}

.logo-container {
    display: flex;
    justify-content: center; /* Center the logos */
    gap: 20px; /* Space between logos */
}

.collaboration-logo, .collaboration-logo3 {
    max-width: 15%; /* Logos take up 30% of their container's width */
    height: 15%; /* Maintain aspect ratio */
}

.collaboration-logo4{
    max-width: 10%; /* Logos take up 30% of their container's width */
    height: 10%; /* Maintain aspect ratio */
}



.acknowledgement {
    padding: 40px 20px; /* Keep existing padding */
    text-align: center; /* Center the text */
}

.acknowledgement p {
    font-size: 0.8em; /* Adjust the font size here */
    line-height: 1.5; /* Optional: Adjust line height for better readability */
}



.contact-us {
    background-color: #eaeaea; /* Gray background for the Locations section */
    padding: 40px 20px; /* Add padding for spacing */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;

}

.contact-description {
    font-size: 1.2em; /* Adjust font size */
    margin-bottom: 20px; /* Space below the paragraph */
}








/* Footer */
.footer {
    background-color: #1c3664;
    color: white;
    width: 100vw;
    position: relative;
    bottom: 0;
    left: 0;
    padding: 15px 0;
    display: flex;
    justify-content: center;
}
.footer-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.footer-links {
    display: flex;
    gap: 15px;
}
.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-icons {
    display: flex;
    gap: 15px;
}
.footer-icons a {
    color: white;
    font-size: 20px;
}
.footer-icons a:hover {
    opacity: 0.8;
}



@media (max-width: 768px) {
    /* Ensure navbar uses column layout if needed */
    .navbar {
        flex-wrap: nowrap;
        position: relative;
    }

    /* Logo stays on the left */
    .navbar-logo {
        margin: 0;
    }

    .navbar-logo img {
        max-height: 50px;
    }

    /* Burger icon stays on the RIGHT */
    .navbar-toggler {
        display: flex !important;
        position: absolute;
        right: 20px;
        left: auto !important;
        top: 50%;
        transform: translateY(-50%) !important;
        width: 30px;
        height: 22px;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 1100;
    }

    .navbar-toggler span {
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: 0.3s;
    }

    .navbar-toggler.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggler.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Slide-out menu from the right */
    .navbar-links {
        position: fixed;
        top: 0;
        right: 0;
        background-color: #1C3664;
        padding: 80px 0 20px 0;
        width: 220px;
        display: flex; 
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 1050;
        box-shadow: -2px 0 6px rgba(0, 0, 0, 0.3);
        list-style: none;
        height: auto;
        pointer-events: none;
    
        /* âœ… Rounded corners */
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }
    
    

    .navbar-links.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-links li {
        margin: 20px 0;
        text-align: center;
    }

    .navbar-links a {
        color: white;
        font-family: 'Montserrat', sans-serif;
        font-weight: bold;
        font-size: 1.1em;
        text-decoration: none;
    }

    .navbar-links a:hover {
        color: #dcdcdc;
        text-decoration: none;
    }
}



/* Media Queries for HERO SECTION */



/* Media Queries for Hero Buttons */
@media (max-width: 768px) {
    .button-container {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center the buttons horizontally */
        justify-content: center; /* Center the buttons vertically if needed */
        margin: 0 auto;
        width: 100%; /* Ensure the container takes up full width */
        gap: 10px; /* Reduce space between buttons (default was 10px) */
    }

    .btn {
        width: 90%; /* Set button width to 90% of the container */
        min-width: 250px; /* Ensure the buttons are wide enough */
        max-width: 400px; /* Optional: Set max-width for large mobile screens */
        margin: 0; /* Remove extra margin to keep them closer */
    }
}





/* Media Queries for the BROCHURE SECTION */
@media (max-width: 768px) {
    .brochure-section {
        flex-direction: column; /* Stack the boxes vertically on smaller screens */
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .brochure-box {
        width: 100%; /* Make boxes full width */
        margin-bottom: 0px; /* Space between boxes */
    }

    .brochure-box .brochure-download-btn-container {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px; /* Space between buttons */
        align-items: center; /* Center the buttons */
    }

    .brochure-box .brochure-download-btn {
        width: 80%; /* Optional: Adjust button width for better usability */
    }
}



/* Mobile section for Locations and Additional Resources */

@media (max-width: 768px) {
    .card-container {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .card-container .location-card {
        width: 90%;
        max-width: 400px;
    }

    .bottom-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-right: 0;
    }

    .card-container2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .locations-header {
        font-size: 1.5em;
        margin-bottom: 16px;
    }
}




/* Media Query for Enrich Collaboration */
@media (max-width: 768px) {
    .collaboration-description {
        font-size: 1.2em; /* Smaller font size for mobile */
    }

    .logo-container {
        flex-direction: column; /* Stack logos vertically */
        align-items: center; /* Center logos */
        
        
    }

    .collaboration-logo {
        max-width: 40%; /* Adjust logo size for mobile */
        height: auto;
        margin-top: 0px;
       
        
        
    }

    .collaboration-logo3 {
        max-width: 40%; /* Adjust logo size for mobile */
        height: auto;
        margin-top: 0px;
        margin-left: 60px;
        
        
    }
    .collaboration-logo4 {
        max-width: 40%; /* Adjust logo size for mobile */
        height: auto;
        margin-top: -80px;
        margin-bottom: -100px;
        align-items: center;
        
        
    }
}


</pre></body></html>