/* Universal Reset */
* {    box-sizing: border-box;}

html {
    scroll-behavior: smooth;
}


h2 {
    margin: 0;
}

/* Add top padding to sections linked by anchor links */


#intro-container h2,
.feature-content h2 {
    margin: 10px 0; /* Custom margin for these specific h2 elements */
}

/* Body Styling */
body {
    font-family: 'Exo 2', sans-serif;
    color: #333;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



#hero-section {
    min-height: 65vh;
    background-image: url('/images/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: local;
    background-blend-mode: overlay;
    animation: color-change 1s infinite alternate;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}


/* Sticker Container Styling */
.sticker-container {
    align-self: center;
    margin: 20px auto;
    max-width: 20%;
}

.sticker-image {
    width: 100%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.sticker-image:hover {
    opacity: 1;
}

/* Header Styling */
header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures it stays above other content */
    background-color: rgb(10, 6, 229);
    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Optional shadow for visual effect */
}

#site-header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Keeps header above other content when scrolling */
    background-color: rgb(10, 6, 229);
    width: 100%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Optional shadow */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

/* Logo Link Styling */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 30px;
    width: auto;
}

/* Navigation Container Styling */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    margin: 0 auto;
}

/* Hide the navigation menu by default */
.navigation-menu {
    display: none; /* Hidden by default on all screens */
}

.navigation-menu ul {
    list-style: none;
    gap: 20px;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* Navigation Links Styling */
.nav-link {
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8em;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #add8e6;
    text-decoration: underline; 
}

/* Call-To-Action Button Styling */
.cta-button, .cta-button-big {
    padding: 4px 20px;
    border: 2px solid #ffffff;
    color: #ffffff;
    background: linear-gradient(to right, rgba(8, 90, 232, 0.9), rgba(0, 81, 255, 0.9)); /* Semi-transparent gradient */
    text-decoration: none;
    font-weight: normal;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 1px;
    border-radius: 25px;
}

.cta-button-big {
    padding: 5px 45px;
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 20px;
    background: rgba(0,123,255,0.4); /* Lower opacity for .cta-button-big */
    color: #ffffff; 
    border: 1.5px solid #00eeff ;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 50px;/* Keeps text fully opaque */
}

.cta-button:hover, .cta-button-big:hover {
    background-color: hsla(0, 0%, 100%, 0.942);
    color: #0099ff;
    border: 2px solid #0099ff;
}




#intro-container {
    height: 100%;
    width: 70%; /* Extends more to the right */
    margin-left: 20%; /* Starts 20% from the left */
    text-align: left;
}

/* H2 Styling */
#intro-container h2 {
    width: 55%;
    font-size: 3.8em;
    font-weight: bold;
    color: #ffffff;
    padding: 80px 0px 0;
}

/* Paragraph Styling */
#intro-container p {
    width: 60%;
    font-size: 1.5em;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    padding: 20px 0 20px;
}

/* Footer Styling */
footer {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    margin-top: 20px;
    padding: 20px;
}

footer a {
    color: #add8e6;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Styling for .menu-toggle Button */
.menu-toggle {
    display: none;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}




/* Responsive Navigation Menu for Mobile */
@media (max-width: 768px) {



    #hero-section {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: local;
    }

    .menu-toggle {
        display: block;
    }

    .navigation-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 0;
        background-color: transparent;
        width: auto;
        padding: 10px;
        z-index: 1000;
        align-items: flex-end;
        background: rgb(10, 6, 229);
    }

    .navigation-menu ul {
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }

    .nav-link {
        padding: 10px 20px;
        width: auto;
        background-color: rgb(10, 6, 229);
        color: white;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
        border-radius: 5px;
    }

    .nav-link:hover {
        background-color: #add8e6;
        color: #333;
    }

    /* Reduce font sizes for hero section on mobile */
    #intro-container h2 {
        font-size: 2em; /* Smaller font for headings */
    }

    #intro-container p {
        font-size: 1.5em; /* Smaller font for paragraph */
    }

    /* Set containers to 80% width on mobile */
    #intro-container,
    .nav-container,
    .cards {
        width: 80%;
    }
}

/* Desktop View - Show Full Navigation and Hide Dropdown */
@media (min-width: 769px) {


    .navigation-menu {
        display: flex;
        flex-direction: row;
    }

    .menu-toggle {
        display: none;
    }
}

/* Styling for H1 */
h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5em;
    font-weight: bold;
    color: #085ae8;
    text-align: center;
    margin: 30px 0 30px;
    letter-spacing: 1px;
}

