/* 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;
}

.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: 40px;
    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);
}

/* 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;
}

/* Layout for programs */
.programs-container {
    display: flex; /* Use flexbox for layout */
    margin: 20px; /* Space around the container */
    background-color: #82e7ac;
}

.large-program {
    flex: 2; /* Takes twice the space of the smaller divs */
    background-color: #f9f9f9; /* Background color */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding inside the div */
    background-color: #32f583;
    margin-right: 20px; /* Space between sections */
}

.small-program {
    flex: 1; /* Smaller divs take less space */
    background-color: #eafaf1; /* Background color */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding inside the div */
    background-color: #63f19e;
}

/* General program styles */
.program-title {
    font-size: 20px; /* Larger font for titles */
    color: #28A745; /* Green color */
    margin-bottom: 10px; /* Space below the title */
}

.program-description {
    font-size: 14px; /* Smaller font for descriptions */
    color: #555; /* Gray color */
}

/* Footer styles */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    position: relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
}

.footer p {
    color: #28A745;
}


.container1 {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 20px auto;
}

.card1 {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 400px;
    margin: 20px;
    border: 1px solid #00bfa6;
}

.card1-image {
    position: relative;
}

.card1-image img {
    width: 100%;
    height: auto;
}

.duration1-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.9em;
    color: #555;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card1-content {
    padding: 20px;
}

.category1 {
    color: #00bfa6;
    font-size: 0.9em;
    font-weight: bold;
}

.card1-title {
    font-size: 1.2em;
    margin: 10px 0;
}

.card1-description {
    color: #555;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.card1-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.card1-rating span {
    margin-right: 5px;
}

.stars1 {
    color: orange;
}

.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;
}

.testimonial2 {
    background-color: #000;
    color: #fff;
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    position: relative;
}

.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;
}

.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;
    width: 1000px;
    margin: 0 auto;
    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;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration {
    max-width: 200px;
    z-index: 1;
}

.content {
    flex: 2;
    padding-left: 50px;
}

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;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        padding: 20px;
    }

    .content {
        padding-left: 0;
        margin-top: 20px;
    }

    .illustration {
        max-width: 250px;
    }
}
#torch {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(60, 135, 6, 0.8) 60%, rgba(58, 91, 32, 0.9) 80%);
    pointer-events: fill;
    mix-blend-mode: multiply;
    z-index: 1;
    display: none; /* Hidden initially */
}
#torch:hover{
    width: 100px;
}

.dark {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
}
.faq-container {
    width: 50%;
    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;
    height: 500px;
    margin-bottom: 50px;
}

.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;
}
.image{
    display: flex;
    justify-content: center;
}
.programs-section {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    height: 900px;
    width: 100%;
    position: relative;
    padding-top: 20px;
    padding-bottom: 100px;
}

.program-card1 {
    background-color: #d6f2e3;
    border: 2px solid #00A366;
    padding: 20px;
    text-align: center;
    position: absolute;
    width: 525px;

height: 420px;
left: 160px;
gap: 0px;
opacity: 0px;
margin-left: 10px;
border-radius: 15px;
}
.program-card2 {
    background-color: #d6f2e3;
    border: 2px solid #00A366;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    position: absolute;
    width: 525px;
    height: 420px;
    border: 2px 0px 0px 0px;
    gap: 0px;
    opacity: 0px;
    angle: 90 deg;
    right: 30px;
    padding-bottom: 20px;
    gap: 10px;
    left: 780px;
}

.program-card3 {
    background-color: #d6f2e3;
    border: 2px solid #00A366;
    border-radius: 15px;
    padding: 20px;
    top: 515px;
    text-align: center;
    position: absolute;
    width: 525px;
    height: 420px;
    gap: 0px;
    border: 2px 0px 0px 0px;
    opacity: 0px;
    left: 780px;
    padding-top: 10px;
}
.program-card4 {
    background-color: #d6f2e3;
    border: 2px solid #00A366;
    border-radius: 15px;
    padding: 20px;
    top: 515px;
    text-align: center;
    position: absolute;
    width: 525px;
    height: 420px;
    gap: 0px;
    border: 2px 0px 0px 0px;
    opacity: 0px;
    left: 160px;
    padding-top: 10px;
    margin-left: 10px;
}

.program-card h2 {
    font-size: 18px;
    color: #00A366;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 8px;
    color: black;
    margin-bottom: 20px;
}

.program-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.view-more-btn, .view-all-btn {
    display: inline-block;
    background-color: #00A366;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.view-more-btn:hover, .view-all-btn:hover {
    background-color: #008f5b;
}

.program-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.program-column {
    width: 45%;
}

.program-column h3 {
    font-size: 16px;
    color: #00A366;
    margin-bottom: 10px;
}
.program-column ul {
    list-style: none;
    padding-left: 0;
}

.program-column ul li {
    font-size: 14px;
    color: #333;
}

.program-image1{
    position: absolute;
    right: 40px;
    top: 20px;
}

/* Modified CSS for torchlight effect */
#torch-light {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(60, 135, 6, 0.8) 60%, rgba(58, 91, 32, 0.9) 80%);
    pointer-events: fill;
    mix-blend-mode: multiply;
    z-index: 1;
    display: none; /* Hidden initially */
}

