/* Updated styles.css */

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #f9fafb;
    color: #333;
}

header {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffdd57;
}

.burger {
    display: none;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

#hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background: #ffdd57;
    color: #333;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #ffcc33;
}

/* Services Section */
#services {
    padding: 3rem 1rem;
    text-align: center;
    background: #fff;
}

#services h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #6a11cb;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 1.5rem;
    width: 280px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    margin: 0 0 1rem;
    color: #2575fc;
}

.card p {
    margin: 0 0 1.5rem;
    color: #555;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem 0;
    background: #6a11cb;
    color: #fff;
    font-size: 0.9rem;
}

footer a {
    color: #ffdd57;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .service-cards {
        gap: 1.5rem;
    }

    .card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: block;
        cursor: pointer;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 1.5rem;
    }

    #hero p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.5rem 1rem;
    }



}
/* Form Container */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: white;
    color: #333;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to right, #4A00E0, #8E2DE2);
    color: white;
}

#contact-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
    flex-wrap: wrap;
}

.contact-card {
    background: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 250px;
    text-align: center;
}

#contact-form-section {
    text-align: center;
    padding: 30px;
}

form {
    width: 50%;
    margin: 0 auto;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: linear-gradient(to right, #4A00E0, #8E2DE2);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    width: 50%;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: linear-gradient(to right, #8E2DE2, #4A00E0);
}

#map {
    text-align: center;
    padding: 30px;
}