/* Cards Section */
.cards {
    display: flex;
    width: 80%;
    margin: 0 auto;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    
}

.card {
    width: calc(33.333% - 20px);
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #f8f8f8;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 255, 0.2);
    background-color: #e0f0ff;
}

/* Number Overlay Styling */
.card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 100;
}

#card_1::before {
    background-image: url('/images/1@4x.png');
}

#card_2::before {
    background-image: url('/images/2@4x.png');
}

#card_3::before {
    background-image: url('/images/3@4x.png');
}

/* Responsive styling to stack cards on mobile view */
/* Responsive styling to stack cards on mobile view */
@media (max-width: 768px) {

    .cta-button {
        padding: 5px 25px;
        font-size: .8em;
    }

    .cta-button-big {
        padding: 5px 25px;
        font-size: 1.0em;
        margin-bottom: 20px;
    }

    .cards {
        flex-direction: column;
        width: 90%; /* Increase container width slightly */
        align-items: center;
    }

    .card {
        width: 75%; /* Increase width of each card */
        margin-bottom: 20px;
        /* Remove or adjust scale */
        transform: scale(1);
    }

    .card::before {
        width: 70px; /* Adjust the size of the number overlay */
        height: 70px;
    }
}


.card-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    z-index: 3;
}

.card-image img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

/* TRY OUT Button Styling */
.try-out-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background-color: white;
    color: #085ae8;
    border: 2px solid #085ae8;
    border-radius: 25px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    z-index: 4;
}

.card:hover .try-out-button {
    opacity: 1;
}

.card-title {
    margin: 15px 0 10px;
    color: #085ae8;
    font-size: 1.2em;
    font-weight: bold;
    z-index: 4;
}

.card-description {
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
    z-index: 4;
}


#feature-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f8f8;
    padding: 20px;
    width: 80%;
    margin: 40px auto; /* Space from other elements */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: left;
    font-family: 'Exo 2', sans-serif; /* Ensures consistent font */
}

#feature-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 255, 0.2);
    background-color: #e0f0ff; /* Match the hover effect with other cards */
}

.feature-content {
    max-width: 50%; /* Reduce width to give more space to the image */
    padding-right: 20px;
}

.feature-content h4 {
    color: #085ae8;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 2px;
}

.feature-content h2 {
    color: #085ae8;
    font-size: 2em;
    font-weight: bold;
    margin: 10px 0;
}

.feature-content p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin: 10px 0;
}

.feature-image {
    max-width: 50%; /* Increased width for a larger image */
}

.feature-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    #feature-section {
        flex-direction: column;
        text-align: center;
        width: 90%; /* Adjusted width for mobile */
    }

    .feature-content {
        max-width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .feature-image {
        max-width: 100%;
    }
}


/* Testimonials Section */
#testimonials {
    text-align: center;
    padding: 0px 0;
}

#testimonials h2 {
    font-size: 2em;
    color: #085ae8;
    margin-bottom: 40px;
}

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

.testimonial-card {
    width: 300px;
    padding: 20px;
    border: 1px solid #e0f0ff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 255, 0.2);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-card h3 {
    font-size: 1.2em;
    color: #005eff;
    margin-bottom: 10px;
}

.testimonial-card p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
}

/* Responsive styling for mobile view */
@media (max-width: 768px) {
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 90%;
        margin-bottom: 20px;
    }
}

#blue-pattern-section {
    margin-top: 15px;
    margin-bottom: 15px;
    position: relative;
    width: 100%;
    height: 30vh; /* Adjust the height as needed */
    overflow: hidden; /* Hide any overflow from the pseudo-element */
}

#blue-pattern-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-image: url('./images/Pattern.png');
    background-size: contain; /* Ensures the image scales to fit while maintaining aspect ratio */
    background-repeat: no-repeat; /* No repeat to show the image once */
    background-position: center center;
    transform: translate(-50%, -50%); /* Centers the background image */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #blue-pattern-section::before {
        background-image: none; /* Removes the background image on mobile */
    }
}

/* Contact Form Container */
.contact-form {
    
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px; /* Adds padding on the sides for desktop as well */
}

.contact-form h2 {
    margin: 30px;
    font-size: 1.8em;
    font-weight: bold;
    color: #085ae8;
    margin-bottom: 20px;
}

