/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Set a cheerful background color */
body {
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    background-color: #e0e0e8; /* Light gray background */
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-top: 80px; /* Adjust as needed based on the header height */

}

.text-container {
    text-align: center;
    width: calc(40% - 10px);
    margin-bottom: 0px;
    padding-left: 90px;
    top: 50%; /* Adjust this value as needed to center the text vertically */
    transform: translateY(20%); /* Center the text vertically */

}

.title {
    font-size: 2.5rem;
    color: #0b20a7; /* Pink color for title */
    margin-bottom: 0px;
    animation: bounceIn 1s ease; /* Fun animation */
    margin-left: 15px ;

    

}

.subtitle {
    font-size: 1.5rem;
    color: #3366ff; /* Blue color for subtitle */
    animation: fadeIn 1s ease; /* Gentle fade-in animation */
    margin-left: 2px ;
    padding-top: 90px;



}

.description {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto 50px;
    animation: fadeInUp 1s ease; /* Slide-up animation */
    margin-left: 2px ;
    padding-top: 40px;



}


@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* &&&&&&&& */
.get_started_container {
    background-color: #a596bd; /* Soft pink background */
    background-image: url('../images/back_getstarted.jpg');
    background-size: cover; /* Adjust the background size as needed */
    background-position: center; /* Adjust the background position as needed */
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    /* gap: 20px; */
    margin-top: 160px;

}

.video-eye-container {
    width: calc(60% - 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    margin-top: 70px;
    margin-bottom: 0px;
    
}

.slide-video-container {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    max-width: 600px; /* Limit maximum width */
    position: relative;
    overflow: hidden;
}

.video-slider {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.video-slide {
    flex: 0 0 100%;
    max-width: 100%;
    height: auto;
}

.button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border: none;
    color: #333;
    font-size: 18px;
    transition: background-color 0.3s ease;
    border-radius: 50%;
    outline: none;
}

.button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.face-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.eyes-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    
}

.eye {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin: 0 23px; /* Add margin to create distance between the eyes */
}


.pupil {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.smile {
    width: 570px; /* Increase the width */
    height: 270px; /* Keep the height */
    position: relative;
    background-color: transparent;
    border-bottom-left-radius: 570px; /* Adjust the border radius */
    border-bottom-right-radius: 570px; /* Adjust the border radius */
    border: 3px solid #000;
    margin-top: 45px;
    overflow: hidden;
}

.smile video {
    position: absolute;
    width: 100%; /* Adjust the width to cover the entire smile */
    height: 100%; /* Adjust the height to cover the entire smile */
    object-fit: cover; /* Ensure the video covers the entire area */
}



/* .nose {
    width: 40px;
    height: 60px;
    background-color: #E0BB95;  */
    /* Base color of the nose */
    /* border-radius: 50% 50% 40% 40%;  */
    /* Provides a more natural shape */
    /* position: absolute; */
    /* top: 45%; */
    /* left: 71%; */
    /* transform: translate(-90%, -90%);  */
    /* Center the nose */
    /* z-index: 1;  */
    /* Ensure the nose is above the video slides */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);  */
    /* Add a subtle shadow for depth */

    /* Add highlights for a more realistic look */
    /* background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%), */
                /* radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%); */
/* } */

.nose {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 45%;
    left: 71%;
    transform: translate(-90%, -90%); /* Center the nose */
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), inset 0 -2px 4px rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.6), transparent 50%);
}





.eyelash:nth-child(1) {
    position: absolute;
    width: 40px; /* Adjust according to your design */
    height: 2px; /* Adjust according to your design */
    background-color: black;
    border-radius: 50%;
    top: 35%;
    left: 30%;
    transform: translate(-90%, -90%); /* Center the nose */
    transform: rotate(45deg); /* Adjust according to your design */
}
.eyelash:nth-child(2) {
    position: absolute;
    width: 40px; /* Adjust according to your design */
    height: 2px; /* Adjust according to your design */
    background-color: black;
    border-radius: 50%;
    top: 35%;
    left: 31%;
    transform: translate(-90%, -90%); /* Center the nose */
    transform: rotate(45deg); /* Adjust according to your design */
}
.eyelash:nth-child(3) {
    position: absolute;
    width: 40px; /* Adjust according to your design */
    height: 2px; /* Adjust according to your design */
    background-color: black;
    border-radius: 50%;
    top: 35%;
    left: 32%;
    transform: translate(-90%, -90%); /* Center the nose */
    transform: rotate(45deg); /* Adjust according to your design */
}

 
.eyelash:nth-child(5) {
    position: absolute;
    width: 40px; /* Adjust according to your design */
    height: 2px; /* Adjust according to your design */
    background-color: black;
    border-radius: 50%;
    top: 35%;
    left: 65%;
    transform: translate(-90%, -90%); /* Center the nose */
    transform: rotate(-45deg); /* Adjust according to your design */
}   
.eyelash:nth-child(6) {
    position: absolute;
    width: 40px; /* Adjust according to your design */
    height: 2px; /* Adjust according to your design */
    background-color: black;
    border-radius: 50%;
    top: 35%;
    left: 64%;
    transform: translate(-90%, -90%); /* Center the nose */
    transform: rotate(-45deg); /* Adjust according to your design */
}   
.eyelash:nth-child(7) {
    position: absolute;
    width: 40px; /* Adjust according to your design */
    height: 2px; /* Adjust according to your design */
    background-color: black;
    border-radius: 50%;
    top: 35%;
    left: 63%;
    transform: translate(-90%, -90%); /* Center the nose */
    transform: rotate(-45deg); /* Adjust according to your design */
}  


.eyelash:nth-child(4) {
    display: none;
    opacity: 0;
    visibility: hidden;
    
 }  
.eyelash.hidden {
    display: none;
}



/* Header styles */
header {
    background-color: #e0e0e8; /* Light peach background */
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; /* Set a high z-index to keep it above other elements */
}



h1 {
    font-size: 24px;
    color: #473988;
    margin: 0;
}


/* Hero section styles */
.hero-section {
    font-family: 'Comic Sans MS', cursive; /* Playful font */

    
    /* padding: 50px; */
    text-align: center;
    margin-bottom: 20px;
    border-radius: 10px; /* Add border-radius for a softer look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add subtle box shadow for depth */
}

