@charset "UTF-8";

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

/* .container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
    color: inherit;
} */
/* Style for sidebar menu items */
#mySidebar {
    background-color: #70BC64;
    color: white;
}

#mySidebar a.nav-items {
    color: white !important;
    text-decoration: none !important;
}

/* Style for sidebar menu items when hovering */
#mySidebar a.nav-items:hover {
    color: blue !important;
    background-color: white !important;
}

#hometop {
    color: #70BC64;
}

body,
h1,
h2,
h3,
h4,
h5 {
    font-family: "Poppins", Arial, sans-serif;
}

h1 {
    color: #3B2EB4;
}

#text1 {
    color: #3B2EB4;
}

body {
    font-size: 16px;
}

.w3-third img {
    margin-bottom: -6px;
    margin-top: 16px;
    opacity: 1;
    cursor: pointer;
}

.w3-third img:hover {
    opacity: 0.8;
}


/* Define the styles for the social icons */
.social-icon {
    color: #70BC64;
    /* Set the color to light green */
    text-decoration: none;
    /* Remove underline on hover */
    margin: 0 10px;
    /* Add some spacing between icons */
    font-size: 50px;
}

.social-icon:hover {
    color: #3B2EB4;
    /* Change color on hover if desired */
}


#homeheader {
    background-image: url('https://res.cloudinary.com/hnj5hsssp/image/upload/v1695681825/NewImages/48E2C29C-B75B-47AE-82EF-A9FADC19E2C2_jg2g4g.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-color: #cccccc;
    width: auto;
    background-size: cover;
    height: 600px;
    color: white;
    text-align: center;
    font-family: "Poppins", Arial, sans-serif;
}

#homeIntro {
    padding-top: 260px;
    font-family: "Poppins", Arial, sans-serif;
}

#learnbutton {
    background-color: white;
    color: #3B2EB4;
}

/* Responsive layout for small screens */
@media screen and (max-width: 768px) {
    .w3-quarter {
        width: 50%;
    }
}

/* styles.css */
/* Set the initial background color */
#contactButton {
    background-color: #3B2EB4;
    color: white;
    transition: background-color 0.3s;
    /* Add a smooth transition effect */
}

/* Change the background color on hover */
#contactButton:hover {
    background-color: #70BC64 !important;
}


/* Define styles for the rounded button */
.rounded-button {
    background-color: #3B2EB4;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 20px;
    /* Adjust the radius to control the roundness */
    padding: 14px 32px;
    /* Adjust padding as needed */
    transition: background-color 0.3s, color 0.3s;
}

/* Change the background color and text color on hover */
.rounded-button:hover {
    background-color: #70BC64;
    color: white;
}


/* Modal styles */
#modal03 {
    display: none;
    /* Hide the modal by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    /* Semi-transparent black background */
}

/* Modal content */
.w3-modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    animation-name: modalopen;
    animation-duration: 0.4s;
}

/* Modal close button */
.w3-modal-content .w3-button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

/* Image inside the modal */
.w3-modal-content img {
    width: 100%;
    max-height: 80%;
    object-fit: contain;
}

/* Caption text */
.w3-modal-content p {
    text-align: center;
    margin-top: 20px;
    color: #fff;
    font-size: 18px;
}

/* Modal close button hover effect */
.w3-modal-content .w3-button:hover {
    background-color: #ccc;
}