/*==================================================
            OKACHAMARA ENROLLMENT PAGE
      Learn It Right. Master It For Life.
===================================================*/


/*==================================================
ROOT
===================================================*/

:root{

--primary:rgb(184,137,119);

--secondary:rgb(0,0,128);

--gold:#d4a017;

--green:#8FD694;

--white:#ffffff;

--light:#fbfaf9;

--text:#333333;

--muted:#666666;

--shadow:0 12px 35px rgba(0,0,0,.08);

--radius:18px;

--transition:.35s ease;

}


/*==================================================
TEXT SELECTION
===================================================*/

::selection{

background:var(--primary);

color:#ffffff;

}

::-moz-selection{

background:var(--primary);

color:#ffffff;

}


/*==================================================
RESET
===================================================*/
html,
body{
    width:100%;
    max-width:100%;
    margin:0;
    padding:0;
    overflow-x:hidden;
}

body{
    position:relative;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}


*,
*::before,
*::after{

margin:0;

padding:0;

box-sizing:border-box;

}


html{

scroll-behavior:smooth;

-webkit-text-size-adjust:100%;

text-size-adjust:100%;

}


body{

font-family:'Poppins',sans-serif;

background:#fff;

color:var(--text);

font-size:17px;

line-height:1.9;

overflow-x:hidden;

text-rendering:optimizeLegibility;

-webkit-font-smoothing:antialiased;

-moz-osx-font-smoothing:grayscale;

min-width:320px;

}


a{

text-decoration:none;

color:inherit;

}


.enrollment-container{

width:92%;

max-width:1180px;

margin:auto;

}


/*==================================================
HEADER
===================================================*/

.enrollment-header{

background:#fff;

padding:28px 0 18px;

border-bottom:1.5px solid #4A4A54;

}


.enrollment-logo{

width:175px;

height:auto;

display:block;

margin:0;

transition:.35s ease;

}


.enrollment-logo:hover{

transform:scale(1.03);

}


/*==================================================
BACK BUTTON
===================================================*/

.back-wrapper{

width:92%;

max-width:1180px;

margin:18px auto 0;

text-align:left;

}


.back-button{

display:inline-block;

color:var(--secondary);

font-weight:600;

transition:.3s ease;

}


.back-button:hover{

color:var(--primary);

transform:translateX(-3px);

}


/*==================================================
GREEN HEADINGS
===================================================*/

.green-heading{

color:var(--green);

}


/*==================================================
HERO
===================================================*/

.enrollment-hero{

background:#fff;

padding:65px 0 85px;

text-align:center;

}


.eyebrow{

font-size:1rem;

font-weight:800;

letter-spacing:2px;

margin-bottom:20px;

}


.enrollment-hero h1{

font-size:3.2rem;

font-weight:800;

color:var(--secondary);

line-height:1.25;

max-width:900px;

margin:0 auto 25px;

}


.hero-text{

max-width:760px;

margin:0 auto;

font-size:1.15rem;

color:#444;

}


/*==================================================
GENERAL SECTIONS
===================================================*/

.enrollment-section{

padding:90px 0;

text-align:center;

}


.enrollment-section:nth-of-type(even){

background:var(--light);

}


.section-title{

font-size:2.25rem;

font-weight:800;

line-height:1.35;

margin:0 auto 25px;

text-align:center;

}


.section-intro{

max-width:760px;

margin:0 auto 50px;

text-align:center;

font-size:1.08rem;

}


/*==================================================
STEPS
===================================================*/

.steps{

max-width:850px;

margin:0 auto;

display:flex;

flex-direction:column;

gap:18px;

text-align:left;

}


.step{

display:flex;

align-items:center;

gap:25px;

background:#fff;

padding:25px 30px;

border-radius:var(--radius);

box-shadow:var(--shadow);

border-left:5px solid var(--primary);

transition:var(--transition);

}


.step:hover{

transform:translateY(-5px);

box-shadow:0 20px 40px rgba(0,0,0,.11);

}


.step-number{

min-width:52px;

height:52px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:var(--secondary);

color:#fff;

font-size:1.2rem;

font-weight:700;

}


.step-content h3{

font-size:1.2rem;

color:var(--secondary);

margin-bottom:5px;

}


.step-content p{

color:#555;

margin:0;

}


/*==================================================
PROGRAMS
===================================================*/

.programs-section{

background:var(--light);

}


.course-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

max-width:1100px;

margin:0 auto;

}


.course-card{

background:#fff;

padding:32px 25px;

border-radius:var(--radius);

box-shadow:var(--shadow);

border-top:5px solid var(--primary);

transition:var(--transition);

text-align:center;

}


.course-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 45px rgba(0,0,0,.12);

}


.course-card h3{

font-size:1.3rem;

color:var(--secondary);

line-height:1.4;

min-height:58px;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:15px;

}


.old-price{

font-size:.95rem;

color:#888;

margin-bottom:2px;

}


.new-price{

font-size:1.65rem;

font-weight:800;

color:var(--secondary);

margin-bottom:12px;

}


.discount{

display:inline-block;

padding:5px 12px;

border-radius:30px;

background:var(--gold);

color:#111;

font-size:.82rem;

font-weight:700;

}


/*==================================================
WHY OKACHAMARA
===================================================*/

.why-section{

background:#fff !important;

}


.why-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:28px;

max-width:1000px;

margin:50px auto 0;

}


