@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

header {

    width: 100%;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.license-badge {
    background: #2E7D32;
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .15);
    transition: .3s;
}

.license-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
}

.logo img {
    width: 80px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

nav ul li a:hover {
    color: #2e7d32;

}


.btn {
    text-decoration: none;
    color: #fff;
    background: #2E7D32;
    padding: 12px 28px;
    border-radius: 40px;
    transition: .3s;
}

.btn:hover {

    background: #1B5E20;
    transform: translateY(-8px) scale(1.03);
}

nav ul li:first-child a {
    color: #2E7D32;
}

/* ==========================
        HERO SECTION
========================== */

.hero {
    padding: 170px 0 80px;
    background: #1C2B24;
    /* Poster dark green */
}

.hero-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-brand {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 6px;
    color:white;
}

.hero-content h1 {
    font-size: 65px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: -1px;
    color: #fff;

    margin: 4px 0 12px;
    line-height: .95;
}

.hero-content h1 span {
    color: #7DBB6E;
}

.hero-content p:not(.hero-brand) {
    font-size: 22px;
    color: #D9D9D9;

    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-content p strong {
    color: #8ED081;
}

/*=========================
      PRICE BOX
=========================*/

.price-box {
    position: relative;
    width: 290px;
    background: #102019;
    color: #fff;
    padding: 28px;
    border-radius: 20px;
    margin-bottom: 35px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    border: 3px solid white;
    transition: .35s;
}

.price-badge {
    position: absolute;
    top: -18px;
    right: 20px;
    background: white;
    color: #111;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
}

.price-box p {
    color: #E8E8E8;
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 500;
}

.price-box h2 {
    font-size: 52px;
    margin: 10px 0;
    color: white;
}

.price-box span {
    color: white;
    font-size: 72px;
    font-weight: 700;
}

.price-box h4 {
    font-size: 18px;
    font-weight: 500;
}

.price-box:hover {
    transform: translateY(-5px) scale(1.03)
}

/*=========================
        BUTTONS
=========================*/

.hero-btn {
    display: flex;
    gap: 20px;
}

.join-btn {
    background: #4D8F45;
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 10px;
    transition: .3s;
}

.join-btn:hover {
    background: #5EA955;
    transform: translateY(-5px);
}

.call-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid #6FAF67;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.call-btn:hover {
    background: #4D8F45;
    border-color: #4D8F45;
    color: #fff;
    transform: translateY(-5px);
}

/*=========================
        IMAGES
=========================*/

.hero-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.main-image {
    width: 100%;
}

.main-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
    transition: .35s;
}

.main-image img:hover {
    transform: scale(1.03);
}

.small-images {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.small-images img {
    width: 48%;
    height: 180px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .30);
    transition: .35s;
}

.small-images img:hover {
    transform: scale(1.05);
}

/*=========================
        FEATURES
=========================*/
.features {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 35px;
    margin-top: 45px;
    width: 100%;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 160px;
    padding: 15px 10px;
    border-radius: 15px;
    transition: .3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-5px);
}

.feature i {
    font-size: 38px;
    color: #7DBB6E;
    margin-bottom: 15px;
    transition: .3s;
}

.feature:hover i {
    transform: scale(1.15);
    color: #A8E68A;
}

.feature h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
}

/*=========================
        PROGRAMS
=========================*/

.programs {
    padding: 100px 0;
    background: #1C2B24;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 300;
}

.section-title p {
    color: #D8D8D8;
    margin-top: 10px;
}

.program-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    overflow: visible;
}

/*=========================
      PROGRAM CARD
=========================*/

.program-card {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: #102019;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;

    min-height: 560px;

    border: 3px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .20);

    transform: scale(1);
    transition: all .35s ease;
    z-index: 1;
    cursor: pointer;
}

.program-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #7DBB6E;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .35);
}

/*=========================
        SHINE EFFECT
=========================*/

.program-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);
    transform: skewX(-25deg);
    transition: .8s;
}

.program-card:hover::before {
    left: 170%;
}

