@import url(./Nav.css);
/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body{
    /* background: linear-gradient(135deg, #ec97a5, #ffabce, #65c7f7, #708cb9); */
    background-color: #ffe8cf;

}

/* Body Styling */


/* Mission Section Styles */
.mission-section {
   
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    /* margin: 40px 10px; */
    transition: all 0.3s ease-in-out;
    color:black;
    border:1.5px solid black;
    /* padding: 60px 150px; */

   


}

.mission-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.containerp {

     margin:40px 160px;
    /* padding: 0 20px; */
    p {
        font-size: 1.25rem;
        margin-bottom: 20px;
        text-align: justify;
        line-height: 1.8;
        color: #555;
        transition: color 0.3s ease;
    } 



    h2 {
        font-size: 2.5rem;
        color: #1976d2;
        text-align: center;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        font-weight: 700;
    }
    
  
}



/* Remove the blue line effect from Programs and Services */
#programs-services h2::before {
    content: none;
}

/* Headings Styling */


/* Paragraph Styling */


/* Animations */
.mission-section p:hover {
    color: blue;
}

.mission-section p::first-letter {
    font-size: 1.5em;
    font-weight: bold;
    color: #1976d2;
}


@media (min-width: 768px) and (max-width: 1230px) {
    .containerp {
        margin: 35px 30px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .containerp  h2 {
        font-size: 2rem;
    }
    .containerp{
        margin:35px 65px;
    }
    .containerp  p {
        font-size: 1.1rem;
    }
}



@media (max-width: 480px) {
  .containerp  h2 {
        font-size: 1.7rem;
       
    }
    .containerp{
        margin:40px 50px;
    }

  .containerp  p {
        font-size: 1rem;
        color:black;
    }
}

/* Optional Button Style for More Interaction */

button {
    display: block;
    margin: 30px auto 0;
    padding: 12px 28px;
    font-size: 1rem;
    color: #ffffff;
    background: #1976d2;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

button:hover {
    background: #1565c0;
    transform: scale(1.05);
}

/* Our Vision */
.vision-section {
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin: 40px 10px;
    transition: all 0.3s ease-in-out;
    border:1.5px solid black;

}

.vision-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.vision-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.founder-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #1976d2;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.vision-content {
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;


    p {
        font-size: 1.15rem;
        margin-bottom: 20px;
        text-align: justify;
        line-height: 1.8;
        color: #555;
        transition: color 0.3s ease;
    } 



    h2 {
        font-size: 2.5rem;
        color: #1976d2;
        text-align: center;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        font-weight: 700;
    }
}

.vision-content p:hover{
    color:rgb(87, 87, 216);
}
/* Responsive Design */
@media (max-width: 768px) {
    .vision-content h2 {
        font-size: 2rem;
    }

    .vision-content p {
        font-size: 1.1rem;
    }

    .vision-container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .vision-content h2 {
        font-size: 1.7rem;
        font-weight: 900;
    }

    .vision-content p {
        font-size: 1rem;
    }

    .founder-image img {
        width: 120px;
        height: 120px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Programs and Services Section */
#programs-services {
    padding: 50px 20px;
    background: #fff;
    color: #333;
    text-align: center;
}

#programs-services .container {
    max-width: 1200px;
    margin: 0 auto;
}

#programs-services h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

#programs-services p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #7f8c8d;
}

/* Grid layout for program cards */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* Program card styling */
.program-card {
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Hover effect for program cards */
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.program-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.program-card:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    #programs-services h2 {
        font-size: 1.7rem;
    }

    #programs-services p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #programs-services h2 {
        font-size: 1.4rem;
        font-weight: 700;
    }
}

/* Testimonials Section */
#testimonials-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#testimonials-section h2 {
    font-size: 2.5rem; /* Default size for larger screens */
    color: #333;
    margin-bottom: 20px;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-video {
    width: 100%;
    height: 200px;
}

.testimonial-quote {
    padding: 15px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5rem;
}

/* Media query for tablets */
@media (max-width: 768px) {
    #testimonials-section h2 {
        font-size: 2rem; /* Smaller font size for tablets */
    }

    .testimonial-video {
        height: 150px;
    }
}

/* Media query for mobiles */
@media (max-width: 480px) {
    #testimonials-section h2 {
        font-size: 1.5rem; /* Even smaller font size for mobiles */
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        max-width: 90%;
    }
}






/* qulities */

/* Base Styles */


#qualities {
    padding: 50px 20px;
    text-align: center;
    /* background: linear-gradient(to right, #0066cc, #00ccff); */
    background-color: #b28ae7;
    color: #fff;
}

#qualities h2 {
    font-size: 2.6em;
    margin-bottom: 20px;
    color: #fff;
    animation: fadeInDown 1s ease-in-out;
}

.qualities-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.quality {
    background-color: #fff;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 calc(33.333% - 40px);
    max-width: calc(33.333% - 40px);
    animation: fadeInUp 0.7s ease-in-out;
}

.quality:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.quality h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #0066cc;
    margin:8px;
}

.quality p {
    font-size: 1em;
    line-height: 1.6;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .quality {
        flex: 1 1 calc(50% - 40px);
        max-width: calc(50% - 40px);
    }
}

