/* ============================================
   EDUWELL PLATFORM - MAIN STYLESHEET
   ============================================ */

/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #F0C227;
    --blue: #1A2658;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to right, var(--yellow), var(--blue));
    padding: 1rem 0;
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*.logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    font-size: 1.5rem;*/
/*    font-weight: bold;*/
/*    color: var(--white);*/
/*    text-decoration: none;*/
/*    transition: var(--transition);*/
/*}*/

/*header.scrolled .logo {*/
/*    color: var(--blue);*/
/*}*/

/*.logo-icon {*/
/*    background: var(--white);*/
/*    color: var(--blue);*/
/*    padding: 8px 12px;*/
/*    border-radius: 5px;*/
/*    margin-right: 10px;*/
/*    font-weight: bold;*/
/*}*/


.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.logo-icon {
    width: 40px;          /* adjust size as needed */
    height: 40px;         /* same as width to make a perfect circle */
    border-radius: 50%;   /* makes it circular */
    object-fit: cover;    /* ensures image fits without stretching */
    margin-right: 10px;   /* space between logo and text */
}

.logo-icon img {
    display: block;
    width: 40px; /* adjust as needed */
    height: auto;
}


.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--yellow);
}

header.scrolled .nav-links a:hover {
    color: var(--yellow);
}

/*.login-btn {*/
/*    background: var(--white);*/
/*    color: var(--blue);*/
/*    padding: 10px 25px;*/
/*    border-radius: 25px;*/
/*    font-weight: 600;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    transition: var(--transition);*/
/*    text-decoration: none;*/
/*    display: inline-block;*/
/*}*/

/*.login-btn:hover {*/
/*    background: var(--yellow);*/
/*    color: var(--white);*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 5px 15px rgba(240, 194, 39, 0.3);*/
/*}*/


.login-btn {
    background: var(--white);
    color: var(--blue)!important;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    background: var(--yellow);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

header.scrolled .mobile-menu-btn {
    color: var(--blue);
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8eaf6 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--yellow) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h5 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--yellow);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid;
}

.btn-primary {
    background: var(--yellow);
    color: var(--white);
    border-color: var(--yellow);
}

.btn-primary:hover {
    background: transparent;
    color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240, 194, 39, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

.btn-secondary:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 38, 88, 0.3);
}

.hero-image {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h6 {
    color: var(--yellow);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: var(--white);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card h3 {
    color: var(--blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== ABOUT US SECTION ===== */
.about {
    padding: 80px 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--yellow), var(--blue));
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.about-text h6 {
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-weight: 500;
}

.about-feature-item i {
    color: var(--yellow);
    font-size: 1.2rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--yellow), var(--blue));
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card.gold::before {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.service-card.silver::before {
    background: linear-gradient(135deg, #C0C0C0, #808080);
}

.service-card.bronze::before {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
}

.service-header {
    padding: 2rem;
    text-align: center;
    background: var(--light-bg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.service-card.gold .service-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--white);
}

.service-card.silver .service-icon {
    background: linear-gradient(135deg, #C0C0C0, #808080);
    color: var(--white);
}

.service-card.bronze .service-icon {
    background: linear-gradient(135deg, #CD7F32, #8B4513);
    color: var(--white);
}

.service-header h3 {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.service-body {
    padding: 2rem;
}

.service-body p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--yellow);
}

.service-btn {
    width: 100%;
    padding: 12px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: block;
    text-align: center;
}

.service-btn:hover {
    background: var(--yellow);
    transform: scale(1.05);
}

/* ===== STATISTICS SECTION ===== */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue), #2a3f7a);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(240, 194, 39, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--yellow);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== TEAM SECTION ===== */
.team {
    padding: 80px 0;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 2rem auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 5px solid var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-info {
    padding: 0 2rem 2rem;
}

.team-info h3 {
    color: var(--blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-info p {
    color: var(--yellow);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-desc {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--yellow);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== VERTICALS SECTION ===== */
.verticals {
    padding: 80px 0;
    background: var(--blue);
    color: var(--white);
}

.verticals .section-title h6 {
    color: var(--yellow);
}

.verticals .section-title h2,
.verticals .section-title p {
    color: var(--white);
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vertical-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.vertical-card:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--yellow);
    transform: translateY(-10px);
}

.vertical-card.launching {
    opacity: 0.6;
}

.vertical-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--yellow);
    color: var(--blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vertical-icon {
    width: 100px;
    height: 100px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--blue);
    font-size: 2.5rem;
}

.vertical-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vertical-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--yellow), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-info-item h4 {
    color: var(--blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-info-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form label {
    display: block;
    color: #333333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form select:focus {
    outline: none;
    border-color: #F0C227;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin: 0;
}

.contact-form button i {
    margin-left: 10px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

.success-box{
    background:#d4edda;
    color:#155724;
    padding:12px;
    border-radius:6px;
    margin-bottom:15px;
    border:1px solid #c3e6cb;
    font-weight:500;
}


/* ===== FOOTER ===== */
footer {
    background: var(--blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--yellow);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer-section p i {
    margin-right: 8px;
    color: var(--yellow);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--yellow);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--blue);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        color: var(--white) !important;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .features-grid,
    .services-grid,
    .team-grid,
    .verticals-grid {
        grid-template-columns: 1fr;
    }
}