.why-card{

background:var(--light);

padding:35px;

border-radius:var(--radius);

box-shadow:var(--shadow);

text-align:left;

transition:var(--transition);

}


.why-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 45px rgba(0,0,0,.12);

}


.why-icon{

width:52px;

height:52px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:var(--green);

color:var(--secondary);

font-size:1.3rem;

font-weight:800;

margin-bottom:20px;

}


.why-card h3{

color:var(--secondary);

font-size:1.3rem;

margin-bottom:12px;

}


.why-card p{

color:#555;

}


/*==================================================
READY SECTION
===================================================*/

.ready-section{

background:#fff;

padding:100px 20px;

text-align:center;

}


.ready-section .section-title{

margin-bottom:35px;

}


.ready-section p{

max-width:720px;

margin:0 auto 18px;

font-size:1.08rem;

}


.cta-button{

display:inline-block;

margin-top:30px;

background:var(--gold);

color:#000;

padding:10px 20px;

border-radius:60px;

font-size:1.15rem;

font-weight:700;

text-align:center;

box-shadow:0 10px 25px rgba(212,160,23,.25);

transition:.3s ease;

}


.cta-button:hover{

background:#c99810;

transform:translateY(-2px);

}


.ready-section .cta-button{
    display:flex;
    align-items:center;
    justify-content:center;
}


/*==================================================
FOOTER
==================================================*/

.enrollment-footer{
    background:#ffffff;
    margin-top:0;
    text-align:center;
}

.enrollment-footer .enrollment-container{
    padding:55px 0 35px;
    margin:0 auto;
}

.enrollment-footer p{
    text-align:center;
    font-family:Arial,sans-serif;
    font-size:1rem;
    font-weight:400;
    line-height:1.8;
    margin:0 auto 15px;
    color:#444;
}


/*==================================================
FOOTER BOTTOM
==================================================*/

.enrollment-footer-bottom{
    width:100%;
    height:68px;
    background:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 15px;
}

.enrollment-footer-bottom .enrollment-container{
    width:100%;
    max-width:none;
    padding:0;
    margin:0;
}

.enrollment-footer-bottom p{
    margin:0;
    padding:0;
    text-align:center;
    font-family:Arial,sans-serif;
    color:#ffffff;
    font-size:1rem;
    font-weight:400;
    line-height:1.3;
    letter-spacing:.3px;
}

.mobile-footer-break{
    display:none;
}


/*==================================================
TABLETS
===================================================*/

@media (max-width:900px){

.enrollment-container{

width:94%;

}


.enrollment-logo{

width:155px;

}


.enrollment-hero{

padding:55px 0 70px;

}


.enrollment-hero h1{

font-size:2.6rem;

}


.enrollment-section{

padding:70px 0;

}


.section-title{

font-size:1.9rem;

}


.course-grid{

grid-template-columns:repeat(2,1fr);

gap:22px;

}


.why-grid{

grid-template-columns:repeat(2,1fr);

}


}


/*==================================================
PHONES
===================================================*/

@media (max-width:600px){

body{

font-size:16px;

line-height:1.8;

}


.enrollment-header{

padding:18px 0 14px;

}


.enrollment-logo{

width:130px;

}


.back-wrapper{

width:92%;

margin-top:14px;

}


.enrollment-hero{

padding:45px 0 55px;

}


.eyebrow{

font-size:.85rem;

letter-spacing:1.5px;

}


.enrollment-hero h1{

font-size:2rem;

line-height:1.35;

}


.hero-text{

font-size:1.02rem;

}


.enrollment-section{

padding:55px 0;

}


.section-title{

font-size:1.55rem;

line-height:1.45;

}


.section-intro{

font-size:1rem;

margin-bottom:35px;

}


.steps{

gap:15px;

}


.step{

padding:22px 20px;

gap:17px;

align-items:flex-start;

}


.step-number{

min-width:44px;

height:44px;

font-size:1rem;

}


.step-content h3{

font-size:1.05rem;

}


.step-content p{

font-size:.95rem;

}


.course-grid{

grid-template-columns:1fr;

gap:18px;

}


.course-card{

padding:28px 22px;

}


.course-card h3{

min-height:auto;

font-size:1.2rem;

}


.why-grid{

grid-template-columns:1fr;

gap:20px;

margin-top:35px;

}


.why-card{

padding:28px 24px;

}


.ready-section{

padding:70px 20px;

}


.ready-section .section-title{

font-size:1.6rem;

}


.cta-button{

width:100%;

max-width:320px;

padding:18px;

}


.enrollment-footer .enrollment-container{
        padding:55px 0 35px;
    }

    .enrollment-footer-bottom{
        height:87px;
        padding:0 10px;
    }

    .enrollment-footer-bottom .enrollment-container{
        width:100%;
        max-width:none;
        padding:0;
        margin:0;
    }

    .enrollment-footer-bottom p{
        font-family:Arial,sans-serif;
        font-size:1rem;
        font-weight:400;
        line-height:1.35;
        text-align:center;
        width:100%;
        margin:0;
    }

    .mobile-footer-break{
        display:block;
    }


}


/*==================================================
LARGE DESKTOPS
===================================================*/

@media (min-width:1400px){

.enrollment-container{

max-width:1280px;

}


.enrollment-hero h1{

font-size:3.5rem;

}


.section-title{

font-size:2.4rem;

}


.course-grid{

max-width:1180px;

}

}


/*==================================================
END OF FILE
===================================================*/