@media (max-width: 768px) {
    .quality {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .qualities-container {
        gap: 15px;
    }
    .quality {
        flex: 1 1 calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
}

@media (max-width: 480px) {
    #qualities h2 {
        font-size: 2em;
    }
    .quality {
        flex: 1 1 calc(100% - 20px);
        max-width: calc(100% - 20px);
        padding: 15px;
    }
}

@media (max-width: 360px) {
    .quality h3 {
        font-size: 1.3em;
    }
    .quality p {
        font-size: 0.9em;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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




/* get in touch */


/* footer */


/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container and Section Styling */
.contact-section {
    margin: 20px 0; /* Add margin to the section */
    padding: 20px; /* Padding inside the section */
    background-color: #f9f9f9; /* Light background color */
}

.container {
    max-width: 800px; /* Limit the width of the form */
    margin: 0 auto; /* Center the container */
    padding: 20px;
    background-color: #fff; /* Background color for the form */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

/* Heading Styling */
.contact-section h2 {
    text-align: center; /* Center the heading */
    margin-bottom: 20px; /* Space below the heading */
    font-size: 24px; /* Font size */
    color: #333; /* Heading color */
}

/* Form Group Styling */
.form-group {
    margin-bottom: 15px; /* Space between form elements */
}

.form-group label {
    display: block; /* Label on a new line */
    margin-bottom: 5px; /* Space between label and input */
    font-weight: bold; /* Bold labels */
    color: #555; /* Label color */
}

.form-group input,
.form-group textarea {
    width: 100%; /* Full width inputs */
    padding: 10px; /* Padding inside inputs */
    border: 1px solid #ddd; /* Light border */
    border-radius: 4px; /* Rounded corners */
    font-size: 16px; /* Font size */
    color: #333; /* Text color */
    transition: border-color 0.3s; /* Transition for focus effect */
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff; /* Change border color on focus */
    outline: none; /* Remove default outline */
}

/* Submit Button Styling */
button[type="submit"] {
    display: block; /* Center the button */
    width: 100%; /* Full width on smaller screens */
    padding: 10px; /* Button padding */
    background-color: #007bff; /* Button background color */
    color: #fff; /* Button text color */
    border: none; /* Remove border */
    border-radius: 4px; /* Rounded corners */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Transition for hover effect */
}

button[type="submit"]:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 15px; /* Less padding on smaller screens */
    }

    .contact-section h2 {
        font-size: 20px; /* Smaller heading on tablets */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px; /* Minimal padding on mobile */
    }

    .contact-section h2 {
        font-size: 18px; /* Even smaller heading on mobile */
    }

    button[type="submit"] {
        font-size: 14px; /* Smaller button text on mobile */
    }
}





/* Free Demo Section */
#free_demo {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(135deg, #4c93db, #009999);
    color: white;
    animation: fadeIn 1.5s ease-in-out forwards;
    opacity: 0; /* Initially hidden for dynamic loading */
}

#free_demo_container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Heading */
.free_demo_heading {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

/* Description */
.free_demo_description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

/* Features Section */
.free_demo_features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.free_demo_feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffcc00;
}

.free_demo_feature-item p {
    font-size: 1rem;
    color: #e0e0e0;
    text-align: justify;
}

/* Course Offerings Section */
.free_demo_course-offerings {
    text-align: left;
    margin-top: 30px;
}

.free_demo_course-offerings h3 {
    font-size: 1.7rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

.free_demo_course-offerings p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: justify;
}

.free_demo_course-offerings ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

.free_demo_course-offerings ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #e0e0e0;
}

/* Contact Number */
.free_demo_contact-number {
    display: block;
    margin: 20px 0;
    font-size: 1.2rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

/* Book Demo Button */
.free_demo_book-demo-btn {
    background-color: #ffcc00;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.free_demo_book-demo-btn:hover {
    background-color: #ff9900;
    transform: scale(1.05);
}

/* Responsive Design for Medium Screens */
@media (min-width: 768px) {
    .free_demo_features {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    #free_demo_container {
        padding: 40px;
    }
}

/* Responsive Design for Extremely Small Screens (less than 480px) */
@media (max-width: 480px) {
    #free_demo {
        padding: 30px 10px;
    }

    .free_demo_heading {
        font-size: 1.5rem;
    }

    .free_demo_description,
    .free_demo_feature-item p,
    .free_demo_course-offerings p,
    .free_demo_course-offerings ul li {
        font-size: 0.9rem;
    }

    .free_demo_book-demo-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .free_demo_contact-number {
        font-size: 1rem;
    }
}

/* Responsive Design for Larger Monitors (over 1200px) */
@media (min-width: 1200px) {
    #free_demo_container {
        max-width: 1200px;
        padding: 50px;
    }

    .free_demo_heading {
        font-size: 2.5rem;
    }

    .free_demo_description {
        font-size: 1.1rem;
    }

    .free_demo_feature-item h3 {
        font-size: 1.7rem;
    }

    .free_demo_feature-item p,
    .free_demo_course-offerings p,
    .free_demo_course-offerings ul li {
        font-size: 1.1rem;
    }

    .free_demo_book-demo-btn {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .free_demo_contact-number {
        font-size: 1.4rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