/*=========================
        HEADING
=========================*/

.program-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/*=========================
          PRICE
=========================*/

.program-card h1 {
    font-size: 56px;
    color: #4CAF50;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;

    transition: transform .35s ease, color .35s ease;
}

.program-card:hover h1 {
    transform: scale(1.12);
    color: #7DBB6E;
}

/*=========================
           TEXT
=========================*/

.program-card p {
    color: #fff;
    margin: 10px 0;
    line-height: 1.6;
}

/*=========================
          BUTTON
=========================*/

.program-btn {
    margin-top: auto;
    display: inline-block;
    padding: 14px 35px;

    background: #4CAF50;
    color: #fff;

    border-radius: 40px;
    text-decoration: none;

    transition: all .35s ease;
}

.program-card:hover .program-btn {
    transform: scale(1.06);
    background: #2E7D32;
    box-shadow: 0 12px 30px rgba(76, 175, 80, .35);
}

/*=========================
      FEATURED CARD
=========================*/

.featured {
    display: flex;
    flex-direction: column;
    align-items: center;

    background: #102019;
    color: #fff;

    min-height: 560px;

    border: 3px solid #fff;

    transform: scale(1.05);
    transition: all .35s ease;
}

.featured:hover {
    transform: scale(1.08);
    border-color: white;
    box-shadow: 0 35px 70px rgba(0, 0, 0, .45);
}

.featured h3,
.featured p {
    color: #fff;
}

.featured h1 {
    font-size: 60px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.featured:hover h1 {
    transform: scale(1.12);
}

.featured h1 span {
    font-size: 24px;
}

/*=========================
          BADGE
=========================*/

.badge {
    display: inline-block;
    padding: 8px 18px;
    background: #fff;
    color: #111;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    transition: .35s ease;
}

.featured:hover .badge {
    transform: scale(1.08);
}

/*=========================
     FEATURED BUTTON
=========================*/

.featured .program-btn {
    background: white;
    color: #111;
}

.featured:hover .program-btn {
    background: #fff;
    color: #102019;
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(255, 213, 79, .40);
}

/* Tablet */

@media(max-width:992px) {

    .program-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media(max-width:768px) {

    .program-container {
        grid-template-columns: 1fr;
    }

    .program-card,
    .featured {
        min-height: auto;
    }

}

/*=========================
        REVIEWS
=========================*/

.reviews {
    padding: 100px 0;
    background: #1C2B24;
}

.reviews .section-title h2 {
    color: #fff;
}

.reviews .section-title p {
    color: #d6d6d6;
}

.reviews-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:60px;
}

.review-card {
    position: relative;
    overflow: hidden;
    background: #102019;
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    border: 3px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .20);
    transition: all .45s cubic-bezier(.22, 1, .36, 1);
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);
    transform: skewX(-25deg);
    transition: .8s;
}

.review-card:hover::before {
    left: 170%;
}

.stars {
    color: #FFD54F;
    font-size: 22px;
    margin-bottom: 20px;
}

.review-card p {
    color: #fff;
    line-height: 1.7;
    margin-bottom: 25px;
}

.review-card h4 {
    color: #7DBB6E;
    font-size: 17px;
    font-weight: 700;
}

@media(max-width:992px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }
}

/*=========================
        ABOUT
=========================*/

.about {
    padding: 100px 0;
    background: #1C2B24;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 70px;
}


.about-content h2 {
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 300;
}

.about-content p {
    color: #D8D8D8;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.list-item {
    background: #102019;
    color: #FFFFFF;
    padding: 18px;
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .3s;
}

.list-item:hover {
    background: #173026;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .25);
}

.license-text {
    background: rgba(125, 187, 110, .10);
    border-left: 4px solid #7DBB6E;
    padding: 20px 25px;
    border-radius: 12px;
    color: #D8D8D8;
    line-height: 1.8;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    transition: all .35s ease;
}

.license-text:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(125, 187, 110, .18);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .30);
    border-left-color: #FFD54F;
}

.license-text strong {
    color: #FFFFFF;
}

