/* body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #F0F9F7;
    height: 100vh;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar10{
    display: none;
}

.navbar .logo a {
    font-size: 24px;
    font-weight: bold;
    color: #28A745;
    text-decoration: none;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    font-size: 16px;
    color: #444;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover, .navbar ul li a.active {
    color: #28A745;
}

.navbar .sign-in-btn {
    background: linear-gradient(90deg, #28A745, #00C853);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.navbar .sign-in-btn:hover {
    background: linear-gradient(90deg, #00C853, #28A745);
}

/* Container holding both divs */
.container {
    position: relative;
    display: flex;
    width: 100%;
    height: 600px;
    justify-content: space-between;
    align-items: center;
    padding-top: 80px; /* Adjust for fixed navbar */
}
.container11{
    height: 200px;
    padding-top: 100px;
    width: 100%;
}

/* Left div with gradient text */
.content {
    position: relative;
    z-index: 2; /* Higher z-index for content */
    max-width: 600px;
}

.content h1 {
    font-size: 48px;
    background: linear-gradient(90deg, #28A745, #00C853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1.2;
}

.content p {
    font-size: 18px;
    color: #444;
    margin: 20px 0;
}

.buttons {
    margin-top: 20px;
}

button {
    background-color: #28A745;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 16px;
}

button:nth-child(2) {
    background-color: #00C853;
}

/* Right div with image */
.image-container {
    position: absolute;
    right: 0;
    z-index: 1; /* Lower z-index to be behind the content */
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    max-width: 550px; /* Limiting the max width */
    height: auto;
    opacity: 0.9; /* Slight opacity */
    filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.1)); /* Subtle shadow */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.image-container img:hover {
    transform: scale(1.05); /* Slight zoom */
    opacity: 1; /* Full opacity */
}

/* Gradient background for content */
.content::before {
    content: "";
    position: absolute;
    z-index: -1; /* Behind the text but above the image */
    top: -100px;
    left: -100px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(102, 255, 142, 0.2), rgba(40, 167, 69, 0.6));
    border-radius: 50%;
    filter: blur(80px);
}/* Responsive Styles for Mobile Devices */
@media (max-width: 768px) {
    /* Navbar responsiveness */
    .navbar {
        padding: 15px 30px;
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 0;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: white;
        width: 100%;
        max-width: 300px;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 20px 0;
    }

    .burger {
        display: block;
    }

    .sign-in-btn {
        display: none; /* Optionally hide sign-in on small screens */
    }

    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.toggle .line2 {
        opacity: 0;
    }

    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Container for content */
    .container {
        flex-direction: column;
        padding: 20px;
        margin-top: 100px; /* Adjust to avoid navbar overlay */
        height: auto;
    }

    .content {
        text-align: center;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .navbar10 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #333;
        padding: 10px 20px;
        position: relative;
        z-index:10;
        display: none;
    }

    .content h1 {
        font-size: 32px;
        padding: 30px;
    }

    .content p {
        font-size: 16px;
    }

    /* Image responsiveness */
    .image-container {
        position: relative;
        width: 100%;
        height: 250px;
    }

    .image-container img {
        max-width: 100%;
        height: auto;
    }
}

/* Smaller Mobile Phones (max-width: 576px) */
@media (max-width: 576px) {
    .navbar {
        padding: 10px 20px;
    }

    .nav-links {
        font-size: 14px;
    }

    .content h1 {
        font-size: 28px;
        padding: 30px;
    }

    .content p {
        font-size: 14px;
    }

    .container {
        padding: 15px;
    }

    .image-container {
        height: 200px;
    }

    .image-container img {
        height: auto;
    }
}
@media (max-width: 768px) {
    .nav-links10 {
        position: absolute;
        right: 0;
        height: 30%;
        top: 60px;
        background-color: #333;
        flex-direction: column;
        align-items: center;
        transition: transform 0.5s ease-in;
    }

    .nav-links10 li {
        margin: 20px 0;
    }

    .burger10 {
        display: none;
    }
}

/* Section Styling */
.training-section {
    padding: 50px 0;
    padding-top: 150px;
    text-align: center; /* Center-align text */
    padding-bottom: 200px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title and Subtitle */
.section-title {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #212529;
    margin-bottom: 40px;
}

/* Cards Container */
.cards-wrapper {
    display: flex;
    justify-content: center; /* Center cards */
    gap: 20px;
}

/* Card Styling */
.card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    max-width: 300px; /* Max-width for balance */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card .icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

/* Hover Effect */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Card Headings */
.card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #343a40;
}