.hero-section h1 {
    font-size: 40px; /* Slightly larger font size for emphasis */
    color: #473988; /* Dark gray text */
    margin-bottom: 20px;
    font-weight: bold; /* Add bold font weight for emphasis */
}

.hero-section p {
    font-size: 16px;
    color: #6048A0;
}

/* Optional: Add a call-to-action button */
.hero-section .cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-decoration: none;
    color: #fff;
    background-color: #473988; /* Orange button color */
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Optional: Button hover effect */
.hero-section .cta-button:hover {
    background-color: #e67e22; /* Darker orange on hover */
}

/* ----------------------------------------------------------------- */
/* Key Features section styles */
.key-features-section {
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    padding: 50px;
    text-align: center;
}

.key-features-section h2 {
    font-size: 32px;
    color: #473988;
    margin-bottom: 30px;
}

/* Feature Card Styles */
.key_feature {
    margin-bottom: 30px;
    background-color: #473988;
    border-radius: 10px;
    overflow: hidden; /* Ensure rounded corners are applied properly */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add subtle box shadow for depth */
    transition: transform 0.3s ease;
}

.key_feature:hover {
    transform: scale(1.05);
}

.key_feature img {
    max-width: 100px;
    margin: 20px auto; /* Center the image within the feature card */
}

.key_feature h3 {
    font-size: 24px;
    color: #6cc1d1;
    margin-top: 10px;
}

.key_feature p {
    font-size: 16px;
    color: #555;
    margin: 10px 20px; /* Adjust margin for better spacing */
}

/* Explore More section styles */
.explore-more {
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    padding: 50px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 15px; /* Rounded corners for a softer look */
}

.explore-more h2 {
    font-size: 36px; /* Slightly larger font size for emphasis */
    color: #333;
    margin-bottom: 30px;
}

.explore-more .feature {
    max-width: 600px;
    padding: 20px; /* Increased padding for better spacing */
    margin: 0 auto;
    background-color: #e0e0e8; /* White background for features */
    border-radius: 10px; /* Rounded corners for features */
}

.explore-more a {
    display: inline-block; /* Change to inline-block for better alignment */
    background-color: #4b9bbd; /* Dark blue button */
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 8px; /* Rounded corners for the button */
    margin: 10px 10px; /* Adjusted margin for better spacing */
    transition: background-color 0.3s ease;
}

.explore-more a:hover {
    background-color: #366b88; /* Slightly darker blue on hover */
}


.cta-btn {
    background-color: #6cc1d1; /* Light blue button */
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin: 10px;
}