/*=========================
        CONTACT
=========================*/
/*=========================
        CONTACT
=========================*/

.contact {
    padding: 100px 0;
    background: #1C2B24;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 60px;
}

.contact-info {
    display: grid;
    gap: 25px;
}

/*=========================
        INFO CARDS
=========================*/

.info-card {
    background: #102019;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
    transition: .35s;
    border: 1px solid rgba(255, 255, 255, .08);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

.info-card i {
    font-size: 32px;
    color: #7DBB6E;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #FFFFFF;
    margin-bottom: 10px;
}

.info-card p {
    color: #D8D8D8;
    line-height: 1.7;
}

/*=========================
        CONTACT FORM
=========================*/

.contact-form {
    background: #102019;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .08);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: #1C2B24;
    color: #FFFFFF;
    border: 1px solid #3B5147;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: .3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #BFC7C2;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #7DBB6E;
    box-shadow: 0 0 10px rgba(125, 187, 110, .3);
}

.contact-form button {
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 200px;
}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/*=========================
          FOOTER
=========================*/

footer {
    width: 100%;
    margin: 0;
    background: #102019;
    color: #fff;
    padding-top: 50px;
    border-top: 4px solid silver;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 50px 0;
}

.footer-logo img {
    width: 90px;
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.footer-logo p {
    color: #D8D8D8;
    line-height: 1.8;
    padding-top: 20px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #D8D8D8;
    text-decoration: none;
    transition: .3s;
}

.footer-links ul li a:hover {

    color: #7DBB6E;
    padding-left: 8px;

}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #D8D8D8;
    line-height: 1.6;
}

.footer-contact i {
    width: 20px;
    color: #7DBB6E;
    font-size: 18px;
    text-align: center;
    flex-shrink: 0;
}

.footer-social a {
    display: inline-flex;
    width: 48px;
    height: 48px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    transition: .35s;
    font-size: 18px;
}

.footer-social a:hover {

    background: #7DBB6E;
    color: #fff;
    transform: translateY(-5px);

}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
    padding: 20px 0;
    color: #BFC7C2;
}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:992px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:768px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

}



/*=========================
      WHATSAPP BUTTON
=========================*/

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
    transition: .3s;
    z-index: 999;
}

.whatsapp:hover {

    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);

}

.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #2E7D32;
}

/* =========================
        TABLET
========================= */

@media (max-width:992px) {

    .hero-container,
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }

    .hero-content,
    .hero-image,
    .about-content {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .hero-brand {
        font-size: 40px;
    }

    .hero-btn {
        justify-content: center;
        flex-wrap: wrap;
    }

    .price-box {
        margin: 30px auto;
    }

    .features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .program-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .license-badge {
        display: inline-block;
        font-size: 11px;
        padding: 5px 12px;
    }
}

/* =========================
        MOBILE
========================= */

@media (max-width:768px) {

    header {
        position: fixed;
    }

    nav {
        padding: 15px 0;
        height: auto;
    }

    .logo{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
}

.license-badge{
    display:inline-block;
    font-size:10px;
    padding:6px 12px;
    white-space:normal;
}
    .logo img {
        width: 65px;
    }

    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        gap: 20px;
    }

    nav ul.active {
        display: flex;
    }

    nav>.btn {
        display: none;
    }

    .hero {
        padding: 140px 0 70px;
    }

    .hero-brand {
        font-size: 34px;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-btn {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .join-btn,
    .call-btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .price-box {
        width: 100%;
        max-width: 320px;
        margin: 30px auto;
    }

    .main-image img {
        height: auto;
    }

    .small-images {
        gap: 10px;
    }

    .small-images img {
        width: 31%;
        height: 95px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 15px;
    }

    .program-container,
    .reviews-container {
        grid-template-columns: 1fr;
    }

    .program-card,
    .featured {
        min-height: auto;
        transform: none;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-social {
        margin-top: 20px;
    }

    .whatsapp {
        width: 58px;
        height: 58px;
        font-size: 30px;
    }

}