footer {
    background: linear-gradient(to right, #4A00E0, #8E2DE2);
    text-align: center;
    padding: 15px;
    color: white;
}

.social-icons a img {
    width: 30px;
    margin: 0 10px;
}

:root {
    --primary-purple: #6a5acd;
    --secondary-purple: #483d8b;
    --accent-blue: #4169e1;
    --background-color: #f4f4f8;
    --text-color: #2c3e50;
    --overlay-color: rgba(106, 90, 205, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.team-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-header h1 {
    font-size: 2.8em;
    background: linear-gradient(to right, var(--primary-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.team-header p {
    color: var(--secondary-purple);
    font-size: 1.2em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.member-wrapper {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.member-wrapper:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    height: 350px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-wrapper:hover .image-overlay {
    opacity: 1;
}

.member-details {
    color: white;
    text-align: center;
}

.member-details h3 {
    font-size: 1.4em;
    margin-bottom: 5px;
}

.member-details .role {
    font-size: 1em;
    opacity: 0.8;
}

.member-contact {
    padding: 20px;
    background-color: white;
    text-align: center;
}

.contact-info h4 {
    color: var(--primary-purple);
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--text-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    color: var(--secondary-purple);
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-blue);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Centering the login form */
#login-form {
    width: 300px;
    margin: 50px auto;
    padding: 20px;
    background: #f8f9fa;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}



.back-button {
    background-color: transparent;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid white;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.back-button:hover {
    background-color: white;
    color: #4f86f0; /* Blue color for text when hovering */
    cursor: pointer;
}

/* Main Container */
.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, #1a237e, #673ab7);
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
}

/* Header Styles */
.team-header {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    position: relative;
}

.team-header h2 {
    font-size: 2.5rem;
    margin: 0;
    padding-bottom: 1rem;
}

.team-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #e040fb);
    border-radius: 2px;
}

/* Grid Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

/* Team Member Card */
.team-member {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Member Image */
.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #00bcd4, #e040fb) border-box;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

/* Member Info */
.member-info {
    color: white;
}

.member-name {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
}

.member-role {
    color: #b39ddb;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-header h2 {
        font-size: 2rem;
    }

    .team-grid {
        gap: 1.5rem;
    }

    .member-image {
        width: 120px;
        height: 120px;
    }
}

/*
 /* css for the stem page*/

/* General Styles */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
    text-align: center;
}

/* Header */
header {
    background: linear-gradient(135deg, #4A00E0, #8E2DE2);
    color: white;
    padding: 50px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

button {
    background: #ffcc00;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

button:hover {
    background: #ffdb4d;
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 60px 20px;
    background: white;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Cards */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    transition: 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: scale(1.05);
}

/* Carousel */
.carousel {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.project {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.testimonial-slider {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.testimonial img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #4A00E0;
}

/* Partners */
.partner-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.partner img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* CTA Section */
#cta {
    background: rgba(0, 0, 0, 0.05);
    padding: 50px 20px;
}

#cta button {
    margin: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cards, .carousel, .testimonial-slider, .partner-logos {
        flex-direction: column;
        align-items: center;
    }
}
.card img, .project img, .testimonial-img, .partner-logo {
    width: 150px; /* Adjust as needed */
    height: 150px; /* Maintain uniform size */
    object-fit: cover; /* Ensures the image fills the space without distortion */
    border-radius: 10px; /* Adds rounded corners for better appearance */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

.project img {
    width: 200px; /* Slightly larger for project images */
    height: 150px;
}

.testimonial-img {
    width: 80px; /* Smaller for testimonial images */
    height: 80px;
    border-radius: 50%; /* Makes it circular */
}

.partner-logo {
    width: 120px;
    height: auto; /* Maintains aspect ratio */
}


 /* development page css*/

 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
}

.services {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services h1 {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #4a00e0, #8e2de2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, #4a00e0, #8e2de2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.learn-more {
    background: linear-gradient(45deg, #4a00e0, #8e2de2);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.learn-more:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .services {
        padding: 2rem 1rem;
    }
    
    .services h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* css for footer*/
footer {
    background: linear-gradient(to right, #4A00E0, #8E2DE2); /* Blue-Purple Gradient */
    padding: 10px 0;  /* Reduced padding */
    text-align: center;
    color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;  /* Less space between elements */
}

.footer-content p {
    margin-bottom: 5px;
    font-size: 12px;  /* Slightly smaller text */
}

.social-icons {
    display: flex;
    gap: 10px;  /* Closer icons */
}

.social-icons a img {
    width: 25px;  /* Smaller icons */
    height: 25px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease-in-out, filter 0.3s;
}

.social-icons a:hover img {
    transform: scale(1.1);
    filter: brightness(1) invert(0);
}



/* css for course section*/

        /* Moving styles to a separate file as requested - this would be in styles.css */
        :root {
            --primary: #4361ee;
            --secondary: #7209b7;
            --accent: #3a0ca3;
            --text-primary: #2b2d42;
            --text-secondary: #8d99ae;
            --background: #ffffff;
            --card-bg: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: var(--background);
            color: var(--text-primary);
        }


        

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-btn {
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            border: none;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

          .login-btn {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .login-btn:hover {
            background: var(--primary);
            color: white;
        }

        .signup-btn {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
        }

        .signup-btn:hover {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            opacity: 0.9;
        }

        .container {
            max-width: 1200px;
            margin: 7rem auto 2rem;
            padding: 0 2rem;
        }

        .hero {
            text-align: center;
            margin-bottom: 4rem;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            color: var(--text-secondary);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .course-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .course-image {
            height: 200px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }

        .course-content {
            padding: 1.5rem;
        }

        .course-level {
            display: inline-block;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 1rem;
            color: white;
        }

        .beginner { background: #4CAF50; }
        .intermediate { background: #FF9800; }
        .advanced { background: #F44336; }

        .course-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .course-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .course-details {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .enroll-btn {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .enroll-btn:hover {
            opacity: 0.9;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }

        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            width: 90%;
            max-width: 400px;
            position: relative;
        }

        .modal-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .modal-header h2 {
            color: var(--text-primary);
            font-size: 1.5rem;
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-secondary);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .form-group input {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .nav-content {
                flex-direction: column;
                gap: 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .container {
                margin-top: 9rem;
            }
        }
    </style>