#torch-light:hover {
    width: 100px;
}

.dark-overlay {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
}

/* 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 */
  }

/* Testimonial Section */
.testimonials-section {
    padding: 40px;
    background-color: #e0f7df; /* Light greenish background h*/
    position: relative;
  }
  
  .testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .testimonial-container {
    display: flex;
    gap: 30px;
    overflow: hidden;
    width: 1200px;
    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: 1200px;
    height: 500px;
    margin: 140px;
    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;
    font-size: 1rem;
}

.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;
}

@media (min-width: 1200px) {
    .navbar ul {
        gap: 25px;
    }

    .navbar ul li a {
        font-size: 18px;
    }

    .container {
        max-width: 1300px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.8rem;
    }
    
    .cards-wrapper {
        gap: 30px;
    }
    
    .card h3 {
        font-size: 1.5rem;
    }

    .card p {
        font-size: 1.1rem;
    }
}

/* For tablets (768px to 1199px) */
@media (max-width: 1199px) {
    .navbar ul {
        gap: 20px;
    }

    .navbar ul li a {
        font-size: 16px;
    }

    .container {
        max-width: 900px;
        padding: 0 30px;
    }

    .content h1 {
        font-size: 36px;
    }

    .cards-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .card h3 {
        font-size: 1.4rem;
    }

    .card p {
        font-size: 1rem;
    }

    .programs-container {
        grid-template-columns: 1fr;
    }
}