/* Input and Textarea Styling */
.contact-form input[type="text"],
.contact-form input[type="email"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 25px;
    background-color: #f2f2f2;
    font-size: 1em;
    color: #333;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form textarea {
    width: 100%;
    height: 150px; /* Makes the text box larger */
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 15px;
    background-color: #f2f2f2;
    font-size: 1em;
    color: #333;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.1);
    resize: none;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

/* Button Styling - Positioned to the Right */
.button-container {
    text-align: right;
}

.contact-form button {
    padding: 20px 20px;
    border: none;
    border-radius: 25px;
    background-color: #085ae8;
    color: white;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-form button:hover {
    background-color: #0040cc;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .contact-form {
        padding: 0 10%; /* Adds padding on mobile to align with the cards */
    }

    .contact-form h2 {
        font-size: 1.5em; /* Slightly smaller title on mobile */
    }
}

/* Footer Styling */
#site-footer {
    background-color: rgb(10,6,229); /* Same gradient as header */
    color: white;
    padding: 10px 0; /* Reduced padding for a smaller vertical size */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    padding: 5px 0; /* Optional: Add slight padding to reduce the overall height */
}

.footer-left, .footer-center, .footer-right {
    display: flex;
    align-items: center;
}

.footer-left .company-info,
.footer-center p,
.footer-right .footer-link {
    margin: 0 10px; /* Adds spacing between elements */
}

.footer-left .logo {
    height: 25px; /* Adjust logo height if needed for a smaller footer */
    margin-right: 10px; /* Adjust spacing to fit smaller footer */
}

.footer-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px; /* Adjust gap between links for a more compact layout */
    padding: 0;
    margin: 0;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-link:hover {
    color: #add8e6;
}

/* Footer Button Styling */
.footer-button {
    padding: 5px 12px; /* Reduced padding for a smaller button size */
    border: 2px solid #ffffff;
    background-color: transparent;
    color: white;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
}

.footer-button:hover {
    background-color: hsla(0, 0%, 100%, 0.942);
    color: #085ae8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 10px 0; /* Adjust padding for mobile view */
    }
    
    .footer-left, .footer-center, .footer-right {
        flex-direction: column;
        align-items: center;
        margin-bottom: 5px;
    }
    
    .footer-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-button {
        padding: 8px 16px;
        font-size: 1em;
    }
}


#about-misson-section {
    margin-top: 15px;
    margin-bottom: 15px;
    position: relative;
    width: 100%;
    height: auto; /* Allows the section height to adjust based on content */
    overflow: hidden; /* Hide any overflow */
    text-align: center;
    padding: 80px 20px;
    color: #085ae8;
}

#about-misson-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/Pattern.png'); /* Adjust the path if necessary */
    background-size: 100% 100%; /* Ensures the image covers the entire section */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image */
    background-color: rgba(248, 248, 248, .6);
    z-index: -1; /* Ensures the background is behind the content */
    
    ;
}

#about-misson-section h1 {
    font-size: 2em;
    font-weight: bold;
    color: #085ae8;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.4;
    padding: 0 20px;
    word-wrap: break-word; /* Ensures text wraps properly */
}

/* Mission & Vision Section */
#mission-vision {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0px 20px;
    gap: 40px;
    text-align: center;
}

.mission-vision-card {
    max-width: 300px;
    padding: 20px;
    text-align: center;
}

.mission-vision-card .icon {
    width: 120px;
    margin-bottom: 15px;
}

.mission-vision-card h2 {
    font-size: 1.5em;
    color: #035eeb;
    margin: 10px 0;
}

.mission-vision-card p {
    font-size: 1em;
    color: #333;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide background image on mobile */
    #about-misson-section::before {
        background-image: none;
    }

    /* Adjust h1 text size, padding, and wrapping for mobile */
    #about-misson-section h1 {
        font-size: 1.5em;
        padding: 0 10px;
        word-wrap: break-word; /* Ensures long words wrap */
        white-space: normal; /* Allows text to wrap naturally */
    }

    /* Adjust mission-vision section layout on mobile */
    #mission-vision {
        flex-direction: column;
        align-items: center;
        padding: 30px 10px;
    }

    .mission-vision-card {
        max-width: 90%;
    }
}


#values-section {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f8f8;
}

#values-section h2 {
    font-size: 2em;
    color: #085ae8;
    font-weight: bold;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 30px; /* Spacing between cards */
    max-width: 600px;
    margin: 0 auto;
}

.value-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card h3 {
    color: #085ae8;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}

.value-card p {
    color: #333;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Hover effect for value cards */
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr; /* Switch to single column */
    }
    
    #values-section h2 {
        font-size: 1.5em;
    }

    .value-card {
        padding: 15px;
    }
}