/* Card Text */
.card p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #6c757d;
}

/* Learn More Link */
.card a {
    text-decoration: none;
    color: #28a745;
    font-weight: bold;
    transition: color 0.3s ease;
}

.card a:hover {
    color: #1e7e34;
}

/* Specific Card Colors */
.ux-card {
    background-color: #e0f7f5;
}

.java-card {
    background-color: #eaf4fd;
}

.finance-card {
    background-color: #fdebf2;
}

/* Programs Container */
.programs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
}

.college-programs,
.training-center-programs,
.all-programs {
    background-color: #eafaf1;
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

h2 {
    color: #3da774;
    font-size: 24px;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

li {
    font-size: 14px;
    color: #555;
}

.image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

/* Button styles */
.view-more-btn,
.view-all-btn {
    background-color: #3da774;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.view-more-btn:hover,
.view-all-btn:hover {
    background-color: #2e8a5c;
}

.all-programs {
    grid-column: span 2;
}

.program-category {
    margin-bottom: 20px;
}

.program-category h3 {
    color: #3da774;
    font-size: 18px;
    margin-bottom: 10px;
}

.program-category ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
@media (max-width: 992px) {
    .programs-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cards-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        max-width: 100%;
    }

    .view-more-btn, .view-all-btn {
        font-size: 12px;
        padding: 8px 15px;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .training-section {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    .cards-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .card {
        max-width: 100%;
        padding: 15px;
    }

    .programs-container {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 20px;
    }

    .view-more-btn, .view-all-btn {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 12px;
    }
}

.container1 {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 20px auto;
}

.container1 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
    max-width: 1200px; /* Maximum width for the container */
    margin: 20px auto; /* Center the container */
    padding: 10px; /* Add some padding inside the container */
}

/* Card Styles */
.card1 {
    background-color: white; /* Background color for the card */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    overflow: hidden; /* Hide overflow */
    width: calc(25% - 40px); /* 4 cards per row on larger screens, accounting for margins */
    margin: 20px; /* Margin around each card */
    border: 1px solid #00bfa6; /* Border color */
}

/* Image Styles */
.card1-image {
    position: relative; /* Positioning for badge */
}

.card1-image img {
    width: 100%; /* Responsive image width */
    height: auto; /* Maintain aspect ratio */
}

/* Badge Styles */
.duration1-badge {
    position: absolute; /* Positioning of the badge */
    top: 10px; /* Top distance */
    right: 10px; /* Right distance */
    background-color: white; /* Badge background */
    padding: 5px 10px; /* Padding inside badge */
    border-radius: 12px; /* Rounded corners for badge */
    font-size: 0.9em; /* Font size */
    color: #555; /* Text color */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Shadow for badge */
}

/* Content Styles */
.card1-content {
    padding: 20px; /* Padding inside content */
}

.category1 {
    color: #00bfa6; /* Category color */
    font-size: 0.9em; /* Font size */
    font-weight: bold; /* Bold font */
}

.card1-title {
    font-size: 1.2em; /* Title font size */
    margin: 10px 0; /* Margin around title */
}

.card1-description {
    color: #555; /* Description color */
    font-size: 0.9em; /* Font size */
    margin-bottom: 15px; /* Margin below description */
}

/* Rating Styles */
.card1-rating {
    display: flex; /* Flex for alignment */
    align-items: center; /* Center items */
    margin-bottom: 10px; /* Margin below rating */
}

.card1-rating span {
    margin-right: 5px; /* Space between rating text and stars */
}

.stars1 {
    color: orange; /* Star color */
}

/* Author Info Styles */
.author1-info {
    display: flex; /* Flex for alignment */
    align-items: center; /* Center items */
    margin-top: 15px; /* Margin above author info */
}

.author1-info img {
    border-radius: 50%; /* Circular images for author */
    margin-right: 10px; /* Space to the right of image */
}

/* Responsive Styles */
@media (max-width: 992px) {
    .card1 {
        width: calc(33.33% - 40px); /* 3 cards per row on medium screens */
    }
}

@media (max-width: 768px) {
    .card1 {
        width: calc(50% - 40px); /* 2 cards per row on small screens */
    }
}

/* Full-width Styles for Small Screens */
@media (max-width: 480px) {
    .card1 {
        width: 100%; /* Full width for extra small screens */
        margin: 10px 0; /* Margin for better spacing */
    }
}
.author1-info {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.author1-info img {
    border-radius: 50%;
    margin-right: 10px;
}

.testimonials-section {
    text-align: center;
    padding: 50px 0;
    background-color: #e9f8f4;
}

h1 {
    color: #2bb673;
    font-size: 2rem;
}

.testimonials2-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
}

.testimonial2 {
    background-color: #000;
    color: #fff;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
}

.testimonial2-content {
    text-align: center;
}

.testimonial2-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #2bb673;
    margin-bottom: 10px;
}

h3 {
    margin: 10px 0 5px;
}

.title2 {
    color: #bbb;
    margin-bottom: 15px;
}

.quote2 {
    font-style: italic;
}

.nav2-buttons {
    margin-top: 20px;
}

.nav2-buttons button {
    background-color: #2bb673;
    color: #fff;
    border: none;
    padding: 10px;
    margin: 0 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

.nav2-buttons button:hover {
    background-color: #249a5c;
}

.testimonial3-card {
    position: relative;
    background-color: #111;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    max-width: 350px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial3-card::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background-color: #00bf8f;
    border-radius: 15px;
    z-index: -1;
}

.profile3-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.profile3-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.title3 {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 15px;
}

.quote3 {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.sign-in-btn {
    margin-right: 70px;
}

.features {
    background-color: #ffffff;
    padding: 100px;
    max-width: 1000px; /* Limit max width */
    margin: 0 auto; /* Center the container */
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration {
    max-width: 200px;
    z-index: 1;
}

.content {
    flex: 2;
    padding-left: 50px; /* Space for content */
}

h3 {
    color: #12a74e;
    font-size: 24px;
    margin-bottom: 10px;
}

h1 {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.learn-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #12a74e;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.learn-more-btn:hover {
    background-color: #0a825b;
}

/* FAQ Styles */
.faq-container {
    width: 50%;
    background-color: #fff;
    padding: 25px;
    margin: 90px auto; /* Center the FAQ container */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    color: black;
    max-height: 500px;
}

.faq-container h2 {
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: bold;
    color: black;
    position: relative;
}

.faq-container h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #00A3FF;
    margin: 10px auto 0 auto;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background-color: #f7f7f7;
    padding: 18px;
    text-align: left;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: black;
}

.faq-question:hover {
    background-color: #e9e9e9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
    text-align: left;
    color: black;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding: 10px 0;
}

.faq-answer p {
    font-size: 15px;
    color: black;
}

.new {
    display: flex;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .features {
        flex-direction: column; /* Stack features on smaller screens */
        padding: 50px; /* Reduced padding */
    }
    .image-container, .content {
        width: 100%; /* Full width for both sections */
        padding: 0; /* Reset padding */
    }
    .content {
        padding: 20px; /* Add padding for content */
    }
}

@media (max-width: 768px) {
    .testimonials2-container {
        flex-direction: column; /* Stack testimonials vertically */
        align-items: center; /* Center testimonials */
    }
    .testimonial2, .testimonial3-card {
        width: 90%; /* Full width for cards on small devices */
        margin: 10px 0; /* Space between cards */
    }
    .faq-container {
        width: 90%; /* Full width for FAQ container */
    }
}

@media (max-width: 480px) {
    .faq-container {
        padding: 15px; /* Less padding on extra small screens */
        margin: 20px auto; /* Center with reduced margin */
    }
    .faq-question {
        font-size: 14px; /* Smaller font for questions */
        padding: 15px; /* Reduced padding */
    }
    h1 {
        font-size: 1.5rem; /* Smaller title for mobile */
    }
    h2 {
        font-size: 1.5rem; /* Smaller sub-title for mobile */
    }
    h3 {
        font-size: 1.2rem; /* Smaller heading for mobile */
    }
    .description {
        font-size: 16px; /* Smaller description font */
    }
}
.programs-section {
    display: flex; /* Use flexbox to arrange children */
    justify-content: space-between; /* Space out the two columns */
    padding: 40px; /* Padding around the section */
    background-color: #e0f7df; /* Light green background */
}

.program-container {
    display: flex; /* Flexbox for the cards */
    flex-direction: column; /* Stack cards vertically */
    gap: 20px; /* Space between cards */
    width: 48%; /* Each column takes up nearly half the width */
}

.program-card {
    background-color: #9ae2ba; /* Darker green for cards */
    color: white; /* Text color */
    width: 100%; /* Full width of the container */
    height: 330px; /* Fixed height for square effect */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    display: flex; /* Flexbox for internal layout */
    flex-direction: column; /* Column layout for content */
    align-items: center; /* Centering content */
    text-align: center; /* Centering text */
    padding: 20px; /* Padding inside cards */
}

.program-card h2 {
    margin-bottom: 15px; /* Spacing below heading */
}

.program-list {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* No padding */
}

.program-list li {
    margin-bottom: 10px; /* Spacing between list items */
}

.program-image {
    width: 80px; /* Fixed width for images */
    height: auto; /* Automatic height to maintain aspect ratio */
    margin-top: 10px; /* Spacing above image */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .programs-section {
        flex-direction: column; /* Stack the containers vertically */
        align-items: center; /* Center align the columns */
    }
    
    .program-container {
        width: 100%; /* Full width on small screens */
    }
}
/* Modified FAQ container */
.faq-box {
    width: 600px;
    background-color: #fff;
    padding: 25px;
    margin-left: 400px;
    margin-top: 90px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    color: black;
}

.faq-box h2 {
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: bold;
    color: black;
    position: relative;
}

.faq-box h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #00A3FF;
    margin: 10px auto 0 auto;
}

.faq-item-box {
    margin-bottom: 15px;
}

.faq-question-box {
    width: 100%;
    background-color: #f7f7f7;
    padding: 18px;
    text-align: left;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.faq-answer-box {
    display: none;
    padding: 18px;
    border-left: 3px solid #00A3FF;
    font-size: 15px;
    text-align: left;
    background-color: #ffffff;
}


.newsletter-container {
    text-align: center;
    background-color: #2AB57B;
    padding: 100px;
    padding-top: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

p {
    color: #e2e2e2;
    font-size: 16px;
    margin-bottom: 20px;
}

input[type="email"] {
    padding: 12px;
    width: 300px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.subscribe-btn {
    padding: 12px 20px;
    background-color: #f10856;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #c00e4a;
}

.footer {
    background-color: #0f172a;
    color: #fff;
    padding: 20px 20px;
  }
  
  .footer-container {
    width:90%;
    margin: 0 auto;
  }
  
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items at the start of the cross axis */
    margin-bottom: 30px;
  }
  
  .footer-logo {
    display: flex;
    flex-direction: column; /* Stack logo and tagline vertically */
    align-items: flex-start; /* Align items to the left */
  }
  
  .logo-img {
    width: 50px; /* Adjust to your logo size */
    display: block;
  }
  
  .tagline {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 15px;
  }
  
  .footer-links {
    display: flex; /* Use flexbox for the footer links */
    flex-direction: row; /* Keep the columns horizontal */
    width: 800px;
  }
  
  .footer-column {
    margin-left: 40px; /* Space between columns */
    margin-right: 60px;
    width: 70px;
    padding-right: 10px;
  }
  
  .footer-column h4 {
    font-size: 16px;
    color: #d1d5db;
    margin-bottom: 10px;
  }
  
  .footer-column ul {
    list-style-type: none;
    padding: 0; /* Remove default padding */
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }
  
  .footer-column ul li a:hover {
    text-decoration: underline;
  }
  
  .footer-column .new {
    background-color: #fff;
    color: #0f172a;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 10px;
    margin-left: 5px;
  }
  
  .footer-bottom p {
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    margin-right:900px;
  }
  
  .footer-social-icons{
    display: inline;
    margin-right: 10px;
    margin-left: 750px;
  }

  .footer-social-icons a{
    padding-right: 10px;
  }
  
  .footer-social-icons a img {
    width: 20px; /* Icon size */
  }

  .testimonials-section {
    padding: 40px;
    background-color: #e0f7df; /* Light greenish background */
    position: relative;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.testimonial-container {
    display: flex;
    gap: 30px;
    overflow: hidden;
    width: 100%; /* Set to 100% for responsiveness */
    max-width: 1200px; /* Max width for large screens */
    height: 500px;
    padding: 20px;
    position: relative;
    scroll-behavior: smooth;
    transition: transform 0.5s ease;
}

/* Testimonial Cards */
.testimonial-card {
    width: 320px;
    height: 380px;
    background-color: #2e8b57; /* Greenish card color */
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.testimonial-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #e0f7df;
}

.position {
    font-size: 0.9rem;
    color: #d2f0c5; /* Lighter green */
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #f0fff0; /* Very light greenish-white */
}

.about-us {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%; /* Set to 100% for responsiveness */
    max-width: 1200px;
    height: 500px;
    margin: 140px auto; /* Centering with auto margin */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content {
    max-width: 50%;
}

h1 {
    font-size: 3rem;
    color: #10914f;
    margin-bottom: 20px;
}

blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #000;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.join-btn {
    background-color: #10914f;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
}

.images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.who-images {
    width: 400px;
    height: 200px;
    border-radius: 10px;
}

.image-top {
    width: 350px;
}

.image-bottom {
    width: 350px;
}

/* Keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.carddd {
    height: 200px;
    padding: 35px;
}

.leftt {
    opacity: .6;
}

.middleee {
    height: 450px;
    width: 400px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #f5f5f5;
    gap: 30px;
}

.content {
    flex: 1;
    z-index: 2;
}

h1 {
    background: green;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.buttons button {
    margin-right: 10px;
    padding: 10px 20px;
    background-color: green;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.buttons button:hover {
    background-color: #005F56;
}

.image-container {
    flex: 1;
    z-index: 1;
}

.image-container img {
    width: 100%;
    max-width: 400px;
    object-fit: contain;
}

.form-container {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 90px;
}

.form-container h2 {
    margin-bottom: 20px;
    color: #005F56;
    font-size: 1.8em;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #00FF87;
    border-radius: 5px;
    font-size: 1em;
    background-color: #f9f9f9;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #005F56;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    background: green;
    border: none;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

button[type="submit"]:hover {
    background: green;
}

/* Enquiry Button */
.open-enquiry-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: background-color 0.3s;
}

.open-enquiry-btn:hover {
    background-color: #0056b3;
}

/* Popup Form */
.popup-form {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Form Styling */
.popup-content form {
    display: flex;
    flex-direction: column;
}

.popup-content label {
    margin-bottom: 5px;
    font-weight: bold;
}

.popup-content input,
.popup-content textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.submit-btn {
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.popup-form {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Higher z-index to appear above other elements */
}

.popup-content {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 400px; /* Set a max width for the form */
    width: 90%; /* Full width on smaller screens */
}

.popup-content h2 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.popup-content label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #555;
}

.popup-content input[type="text"],
.popup-content input[type="email"],
.popup-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.popup-content button.submit-btn {
    background-color: #007BFF; /* Primary button color */
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.popup-content button.submit-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.close-enquiry-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .testimonial-container {
        flex-direction: column; /* Stack testimonials vertically */
        width: 100%; /* Full width for smaller screens */
        height: auto; /* Adjust height for stacking */
    }

    .testimonial-card {
        width: 90%; /* Full width for smaller screens */
        max-width: 320px; /* Limit maximum width */
        margin: 0 auto; /* Centering */
    }

    .about-us {
        flex-direction: column; /* Stack about us content vertically */
        height: auto; /* Adjust height for smaller screens */
    }

    .content {
        max-width: 100%; /* Allow full width on smaller screens */
    }

    h1 {
        font-size: 2.5rem; /* Adjust heading size */
    }

    .container {
        flex-direction: column; /* Stack content vertically */
        padding: 20px; /* Adjust padding */
    }

    .form-container {
        margin-top: 30px; /* Adjust top margin */
    }

    .image-container img {
        max-width: 100%; /* Responsive images */
    }

    .who-images {
        width: 100%; /* Full width for smaller screens */
        height: auto; /* Responsive height */
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem; /* Further adjust heading size */
    }

    .testimonial-card {
        width: 100%; /* Full width */
        margin-bottom: 20px; /* Space between cards */
    }

    .join-btn {
        width: 100%; /* Full width button */
    }

    .open-enquiry-btn {
        padding: 15px; /* Larger padding */
        font-size: 1rem; /* Adjust font size */
    }

    .popup-content {
        width: 90%; /* Responsive width */
    }
}

@media (max-width: 480px) {
    .navbar{
        display: none;
    }
    .navbar10 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #333;
        padding: 10px 20px;
        position: relative;
        z-index:10;
    }
    h1 {
        font-size: 1.5rem; /* Heading size for very small screens */
    }

    p {
        font-size: 1rem; /* Text size for very small screens */
    }

    .form-container {
        padding: 20px; /* Adjust padding */
    }

    .popup-content h2 {
        font-size: 20px; /* Smaller heading size */
    }

    .testimonial-text {
        font-size: 0.85rem; /* Smaller testimonial text */
    }

    .buttons button {
        padding: 8px 15px; /* Adjust button size */
        font-size: 0.9rem; /* Smaller button text */
    }
    .training-section{
        margin-bottom: 700px;
        margin-left: 35px;
    }
    .programs-section{
        margin-bottom: 100px;
        padding: 5px;
    }
    .siuu{
        margin-bottom: 20px;
    }
    .container1{
        padding: 5px;
        margin-left: 32px;
        margin-bottom: 150px;
    }
    .testimonials-section{
        width: 100%;
        padding: 5px;
        padding-right: 80px;
    }
    .testimonial-wrapper{
        width: 400px;
    }
    .testimonial-container{
        width: 100%;
    }
    .testimonial-card{
        width: 100%;
    }
    .about-us{
        margin-left: 25px;
    }
    .about-us .images{
        margin-left: 20px;
    }
    .features{
        width: 100%;
    }
    .faq-container{
        width: 100%;
        padding: 20px;
        padding-left: 30px;
        padding-right: 30px;
        margin-left: 20px;
    }
    .newsletter-container{
        width: 75%;
    }
    .footer{
        width: 460px;
        padding-bottom:0%;
    }
    .siuu{
        padding-bottom: 20px;
    }
}

/* General Styles */
/* General Styles */
.navbar10 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    position: relative;
    z-index: 999; /* Ensure the navbar stays above content */
}

.navbar10 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Navigation Links */
.navbar10 ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 15px;
    padding: 5px;
    margin: 0;
    transition: background-color 0.3s ease;
}

.navbar10 ul li a:hover,
.navbar10 ul li a.active {
    background-color: #457947;
    color: white;
    border-radius: 5px;
    transition: 0.3s;
}

/* Cool Animated Burger Menu */
.burger10 {
    display: none; /* Hidden on larger screens */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
}

.burger10 div {
    width: 100%;
    height: 3px;
    background-color: rgb(82, 145, 100);
    border-radius: 5px;
    transition: all 0.3s ease; /* Smoother animation for burger lines */
}

/* Animation for toggler when clicked */
.navbar10.active .burger10 .line1 {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar10.active .burger10 .line2 {
    opacity: 0;
}

.navbar10.active .burger10 .line3 {
    transform: rotate(45deg) translate(-5px, -5px);
}


/* Mobile-specific Navbar */
@media (max-width: 768px) {
    .nav-container10 {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 0; /* Remove any extra padding */
        z-index: 998;
    }

    .navbar10.active .nav-container10 {
        display: flex; /* Show the menu when active */
        flex-direction: row; /* Column-wise */
        gap: 0; /* No gap between menu items */
    }

    .navbar10 ul {
        width: 40%;
        height:450px;
        text-align: center;
    }

    .navbar10 ul li {
        width: 40%;
        border-bottom: 1px solid #ddd; /* Line between menu items */
    }

    .navbar10 ul li a {
        display: block;
        padding: 5px;
        color: white;
        width: 100%; /* Ensure full width */
    }

    /* Cool hover effect for dropdown links */
    .navbar10 ul li a:hover {
        background-color: rgb(40, 155, 66);
        color: white;
        transition: 0.3s ease;
    }

    /* Show burger on mobile */
    .burger10 {
        display: flex;
    }
}


/* Desktop-specific Navbar */
@media (min-width: 769px) {
    /* Hide mobile navbar */
    .navbar10 {
        display: none;
    }

    /* Show desktop navbar */
    .navbar {
        display: flex;
    }

    .burger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .burger div {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 4px;
    }
}
