/* FONTS & GLOBAL */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #1f2937;
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 700;
}

.section {
    padding: 80px 10%;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    z-index: 1000;
}

.logo {
    height: 100px;
}

nav a {
    margin: 0 20px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
}

.btn-header {
    background: #16a34a;
    padding: 10px 20px;
    border-radius: 10px;
    color: white;
}

/* HERO */
.hero {
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    background: linear-gradient(135deg, #e8f8ef, #ffffff);
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 50px;
    line-height: 1.2;
}

.hero-text h1 span {
    color: #16a34a;
}

.hero-text p {
    margin: 25px 0;
    color: #475569;
}

.cta {
    background: #16a34a;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
}

.hero-img img {
    width: 450px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CARDS */
.cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #ffffff;
    width: 33%;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 20px;
    height: 200px;
    object-fit: cover;
}

/* MENTORAT */
.mentorat {
    background: #f3f4f6;
    border-radius: 60px 60px 0 0;
}

.benefits {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.benefit {
    background: white;
    padding: 25px;
    border-radius: 20px;
    flex: 1;
}

.cta-secondary {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 35px;
    border: 2px solid #16a34a;
    border-radius: 12px;
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
}

/* SERVICES */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service {
    background: #e6f6ec;
    border-radius: 20px;
    padding: 25px;
}

/* CONTACT */
.contact-form {
    display: flex;
    flex-direction: column;
    width: 40%;
    margin: auto;
    gap: 20px;
}

.contact-form input {
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #d1d5db;
}

/* FOOTER NEW STYLE */
.footer {
    background: #1f2937;
    color: white;
    padding: 50px 10%;
    margin-top: 0;
    text-align: center;
}

.footer-content {
    max-width: 900px;
    margin: auto;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 10px;
}

.footer-socials {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-socials .social {
    width: 45px;
    height: 45px;
    background: #16a34a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.footer-socials .social i {
    font-size: 20px !important;
}

copyright {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.7;
}