/* For mobile devices (max-width: 767px) */
@media (max-width: 767px) {
    .navbar {
        padding: 15px 30px;
    }

    .navbar ul {
        flex-direction: column;
        gap: 10px;
        background-color: #ffffff;
        padding: 15px 0;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        display: none;
    }

    .navbar ul li {
        margin: 10px 0;
    }

    .navbar .sign-in-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .content h1 {
        font-size: 28px;
    }

    .container {
        flex-direction: column;
        text-align: center;
    }

    .image-container {
        position: static;
        width: 100%;
        margin-top: 30px;
    }

    .image-container img {
        width: 80%;
        max-width: 300px;
    }

    .training-section {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .cards-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
    }

    .programs-container {
        grid-template-columns: 1fr;
    }

    /* For navbar toggle (optional) */
    .navbar ul.active {
        display: flex;
        flex-direction: column;
    }

    /* Program Cards Adjustment */
    .card {
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .container {
        flex-direction: column;
        padding: 20px;
    }

    .image-container {
        position: relative;
        width: 100%;
        order: 1; /* Place image below text on mobile */
    }

    .content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .cards-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .testimonial2 {
        width: 100%;
    }

    .testimonial3-card {
        max-width: 100%;
    }

    .nav2-buttons button {
        margin: 10px 0;
    }
}

/* Extra small devices (phones, 576px and below) */
@media (max-width: 576px) {
    .navbar {
        padding: 10px 20px;
    }

    .navbar .logo a {
        font-size: 18px;
    }

    .navbar ul li a {
        font-size: 14px;
        padding: 8px 10px;
    }

    .container {
        padding: 10px;
    }

    .content h1 {
        font-size: 32px;
    }

    .content p {
        font-size: 16px;
    }

    .card {
        max-width: 100%;
    }

    .programs-container {
        grid-template-columns: 1fr;
    }

    .card1 {
        width: 100%;
        margin: 10px 0;
    }

    .large-program, .small-program {
        flex: 1;
        margin: 0 0 20px;
    }

    .testimonial2 {
        width: 90%;
        margin: 0 auto;
    }

    .testimonial3-card {
        max-width: 90%;
    }
}

/* Medium devices (desktops, 992px and below) */
@media (max-width: 992px) {
    .programs-container {
        grid-template-columns: 1fr 1fr;
    }

    .cards-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial2 {
        width: 80%;
    }

    .testimonial3-card {
        max-width: 80%;
    }
}
@media (max-width: 768px) {
    .features {
        flex-direction: column;
        padding: 20px;
        width: 100%;
    }

    .faq-container {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .program-card1, .program-card2, .program-card3, .program-card4 {
        position: relative;
        width: 100%;
        height: auto;
        margin: 10px 0;
        left: 0;
    }

    .sign-in-btn {
        margin-right: 20px;
    }

    .torch {
        width: 80px;
        height: 80px;
    }

    .content {
        padding-left: 0;
        margin-top: 20px;
    }

    .illustration {
        max-width: 150px;
    }
}

/* Extra small devices (phones, 576px and below) */
@media (max-width: 576px) {
    .faq-container {
        padding: 10px;
    }

    .program-card1, .program-card2, .program-card3, .program-card4 {
        width: 100%;
        height: auto;
    }

    .program-card h2 {
        font-size: 16px;
    }

    .program-card p {
        font-size: 12px;
    }

    .torch {
        width: 60px;
        height: 60px;
    }

    .features {
        padding: 10px;
    }
}
@media (max-width: 768px) {
    .view-more-btn, .view-all-btn {
        bottom: 15px;
        right: 15px;
        padding: 8px 16px;
    }

    .program-list {
        flex-direction: column;
        align-items: center;
    }

    .program-column {
        width: 100%;
        margin-bottom: 20px;
    }

    .program-image1 {
        right: 20px;
        top: 10px;
    }

    .faq-box {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .newsletter-container {
        padding: 50px 20px;
    }

    input[type="email"] {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-container {
        width: 100%;
    }

    .footer-column {
        margin-left: 20px;
        margin-right: 20px;
        width: auto;
    }

    .footer-social-icons {
        margin-left: 50px;
    }

    .testimonial-container {
        width: 100%;
        flex-direction: column;
        height: auto;
    }
}

/* For phones and small screens (576px and below) */
@media (max-width: 576px) {
    .view-more-btn, .view-all-btn {
        bottom: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }

    .program-column h3 {
        font-size: 14px;
    }

    .program-column ul li {
        font-size: 12px;
    }

    .faq-box {
        width: 100%;
        padding: 15px;
        margin-top: 30px;
    }

    .newsletter-container {
        padding: 30px 10px;
    }

    input[type="email"] {
        padding: 10px;
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer-bottom p {
        margin-right: 0;
        text-align: center;
    }

    .testimonial-container {
        width: 100%;
        height: auto;
        gap: 20px;
    }
}
@media (max-width: 800px) {
    .testimonial-card {
        width: 90%; /* Make cards wider for smaller screens */
        height: auto; /* Allow height to adjust */
        padding: 20px; /* Adjust padding */
    }

    .about-us {
        flex-direction: column; /* Stack the content vertically */
        width: 100%; /* Full width */
        margin: 20px; /* Reduce margin */
    }

    .content {
        max-width: 100%; /* Full width */
        margin-bottom: 20px; /* Space between sections */
    }

    h1 {
        font-size: 2.5rem; /* Adjust font size */
    }

    .join-btn {
        padding: 8px 15px; /* Adjust button size */
        font-size: 0.9rem; /* Adjust font size */
    }

    .images {
        flex-direction: column; /* Stack images vertically */
        align-items: center; /* Center images */
    }

    .who-images {
        width: 100%; /* Full width on smaller screens */
    }

    .middleee {
        width: 100%; /* Full width for better fit */
    }

    .container {
        flex-direction: column; /* Stack content */
        padding: 20px; /* Reduce padding */
    }

    .form-container {
        margin-top: 20px; /* Reduce top margin */
        padding: 20px; /* Adjust padding */
    }

    .form-container h2 {
        font-size: 1.5em; /* Adjust header size */
    }

    button[type="submit"] {
        font-size: 1em; /* Adjust font size */
    }

    .open-enquiry-btn {
        bottom: 15px; /* Adjust position */
        right: 15px; /* Adjust position */
    }
    .training-section{
        padding-bottom: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .cardddwraper{
        display: block;
        padding-left: 25%;
        padding-bottom: 500px;
        padding-top: 0;
    }
    .carddd{
        margin-bottom: 30px;
    }
    .programs-section{
        width: 100%;
        height: 950px;
        padding-top: 400px;
        position: relative;
    }
    .program-card1{
        width: 45%;
        padding: 20px;
        height: 200px;
        position: absolute;
        top: 200px;
        left: 180px;
    }
    .program-card1 img{
        display: none;
    }
    .program-card2{
        width:  45%;
        padding: 20px;
        height: 200px;
        position: absolute;
        top: 460px;
        left: 180px;
    }
    .program-card2 img{
        display: none;
    }
    .program-card3{
        position: absolute;
        top: 720px;
        left: 180px;
        width: 45%;
        padding: 20px;
        height: 200px;
    }
    .program-card3 .program-list{
        width: 100%;
        height: 100px;
        padding: 0%;
        font-size: 10px;
    }
    .program-card3 .program-column{
        width: 100%;
        height: 40px;
    }
    .program-card4{
        width: 45%;
        padding: 20px;
        height: 200px;
        position: absolute;
        top: 980px;
        left: 180px;
    }
    .program-column{
        padding: 0;
        height: 150px;
    }
}

/* For phones and small screens (576px and below) */
@media (max-width: 576px) {
    .testimonial-card {
        width: 100%; /* Full width for cards */
        padding: 15px; /* Further adjust padding */
    }

    .about-us {
        margin: 10px; /* Reduce margin */
    }

    h1 {
        font-size: 2rem; /* Further reduce font size */
    }

    blockquote p {
        font-size: 1.2rem; /* Adjust font size */
    }

    .join-btn {
        padding: 8px 15px; /* Adjust button size */
        font-size: 0.8rem; /* Adjust font size */
    }

    .who-images {
        width: 100%; /* Full width */
    }

    .middleee {
        width: 100%; /* Full width */
    }

    .form-container {
        padding: 15px; /* Further adjust padding */
    }

    .form-container h2 {
        font-size: 1.5em; /* Adjust header size */
    }

    button[type="submit"] {
        font-size: 1em; /* Adjust font size */
    }

    .open-enquiry-btn {
        bottom: 10px; /* Adjust position */
        right: 10px; /* Adjust position */
    }
}