/* Testimonials section styles */
.testimonials-section {
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    background-color: #dfe6e9; /* Light gray-blue background */
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-carousel {
    display: flex;
    justify-content: space-around;
    overflow: hidden;
}

.testimonial {
    background-color: #e0e0e8; /* White background for testimonials */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 300px;
}

.testimonial:hover {
    transform: scale(1.05);
}

.testimonial p {
    font-size: 18px;
    color: #333;
}

.testimonial span {
    font-weight: bold;
    color: #2ecc71; /* Light green text */
    display: block;
    margin-top: 10px;
}

/* Footer section styles */
.footer-section {
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    background-color: #ffcc99; /* Light orange background for a playful feel */
    color: #333; /* Dark text color */
    padding: 40px 20px 20px; /* Adjusted padding for better spacing */
    text-align: center;
    width: 100%;
    border-radius: 20px; /* Add rounded corners for a softer look */
}

.footer-links a,
.social-media-links a {
    text-decoration: none;
    color: #3498db; /* Blue text color for a playful touch */
    margin: 0 10px; /* Improved spacing between links */
    transition: color 0.3s ease;
    font-weight: bold; /* Add bold font weight for emphasis */
}

.footer-links a:hover,
.social-media-links a:hover {
    color: #e74c3c; /* Red accent color on hover */
}

.footer-links img,
.social-media-links img {
    max-width: 40px; /* Smaller max-width for logos */
    height: auto; /* Maintain aspect ratio */
    margin: 10px 0; /* Add margin for spacing between logos */
    border-radius: 50%; /* Round logos for a playful look */
}






.get_started-btn {
    background-color: #ff9800; /* Orange button */
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.get_started-btn:hover {
    background-color: #fff;
    color: #ff9800; /* Orange text on hover */
}

.modal {
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    background-color: #fefefe;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.modal-close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
}


.hero-section {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-content {
    position: absolute;
    /* left: 10%; */
     /* Adjust the value as per your design */
    /* z-index: 1; */
    color: #e0e0e8; /* Adjust text color as needed */
    
}


img {
    width: 100%; /* Ensure image takes full width */
    height: 100%; /* Ensure image takes full height */
    object-fit: cover; /* Cover the entire section */
    object-position: center; /* Center the image */
    display: block;
}



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

.hero-content h1 {
    font-size: 24px;
    color: #4c8798;
    margin-left: 100px ;
    margin-top: 40px;
}

.hero-content p {
    font-size: 16px;
    color: #5393a7;
    margin-left: 100px ;
    margin-bottom: 5px;
}

/* ------------------------------------------------------------- */
.key-features-section {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
    margin-top: 25px;
    margin-top: 100px;
    margin-bottom: 10px;
    padding: auto;
    border-radius: 15px; /* Rounded corners for a softer look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle box shadow for depth */


}
.key-features-section {
    position: relative;
    background-image: url('../images/cloud1.png'), url('../images/cloud2.png'), 
                      url('../images/cloud6.png'), url('../images/cloud3.png'), 
                      url('../images/cloud4.png'), url('../images/cloud5.png'), 
                      url('../images/cloud1.png'), url('../images/cloud6.png'),  
                      url('../images/cloud6.png'), url('../images/cloud2.png'),  
                      url('../images/cloud1.png'), url('../images/cloud2.png'), 
                      url('../images/cloud2.png'), url('../images/cloud6.png'), 
                      url('../images/cloud2.png'), url('../images/cloud5.png'),
                      url('../images/cloud6.png'), url('../images/cloud2.png');
    background-repeat: no-repeat;
    background-size: 5%, 6%, 7%, 9%, 10%, 10%, 5%, 6%, 7%, 8%, 9%, 10%, 5%, 6%, 7%, 8%, 9%, 10%; /* Adjust the size as needed */
    background-position: 20% 3%,   
                         5% 20%,    
                         92% 92%,     
                         85% 10%,     
                         11% 90% ,     
                         95% 50%,    
                         10% 55%,
                         14% 30%,
                         8% 80%,
                         88% 33%,
                         88% 63%,
                         2% 70%,
                         97% 77%,
                         95% 20%,
                         40% 66%,
                         60% 38%,
                         1% 2%,
                         2% 43%; /* Adjust the positions */

    padding: 50px;
}


/* Adjust other styles as needed */


.key-features-section h1{
    margin-bottom: 30px;
}

.key_feature {
    display: flex;
    /* width: 100%; */
    max-width: 800px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    background: linear-gradient(to right, #4869B8, #e0e0e8);
}

.key_feature:hover {
    transform: scale(1.05);
}

.feature-content {
    display: flex;
    width: 100%;    
}

.feature-image,
.feature-text {
    flex: 1;
}

.feature-image img {
    /* width: 100%; */
    /* height: auto;  */
    /* border-radius: 12px 0 0 12px; */
    object-fit:fill;
    max-width: 200px; /* Smaller max-width for logos */
    max-height: 200px;
    height: auto; /* Maintain aspect ratio */
    margin-left: 60px;
    margin-top: 30px;

}
.feature-image_modal img {
    width: 100%;
    height: auto; 
    border-radius: 12px 0 0 12px;
    object-fit:cover;
  

}

.feature-text {
    border-radius: 0 12px 12px 0;
    color: #333;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-text h3 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.feature-text p {
    color: #555;
    margin-bottom: 15px;
}

/* ---------------------------------------------------- */


.explore-more {
    max-width: 400px;
    margin: 0 auto;
    padding: 40px;
    /* background-color: #f9f9f9; */
    border-radius: 12px;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}

a {
    display: block;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #555;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

a:hover {
    background-color: #f0f0f0;
}

a:last-child {
    margin-bottom: 0;
}

.explore-more {
    /* background-color: #f8f8f8; */
    padding: 50px 0;
    flex: 1;
    max-width: 550px; /* Adjust the maximum width as needed */
}

.feature {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.feature h2 {
    font-size: 2.5em;
    color: #2e3c4e;
    margin-bottom: 30px;
}

.exploration-options {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    
}

.exploration-option {
    text-align: center;
    max-width: 200px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;

}

.exploration-option:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.exploration-option a {
    text-decoration: none;
    color: #2e3c4e;
    display: block;
    font-size: medium;
}

.exploration-option img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    
}

/* Add a subtle pulse animation for the title */
.feature h2:hover {
    animation: pulse 0.5s ease-in-out infinite alternate;
}

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


.wrapper {
    position: relative;
    background: linear-gradient(to right, #e0e0e8, #473988);
    padding: 50px;
    padding-bottom: 1px;
    padding-top: 1px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 15px; /* Rounded corners for a softer look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle box shadow for depth */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: -50px;

}

.image-slider {
    flex: 1;
    max-width: 600px; /* Adjust the maximum width as needed */
    text-align: center;
    margin-top: 50px;
}

.slides-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    align-self: center;
}

.slide {
    display: none;
    align-self: center;
}

.slide img {
    width: 460px; /* Set the desired width */
    height: 460px; /* Set the desired height */
    object-fit: cover; /* Maintain aspect ratio */
    border-radius: 10px;
    align-self: center;
}


.slide {
    text-align: center; /* Centers the content inside each slide */
}

.slide img {
    max-width: 100%; /* Ensures the image doesn't exceed the width of its container */
    display: block; /* Ensures the image is treated as a block element */
    margin: 0 auto; /* Centers the image horizontally within its container */
}

.slide.active {
    display: block;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}



/* Add this CSS to style the navigation buttons */
/* ... (Your existing CSS) ... */


.prev-button,
.next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

.prev-button:hover,
.next-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


/* --------------------------------------------------------- */
/* Latest News and Insights section styles */
.events-news {
    /* background-color: #e1dddd; */
     /* Light gray background */
    background: linear-gradient(to right, #5b75b3, #448cb9);
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    max-width: 100%;
    height: 600px;
    padding: 50px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 2%;
    display: flex;
    margin: auto;
    margin-bottom: 35px;

}

.events-news .feature {
    max-width: 600px;
    padding: 15px 30px;
    height: 500px;
    margin: 0 auto;
}

.events-news h3 {
    font-size: 32px;
    color: #fff;
    /* margin-bottom: 20px; */
}

.events-news p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.events-news a {
    display: block;
    background-color: #6cc1d1; /* Light blue button */
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    margin: 10px auto;
    max-width: 200px;
    transition: background-color 0.3s ease;
}

.events-news a:hover {
    background-color: #4a90e2; /* Darker blue on hover */
}


/* Apply styles for the container of news sections */
/* Wrapper for the entire news section */
.wrapper_news {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f6f6f6;
    padding: 20px;
}

/* Individual sections within the news wrapper */
.news-sections {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Styling for the latest news and insights feature */
.special-news-feature {
    padding: 20px;
    /* border-radius: 10px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    text-align: center;
    max-width: 300px;
    margin-bottom: 20px;
    border: none; /* Hides the border */
    
    
}

.feature-title {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-description {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.feature-link {
    display: block;
    color: #007bff;
    font-size: 18px;
    text-decoration: none;
    margin-bottom: 10px;
}

.feature-link:hover {
    text-decoration: underline;
}

/* Styling for the news image */
.news-image {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    height: 550px; /* Adjust the height as needed */
    display: flex;
}

.image-overlay {
    position: relative;
    width: 100%;
    background-color: rgba(0, 123, 255, 0.6);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-image img {
    width: auto;
    max-height: 100%; /* Adjust the maximum height of the image */
    display: block;
    margin: auto; /* Center the image */
    border-radius: 10px;

}


/* Media query for responsiveness */
@media screen and (min-width: 768px) {
    .wrapper_news {
        flex-direction: row;
        justify-content: space-between;
    }

    .news-sections {
        flex-direction: row;
        align-items: flex-start;
    }

    .special-news-feature {
        margin-bottom: 0;
    }

    .news-image {
        width: 50%;
        margin-left: 20px;
    }
}


/* ----------------------------------------------------*/

.features-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: #473988;
    background: linear-gradient(to right,#696481, #a596bd);
    font-family: 'Comic Sans MS', cursive; /* Playful font */



}

.join-community,
.enhance-learning,
.optimize-experience {
    flex: 1;
    max-width: 300px;
    padding: 20px;
    margin: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    background-color: #e0e0e8;

}

.join-community h3,
.enhance-learning h3,
.optimize-experience h3 {
    color: #3498db;
    margin-bottom: 15px;
}

.join-community:hover,
.enhance-learning:hover,
.optimize-experience:hover {
    transform: scale(1.05);
}

.feature-links {
    margin-top: 15px;
}

.feature-links a {
    display: block;
    margin-top: 10px;
    color: #555;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.feature-links a:hover {
    color: #3498db;
}
/* -------------------------------------------------------------- */

.testimonials-section {
    text-align: center;
    padding: 40px;
    background-color: #e0e0e8;
}

h2 {
    color: #3498db;
}

.testimonial-carousel {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.testimonial {
    background-color: #3790c8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

p {
    font-size: 16px;
    color: #333;
}

span {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #e74c3c; /* Or any playful color */
}
/* ----------------------------------------------- */

.footer-section {
    background-color: #7c8491;
    color: #fff;
    padding: 40px 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-branding {
    flex: 1;
    text-align: left;
}

.footer-branding img {
    width: 160px;
    margin-bottom: 10px;
    margin-left: 80px;
    border-radius: 50% ;
}
.footer-branding p {
    color:rgb(245, 245, 245);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex: 2;
    max-width: 800px;
    margin-top: 40px;
    
}

.footer-category {
    text-align: left;
    margin-bottom: 20px;
    padding: 0 30px;
    margin-right: 20px;
    flex: 1;
}

.footer-category h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: rgb(146, 153, 200);
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    
}

.footer-links a:hover {
    color: #3498db;
}

/* Remove box styles */
.footer-links a,
.footer-category {
    background-color: transparent;
    border: none;
    padding: 0;
}

.social-media-links {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: auto; /* Set margin-top to auto to push it to the bottom */
    margin-right: 60px;
}

.social-media-links a {
    margin-right: 20px; /* Add margin between social media icons */
    text-decoration: none; /* Remove underlines from links */
}

.social-media-links img {
    width: 30px;
}

/* Remove box styles */
.social-media-links a {
    background-color: transparent;
    border: none;
    padding: 0;
}


/* ------------------------------------------------------------- */
header {
    background-color: #e0e0e8;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-image: url('../images/main_cv8.avif') ;
    background-size: cover; 
    background-position: center; */
    ;
}

.logo {
    display: flex;
    align-items: center;
}


.logo h1 {
    font-size: 24px;
    color: #3498db;
}








/* Navbar */
.navbar {
    background-color: #ffcc00; /* Bright yellow background */
    border-radius: 15px; /* Rounded corners */
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.navbar-nav .nav-item {
    margin-bottom: 15px; /* Add space between menu items */
}

.navbar-nav .nav-link {
    color: #333; /* Dark text color */
    font-weight: bold;
    padding: 10px 20px; /* Add padding to each menu item */
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    transition: color 0.3s ease; /* Smooth color transition */
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #473988; /* Dark orange text color on hover */
}

/* Submenu */
.dropdown-menu {
    background-color: #fff; /* White background */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
    animation: slideDown 0.5s ease forwards; /* Slide down animation */
}

.dropdown-menu .dropdown-item {
    color: #333; /* Dark text color */
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    transition: color 0.3s ease; /* Smooth color transition */
    padding: 10px 20px; /* Add padding to submenu items */
}

.dropdown-menu .dropdown-item:hover {
    color: #4869B8; /* Dark orange text color on hover */
}

/* Slide down animation */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    background-color: #ff5722; /* Dark orange background */
    color: #fff; /* White text color */
    border-radius: 25px; /* Rounded corners */
    font-weight: bold;
    font-family: 'Comic Sans MS', cursive; /* Playful font */
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

.btn:hover {
    background-color: #ff7744; /* Lighter orange background on hover */
    transform: scale(1.05); /* Scale up on hover */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow on hover */
}

/* Logo */
.logo img {
    width: 100px; /* Adjust size as needed */
    height: auto;
    margin-right: 10px;
    animation: bounce 1.5s infinite alternate; /* Bouncing animation */
    max-width: 250px;
}
/* @font-face {
    font-family: 'Baloo Tamma 2';
    src: url('../font/BalooTamma2-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  } */


  @font-face {
    font-family: 'Baloo Tamma 2';
    src: url('../font/922ffc787e2b0edbe26658721544cdea.woff2') format('woff2'), /* Modern Browsers */
         url('../font/922ffc787e2b0edbe26658721544cdea.woff') format('woff'); /* Older Browsers */
  }

  
.logo h1 {
    font-size: 28px;
    font-weight: bold;
    color: #473988; /* Dark text color */
    margin-top: 10px;
    font-family:  'Baloo Tamma 2', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    letter-spacing: 2px; /* Adjust letter spacing for readability */
    /* background: linear-gradient(90deg, #6EB5FF, #8ED081, #B686FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    background: linear-gradient(90deg, #6EB5FF, #8ED081, #B686FF);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientText 5s linear infinite;
  }
  @keyframes gradientText {
    0% { background-position: 0 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
  }

  /* Apply gradient background to the website name */
  .gradient-text {
    background: linear-gradient(90deg, #4869B8, #6048A0, #473988);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientText 5s linear infinite;
  }

/* Bounce animation */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        font-size: 16px; /* Increase font size on smaller screens */
    }

    .logo h1 {
        font-size: 22px; /* Decrease font size on smaller screens */
    }
}


/* Adjust the margin or padding of the next section to push it down */
.hero-section {
    padding-top: 150px; /* Add padding to push down the content */
    height: 600px;
    display: flex;
    max-height: fit-content;
    /* overflow: hidden;   */


}




/* .container_hero { */
    /* position: relative;
    width: 100%;
    display: flex;
    height: 400px;
    align-items: center;
    overflow: hidden;
      */
    /* Ensures video doesn't overflow */
    /* border-radius: 20px;  */
    /* Rounded corners */
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);  */
    /* Drop shadow */
/* } */




.video-overlay {
    position: absolute;
    top: 65%;
    right: 0;
    transform: translateY(-50%) translateX(-10%);
    width: 40%; /* Adjust as needed */
    z-index: 1;
    overflow: hidden; /* Ensures video doesn't overflow */
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Drop shadow */
}

.video-overlay video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px; /* Rounded corners */
    transition: transform 0.3s ease; /* Smooth transition on hover */
}

.video-overlay:hover video {
    transform: scale(1.05); /* Scale up on hover */
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #6048A0; /* Light salmon color */
    border-radius: 50%; /* Circular shape */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease; /* Smooth transition on hover */
    z-index: 2;
}


.play-button:before {
    content: '';
    border-style: solid;
    border-width: 20px 0 20px 30px;
    border-color: transparent transparent transparent white; /* Triangle shape */
}

.play-button video {
    display: none; /* Hide video initially */
}

.image-background {
    flex: 1;
    width: 100%;
    height: auto;
    z-index: 0;
    position: relative;
}

.image-background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 105, 180, 0.3), rgba(255, 182, 193, 0.3)); /* Gradient overlay */
    z-index: 1;
    border-radius: 20px; /* Rounded corners */
}



.hero-content h1 {
    color: #6048A0; /* Coral color */
    letter-spacing: 1px; /* Increased letter spacing */
    font-size: 1.5rem;
    margin-bottom: 10px;
    z-index: 2; /* Ensure text is above the video */


    
}

.hero-content p {
    color: #473988; /* Sky blue color */
    line-height: 1.6; /* Increased line height */
    font-size: 1rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Text shadow */
    z-index: 2; /* Ensure text is above the video */

}

.get-started-btn {
    padding: 10px 20px;
    font-size: 1.2rem;
    background-color: #6048A0; /* Light salmon color */
    color: #ffffff; /* White color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 100px;
    /* margin-left: 10%; */
    animation: bounceButton 2s ease infinite alternate; /* Button bouncing animation */

}

.get-started-btn:hover {
    background-color: #473988; /* Pastel orange */
}

button:hover {
    background-color: #FF7F11; /* Pastel orange */
}

@keyframes floatText {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounceButton {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.hero-section {
    position: relative; /* Needed for absolute positioning of children */
    padding-top: 150px; /* Add padding to push down the content */
    height: 600px; /* You can adjust the height as needed */
}

.hero-content {
    position: absolute; /* Position text content */
    top: 0; /* Place at the top */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center horizontally */
    text-align: center; /* Center text */
    z-index: 2; /* Ensure text appears above video */
}

.hero-section {
    position: relative;
    padding-top: 180px;
    height: 600px;
    display: flex;
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
}

.video-overlay {
    margin-top: 110px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the video */
    width: 80%; /* Adjust width as needed */
    max-width: 800px; /* Maximum width for larger screens */
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.video-overlay video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 600px; /* Adjust as needed */
    margin-top: 80px;
    max-width:100%;
    max-height: fit-content;

}

.hero-content {
    z-index: 2;
    width: 80%; /* Adjust width as needed */
    justify-content: center;
}
.hero-content p{
    margin-right: 100px;

}
.hero-content h1 {
    margin-right: 100px;
    color: #6048A0;
    letter-spacing: 1px;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    white-space: pre-line; /* Allow line breaks */
}
.testimonial-carousel {
    display: flex;
    overflow-x: hidden;
    position: relative;
}

.testimonial {
    flex: 0 0 auto;
    width: 100%;
    padding: 20px;
    display: none;
}

.testimonial.active {
    display: block;
}


.navigation-arrows {
    position: relative;
    margin-top: 20px; /* Add space between testimonials and arrows */
    text-align: center; /* Center the arrows */
    z-index: 1;
}

.navigation-arrows button {
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    font-size: 32px;
    color: #ff6f61; /* Coral color */
    transition: transform 0.3s ease;
}

.navigation-arrows button:hover {
    transform: scale(1.2); /* Increase size on hover */
}



/* Rest of your CSS remains the same */


/* Rest of your CSS remains the same */

/* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
  /* Styles for extra large PC */
  /* Extra-large devices (min-width: 1300px) */
@media screen and (min-width: 1300px) {
    .slide-video-container {
        width: 100%;
        height: auto; /* Maintain aspect ratio */
        max-width: 600px; /* Limit maximum width */
        position: relative;
        /* border-radius: 50% / 25%; */
        overflow: hidden;
        /* background-color: #fff; */
        /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); */
        margin-bottom: 25px;
    }
    .text-container {
        text-align: center;
        width: calc(40% - 10px);
        margin-bottom: 0px;
        padding-left: 90px;
        top: 50%; /* Adjust this value as needed to center the text vertically */
        transform: translateY(20%); /* Center the text vertically */
    
    }
    
    .title {
        font-size: 2.5rem;
        color: #0b20a7; /* Pink color for title */
        margin-bottom: 0px;
        animation: bounceIn 1s ease; /* Fun animation */
        margin-left: 15px ;
        transform: translateX(10%); /* Center the text vertically */

        
    
    }
    
    .subtitle {
        font-size: 1.5rem;
        color: #3366ff; /* Blue color for subtitle */
        animation: fadeIn 1s ease; /* Gentle fade-in animation */
        margin-left: 5px ;
        padding-top: 100px;
        transform: translateX(10%); /* Center the text vertically */
    
    
    
    }
    
    .description {
        font-size: 1rem;
        color: #333;
        line-height: 1.5;
        max-width: 600px;
        margin: 0 auto 50px;
        animation: fadeInUp 1s ease; /* Slide-up animation */
        margin-left: 5px ;
        padding-top: 40px;
        transform: translateX(10%); /* Center the text vertically */
    
    
    
    }
    
    .nose {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 40%;
        left: 71%;
        transform: translate(-90%, -90%); /* Center the nose */
        z-index: 1;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), inset 0 -2px 4px rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.6), transparent 50%);
    }
    
    
    
    
    
    .eyelash:nth-child(1) {
        position: absolute;
        width: 40px; /* Adjust according to your design */
        height: 2px; /* Adjust according to your design */
        background-color: black;
        border-radius: 50%;
        top: 35%;
        left: 33%;
        transform: translate(-90%, -90%); /* Center the nose */
        transform: rotate(45deg); /* Adjust according to your design */
    }
    .eyelash:nth-child(2) {
        position: absolute;
        width: 40px; /* Adjust according to your design */
        height: 2px; /* Adjust according to your design */
        background-color: black;
        border-radius: 50%;
        top: 35%;
        left: 34%;
        transform: translate(-90%, -90%); /* Center the nose */
        transform: rotate(45deg); /* Adjust according to your design */
    }
    .eyelash:nth-child(3) {
        position: absolute;
        width: 40px; /* Adjust according to your design */
        height: 2px; /* Adjust according to your design */
        background-color: black;
        border-radius: 50%;
        top: 35%;
        left: 35%;
        transform: translate(-90%, -90%); /* Center the nose */
        transform: rotate(45deg); /* Adjust according to your design */
    }
    
     
    .eyelash:nth-child(5) {
        position: absolute;
        width: 40px; /* Adjust according to your design */
        height: 2px; /* Adjust according to your design */
        background-color: black;
        border-radius: 50%;
        top: 35%;
        left: 63%;
        transform: translate(-90%, -90%); /* Center the nose */
        transform: rotate(-45deg); /* Adjust according to your design */
    }   
    .eyelash:nth-child(6) {
        position: absolute;
        width: 40px; /* Adjust according to your design */
        height: 2px; /* Adjust according to your design */
        background-color: black;
        border-radius: 50%;
        top: 35%;
        left: 62%;
        transform: translate(-90%, -90%); /* Center the nose */
        transform: rotate(-45deg); /* Adjust according to your design */
    }   
    .eyelash:nth-child(7) {
        position: absolute;
        width: 40px; /* Adjust according to your design */
        height: 2px; /* Adjust according to your design */
        background-color: black;
        border-radius: 50%;
        top: 35%;
        left: 61%;
        transform: translate(-90%, -90%); /* Center the nose */
        transform: rotate(-45deg); /* Adjust according to your design */
    }  
 
   
}


/* Styles for tablets */
@media (max-width: 1199px) and (min-width: 768px) {
    

}

/* Styles for mobile */
@media (max-width: 767px) {
   
    .hero-content h1 {
        color: #6048A0; /* Coral color */
        letter-spacing: 1px; /* Increased letter spacing */
        font-size: 1.1rem;
        margin-bottom: 10px;
        z-index: 2; /* Ensure text is above the video */
    
    
        
    }
}



  /* Styles for extra large PC */
  @media (min-width: 1300px) {
    .key-features-section {
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
        justify-content: center;
        margin-top: 120px;
        margin-bottom: 10px;
        

    }
    .key-feature-title{
        position: absolute; /* Position text content */
        left: 50%; /* Center horizontally */
        transform: translateX(-50%); /* Center horizontally */
        text-align: center; /* Center text */
        z-index: 1; /* Ensure text appears above video */

    }

   #expressYourself{
    margin-top: 60px;
   }
    .key_feature {
        
        /* margin-top: 60px; */
        display: flex;
        /* width: 100%; */
        max-width: 800px;
        height: 250px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        background: linear-gradient(to right, #4869B8, #e0e0e8);
    }
    
    .key_feature:hover {
        transform: scale(1.05);
    }
    
    .feature-content {
        display: flex;
        width: 100%;    
    }
    
    .feature-image,
    .feature-text {
        flex: 1;
    }
    
    .feature-image img {
        /* width: 100%; */
        /* height: auto;  */
        /* border-radius: 12px 0 0 12px; */
        object-fit:fill;
        max-width: 200px; /* Smaller max-width for logos */
        max-height: 200px;
        height: auto; /* Maintain aspect ratio */
        margin-left: 60px;
        margin-top: 30px;
    
    }
    .feature-image_modal img {
        width: 100%;
        height: auto; 
        border-radius: 12px 0 0 12px;
        object-fit:cover;
      
    
    }
    
    .feature-text {
        border-radius: 0 12px 12px 0;
        color: #333;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .feature-text h3 {
        color: #e74c3c;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }
    
    .feature-text p {
        color: #555;
        margin-bottom: 15px;
    }
    
}

/* Styles for tablets */
@media (max-width: 1199px) and (min-width: 768px) {
    .key-features-section {
        flex-direction: column;
        align-items: center;
        padding: 30px;
    }
    .key_feature {
        width: 70%;
        margin-bottom: 20px;
    }
    .feature-image img {
        border-radius: 10px 10px 0 0;
    }
    .feature-text h3 {
        font-family: 'Comic Sans MS', cursive; /* Playful font */
        font-size: 20px;
    }
    .feature-text p {
        font-family: 'Comic Sans MS', cursive; /* Playful font */
        font-size: 14px;
    }
}

/* Styles for mobile */
@media (max-width: 767px) {
    .key-features-section {
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
        justify-content: center;
    }
    
    .key_feature {
        display: flex;
        /* width: 100%; */
        max-width: 800px;
        height: 250px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        background-color: #e0e0e8;  
    }
    
    .key_feature:hover {
        transform: scale(1.05);
    }
    
    .feature-content {
        display: flex;
        width: 100%;
        
    }
    
    .feature-image,
    .feature-text {
        flex: 1;
    }
    
    .feature-image img {
        /* width: 100%; */
        /* height: auto;  */
        /* border-radius: 12px 0 0 12px; */
        object-fit:fill;
        max-width: 100px; /* Smaller max-width for logos */
        max-height: 150px;
        height: auto; /* Maintain aspect ratio */
        margin-left: 40px;
        margin-top: 60px;
    
    }
    .feature-image_modal img {
        width: 100%;
        height: auto; 
        border-radius: 12px 0 0 12px;
        object-fit:cover;
      
    
    }
    
    .feature-text {
        background: linear-gradient(to right, #4869B8, #e0e0e8);
        border-radius: 0 12px 12px 0;
        color: #333;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .feature-text h3 {
        color: #e74c3c;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }
    
    .feature-text p {
        color: #555;
        margin-bottom: 15px;
    }
    
}

/* Styles for extra large PC */
@media (min-width: 1300px) {
    .modal-content {
        font-family: 'Comic Sans MS', cursive; /* Playful font */
        width: 50%;
        margin: auto;
        background-color: #e0e0e8;
        border-radius: 10px;
        padding: 20px;
        position: relative;
        text-align: center;
    }
    .modal-content h2 {
        font-family: 'Comic Sans MS', cursive; /* Playful font */
        font-size: 24px;
        margin-bottom: 20px;
    }
    .modal-content p {
        font-family: 'Comic Sans MS', cursive; /* Playful font */
        font-size: 18px;
        line-height: 1.5;
    }
    .modal-content .feature-image_modal {
        width: 100px;
        height: 100px;
        border-radius: 10px;
        margin: 0 auto 20px auto;
    }
}

/* Styles for tablets */
@media (max-width: 1199px) and (min-width: 768px) {
    .modal-content {
        width: 70%;
    }
    .modal-content h2 {
        font-family: 'Comic Sans MS', cursive; /* Playful font */
        font-size: 20px;
    }
    .modal-content p {
        font-family: 'Comic Sans MS', cursive; /* Playful font */
        font-size: 16px;
    }
}

/* Styles for mobile */
@media (max-width: 767px) {
    .modal-content {
        width: 90%;
    }
    .modal-content h2 {
        font-family: 'Comic Sans MS', cursive; /* Playful font */
        font-size: 18px;
    }
    .modal-content p {
        font-family: 'Comic Sans MS', cursive; /* Playful font */
        font-size: 14px;
    }
    .modal-content .feature-image_modal {
        width: 80px;
        height: 80px;
        margin-left: auto;
        margin-right: auto;
    }
}
 /* Styles for extra large PC */
 @media (min-width: 1300px) {
    
    .wrapper {
        background: linear-gradient(to right, #e0e0e8, #473988);
        padding: 50px;
        padding-bottom: 1px;
        padding-top: 1px;
        text-align: center;
        margin-bottom: 40px;
        border-radius: 15px; /* Rounded corners for a softer look */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle box shadow for depth */
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        margin-top: -50px;
    
    }
    
    .image-slider {
        flex: 1;
        max-width: 600px; /* Adjust the maximum width as needed */
        text-align: center;
        margin-top: 50px;
    }
    
    .slides-container {
        overflow: hidden;
        position: relative;
        width: 100%;
        align-self: center;
        margin-left: 50px;
    }
    
    .slide {
        display: none;
        align-self: center;
    }
    
    .slide img {
        width: 460px; /* Set the desired width */
        height: 460px; /* Set the desired height */
        object-fit: cover; /* Maintain aspect ratio */
        border-radius: 10px;
        align-self: center;
    }
    
    
    .slide {
        text-align: center; /* Centers the content inside each slide */
    }
    
    .slide img {
        max-width: 100%; /* Ensures the image doesn't exceed the width of its container */
        display: block; /* Ensures the image is treated as a block element */
        margin: 0 auto; /* Centers the image horizontally within its container */
    }
    
    .slide.active {
        display: block;
        animation: fadeIn 1s ease-in-out;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    
    
    /* Add this CSS to style the navigation buttons */
    /* ... (Your existing CSS) ... */
    
    
    .prev-button,
    .next-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 24px;
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .prev-button {
        left: 10px;
    }
    
    .next-button {
        right: 10px;
    }
    
    .prev-button:hover,
    .next-button:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }
    
    
}


/* Styles for tablets */
@media (max-width: 1199px) and (min-width: 768px) {
    .wrapper {
        flex-direction: column;
        align-items: center;
        padding: 30px;
    }
    .image-slider,
    .explore-more {
        width: 100%;
    }
    .slide img {
        border-radius: 0;
    }
    .slide {
        text-align: center;
    }
    .explore-more {
        padding-top: 40px;
    }
}

/* Styles for mobile */
@media (max-width: 767px) {
    .wrapper {
        padding: 20px;
    }
    .slide img {
        border-radius: 0;
    }
    .prev-button,
    .next-button {
        font-size: 20px;
    }
    .feature h2 {
        font-family: 'Comic Sans MS', cursive; /* Playful font */
        font-size: 20px;
    }
    .exploration-option img {
        max-width: 80px;
    }
    .exploration-options {
        display: flex;
        justify-content: space-between; /* Distribute items evenly */
        align-items: center; /* Center items vertically */
        flex-wrap: wrap; /* Allow items to wrap */
    }

    .exploration-option {
        text-align: center;
        margin-bottom: 20px;
        width: 30%; /* Adjust width of individual items */
    }

    .exploration-option a {
        text-decoration: none;
        color: #333;
        font-size: 1.2em;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .exploration-option img {
        width: 100px; /* Adjust image size as needed */
        height: auto;
        margin-bottom: 10px;
    }
}


    /* Styles for extra large PC */
    @media (min-width: 1300px) {
        .news-sections {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Styling for the latest news and insights feature */
        .special-news-feature {
            padding: 20px;
            /* border-radius: 10px; */
            /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
            text-align: center;
            max-width: 300px;
            margin-bottom: 20px;
            border: none; /* Hides the border */
            
            
        }
        
        .feature-title {
            color: #333;
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .feature-description {
            color: #666;
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .feature-link {
            display: block;
            color: #007bff;
            font-size: 18px;
            text-decoration: none;
            margin-bottom: 10px;
        }
        
        .feature-link:hover {
            text-decoration: underline;
        }
        
        /* Styling for the news image */
        .news-image {
            position: relative;
            max-width: 100%;
            overflow: hidden;
            border-radius: 10px;
            height: 550px; /* Adjust the height as needed */
            display: flex;
        }
        
        .image-overlay {
            position: relative;
            width: 100%;
            background-color: rgba(0, 123, 255, 0.6);
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .news-image img {
            width: auto;
            max-height: 100%; /* Adjust the maximum height of the image */
            display: block;
            margin: auto; /* Center the image */
            border-radius: 10px;
        
        }
        
        
    }

    /* Styles for tablets */
    @media (max-width: 1199px) and (min-width: 768px) {
        .wrapper_news {
            flex-direction: column;
            align-items: center;
            padding: 30px;
        }
        .news-sections,
        .events-news,
        .news-image {
            width: 100%;
        }
        .special-news-feature {
            padding: 20px;
            text-align: center;
        }
        .feature-title {
            font-size: 20px;
        }
        .feature-description {
            font-size: 16px;
        }
        .feature-link {
            font-size: 14px;
        }
    }

    /* Styles for mobile */
    @media (max-width: 767px) {
       .events-news {
            /* background-color: #e1dddd; */
             /* Light gray background */
            background: linear-gradient(to right, #4869B8, #3790c8);
            font-family: 'Comic Sans MS', cursive; /* Playful font */
            max-width: 100%;
            height: 600px;
            padding: 10px;
            text-align: center;
            margin-bottom: 20px;
            border-radius: 2%;
            display: flex;
            margin: auto;
            margin-bottom: 15px;
        
        }
        
        .events-news .feature {
            max-width: 600px;
            padding: 15px 3 0px;
            height: 550px;
            margin: 0 auto;
        }
        
        .events-news h3 {
            font-size: 32px;
            color: #333;
            /* margin-bottom: 20px; */
        }
        
        .events-news p {
            font-size: 18px;
            color: #555;
            margin-bottom: 30px;
        }
        
        .events-news a {
            display: block;
            background-color: #6cc1d1; /* Light blue button */
            color: #fff;
            text-decoration: none;
            padding: 15px 30px;
            font-size: 18px;
            border-radius: 5px;
            margin: 10px auto;
            max-width: 200px;
            transition: background-color 0.3s ease;
        }
        
        .events-news a:hover {
            background-color: #4a90e2; /* Darker blue on hover */
        }
        
        
        /* Apply styles for the container of news sections */
        /* Wrapper for the entire news section */
        .wrapper_news {
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #f6f6f6;
            padding: 20px;
        }
        
        /* Individual sections within the news wrapper */
        .news-sections {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Styling for the latest news and insights feature */
        .special-news-feature {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 300px;
            margin-bottom: 20px;
            
        }
        
        .feature-title {
            color: #333;
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .feature-description {
            color: #666;
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        .feature-link {
            display: block;
            color: #007bff;
            font-size: 18px;
            text-decoration: none;
            margin-bottom: 10px;
        }
        
        .feature-link:hover {
            text-decoration: underline;
        }
        
        /* Styling for the news image */
        .news-image {
            position: relative;
            max-width: 100%;
            width: 500px;
            overflow: hidden;
            border-radius: 10px;
            height: 550px; /* Adjust the height as needed */
            display: flex;
            object-fit:fill;
        }
        
        .image-overlay {
            position: relative;
            width: 100%;
            background-color: rgba(0, 123, 255, 0.6);
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .news-image img {
            width: auto;
            max-height: 100%; /* Adjust the maximum height of the image */
            display: block;
            margin: auto; /* Center the image */
            border-radius: 10px;
            max-width: 100%;
            width: 500px;
            object-fit:fill;

        
        }
        
    }


    @media (min-width: 1300px) {
        .features-container {
            display: flex;
            justify-content:center;
            padding: 30px;
        }
        .join-community,
        .enhance-learning,
        .optimize-experience {
            width: 30%;
            
        }
        .features-container h3 {
            font-family: 'Comic Sans MS', cursive; /* Playful font */
            font-size: 24px;
            margin-bottom: 10px;
        }
        .features-container p {
            font-family: 'Comic Sans MS', cursive; /* Playful font */
            font-size: 18px;
            margin-bottom: 20px;
        }
        .feature-links {
            display: flex;
            flex-direction: column;
        }
        .feature-links a {
            font-size: 16px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #007bff;
        }
    }

    /* Styles for tablets */
    @media (max-width: 1199px) and (min-width: 768px) {
        .features-container {
            flex-direction: column;
            align-items: center;
            padding: 30px;
        }
        .join-community,
        .enhance-learning,
        .optimize-experience {
            width: 70%;
            text-align: center;
        }
        .features-container h3 {
            font-family: 'Comic Sans MS', cursive; /* Playful font */
            font-size: 20px;
        }
        .features-container p {
            font-family: 'Comic Sans MS', cursive; /* Playful font */
            font-size: 16px;
        }
        .feature-links a {
            font-size: 14px;
        }
    }

    /* Styles for mobile */
    @media (max-width: 767px) {
        .features-container {
            padding: 20px;
        }
        .join-community,
        .enhance-learning,
        .optimize-experience {
            width: 100%;
            text-align: center;
        }
        .features-container h3 {
            font-family: 'Comic Sans MS', cursive; /* Playful font */
            font-size: 18px;
        }
        .features-container p {
            font-size: 14px;
        }
        .feature-links a {
            font-size: 12px;
        }
    }


    /* Styles for extra large PC */
    @media (min-width: 1300px) {
       /* /////////// */
    }

    /* Styles for tablets */
    @media (max-width: 1199px) and (min-width: 768px) {
      
    }

    /* Styles for mobile */
    @media (max-width: 767px) {
        .footer-section {
            background-color: #7c8491;
            padding: 30px 20px;
            text-align: center;
        }
    
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
    
        .footer-branding img {
            max-width: 150px;
            margin: 0 auto;
        }
    
        .footer-branding p {
            font-family: 'Comic Sans MS', cursive; /* Playful font */
            font-size: 0.8em;
            color: #777;
            margin: 5px 0;
        }
    
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
    
        .footer-category {
            flex: 1;
            margin: 0 10px;
        }
    
        .footer-category h4 {
            font-family: 'Comic Sans MS', cursive; /* Playful font */
            font-size: 1em;
            margin-bottom: 10px;
            color: #333;
        }
    
        .footer-category a {
            display: block;
            color: #555;
            margin-bottom: 5px;
            text-decoration: none;
            font-size: 0.9em;
        }
    
        .social-media-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
    
        .social-media-links img {
            width: 30px;
            height: 30px;
        }
    }

    /* Extra small devices (max-width: 767px) */
@media screen and (max-width: 767px) {
    .testimonials-section {
        padding: 20px; /* Adjust padding as needed */
    }

    .testimonial-carousel {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        max-width: 80%; /* Adjust max-width as needed */
        text-align: center;
        margin-bottom: 20px; /* Adjust margin as needed */
    }

    .testimonial p {
        font-family: 'Comic Sans MS', cursive; /* Playful font */
        font-size: 1.2em; /* Adjust font size as needed */
        line-height: 1.5;
        margin-bottom: 10px; /* Adjust margin as needed */
    }

    .testimonial span {
        font-style: italic;
        font-size: 1em; /* Adjust font size as needed */
    }

    h2 {
        font-family: 'Comic Sans MS', cursive; /* Playful font */
        font-size: 2em; /* Adjust font size as needed */
        text-align: center;
        margin-bottom: 30px; /* Adjust margin as needed */
    }
    body {
        font-family: 'Comic Sans MS', cursive; /* Playful font */
        background-color: #e0e0e8; /* Light gray background */
     
    
    }
}


