/* ==========================================
   LEVEL UP LOUISIANA
   MAIN STYLESHEET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:#1e293b;

    line-height:1.6;

}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}/* ===============================
        NAVIGATION
================================ */

header{

    width:100%;

    background:white;

    position:sticky;

    top:0;

    z-index:999;

    box-shadow:0 2px 20px rgba(0,0,0,.08);

}

.navbar{

    width:90%;

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo img{

    height:75px;

}

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:#183153;

    font-weight:600;

    transition:.3s;

}

.nav-links a:hover{

    color:#c61f2b;

}

.join-button{

    background:#c61f2b;

    color:white;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.join-button:hover{

    background:#183153;

}/* =====================================
            HERO SECTION
===================================== */

.hero{

    width:90%;
    max-width:1400px;

    margin:80px auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

.hero-left{

    flex:1;

}

.hero-left h4{

    color:#c61f2b;

    letter-spacing:2px;

    font-size:15px;

    margin-bottom:15px;

    text-transform:uppercase;

}

.hero-left h1{

    font-size:64px;

    line-height:1.1;

    color:#183153;

    margin-bottom:25px;

    font-weight:800;

}

.hero-left p{

    font-size:20px;

    color:#666;

    margin-bottom:40px;

    max-width:650px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.primary-btn{

    background:#c61f2b;

    color:white;

    padding:18px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.primary-btn:hover{

    background:#183153;

}

.secondary-btn{

    border:2px solid #183153;

    color:#183153;

    padding:18px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.secondary-btn:hover{

    background:#183153;

    color:white;

}

.hero-right{

    flex:1;

}

.hero-right img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}/* =====================================
            QUICK STATS
===================================== */

.stats{

    width:90%;

    max-width:1300px;

    margin:70px auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat{

    background:white;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.stat h2{

    color:#c61f2b;

    font-size:40px;

    margin-bottom:10px;

}

.stat p{

    color:#555;

    font-weight:600;

}/* =========================
   WHY CHOOSE US
========================= */

.why-us{
    padding:100px 10%;
    background:#ffffff;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-title h2{
    font-size:42px;
    color:#18345b;
    margin-bottom:20px;
}

.section-title p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{
    background:white;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

..feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}
}

.icon{
    font-size:48px;
    margin-bottom:20px;
}

.feature-card h3{
    color:#18345b;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
    line-height:1.7;
}/* =========================
   SERVICES
========================= */

.services{
    padding:100px 10%;
    background:#f7f9fc;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:white;
    border-radius:20px;
    padding:45px 30px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-icon{
    font-size:52px;
    margin-bottom:20px;
}

.service-card h3{
    color:#18345b;
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.7;
}/* =========================
   LEADERSHIP PREVIEW
========================= */

.leadership-preview{
    padding:100px 10%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    background:white;
}

.leadership-image img{
    width:100%;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.leadership-content h5{
    color:#d32027;
    letter-spacing:2px;
    margin-bottom:15px;
    font-size:15px;
}

.leadership-content h2{
    color:#18345b;
    font-size:42px;
    margin-bottom:25px;
}

.leadership-content p{
    color:#666;
    line-height:1.8;
    font-size:18px;
    margin-bottom:35px;
}/* =========================
   CAREER BANNER
========================= */

.career-banner{

    background:#18345b;

    color:white;

    text-align:center;

    padding:100px 10%;

}

.career-banner h2{

    font-size:48px;

    margin-bottom:20px;

}

.career-banner p{

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

    line-height:1.8;

    font-size:20px;

    color:rgba(255,255,255,.85);

}/* =========================
   Footer
========================= */

.footer{
    background:#18345b;
    color:white;
    margin-top:80px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
    padding:70px 20px;
}

.footer-column img{
    width:180px;
    margin-bottom:20px;
}

.footer-column h3{
    margin-bottom:20px;
    color:white;
}

.footer-column p{
    color:#d7dce5;
    line-height:1.8;
    margin-bottom:10px;
}

.footer-column a{
    display:block;
    color:#d7dce5;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-column a:hover{
    color:#d32027;
}

.footer-bottom{
    text-align:center;
    padding:25px;
    border-top:1px solid rgba(255,255,255,.15);
    color:#d7dce5;
    font-size:14px;
}
/* ===================================
   LEADERSHIP PAGE
=================================== */

.leaders-grid{
    padding:80px 0;
}

.leaders-wrapper{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
    padding:0 25px;
}

.leader-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    text-align:center;
    transition:.3s;
}

.leader-card:hover{
    transform:translateY(-10px);
}

.leader-card img{
    width:100%;
    height:340px;
    object-fit:cover;
    object-position:center;
}

.leader-card h3{
    margin-top:25px;
    color:#18345b;
    font-size:28px;
}

.leader-card h4{
    color:#d32027;
    margin:10px 0;
    font-weight:600;
}

.leader-card p{
    padding:0 25px;
    color:#666;
    line-height:1.7;
    min-height:95px;
}

.leader-card .primary-btn{
    margin:25px;
}

.leadership-mission{
    padding:90px 25px;
    background:#f8fafc;
    text-align:center;
}

.leadership-mission h2{
    color:#18345b;
    margin-bottom:20px;
}

.leadership-mission p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.8;
}
/* ===========================
   CONTACT PAGE
=========================== */

.contact-grid{
    max-width:1200px;
    margin:60px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    padding:0 20px;
    align-items:stretch;
}

.contact-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    min-height:360px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}
.contact-card h3{
    color:#183a6d;
    margin-bottom:20px;
    font-size:28px;
}

.contact-card p{
    color:#555;
    line-height:1.8;
}

.contact-card a{
    color:#d32027;
    text-decoration:none;
    font-weight:600;
    display:block;
    width:100%;
    overflow-wrap:break-word;
    word-break:break-all;
    font-size:16px;
    line-height:1.5;
}

.contact-card a:hover{
    color:#183a6d;
}

.email-btn{
    display:inline-block;
    background:#d32027;
    color:#fff !important;
    padding:12px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    margin-top:15px;
    transition:.3s;
}

.email-btn:hover{
    background:#183a6d;
}

.office-hours{
    margin-top:18px;
    font-size:15px;
    color:#666;
    font-weight:600;
    line-height:1.6;
}
/*=========================
      Quote Form
=========================*/

.quote-form{
    max-width:900px;
    margin:50px auto 0;
}

.quote-form form{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{

    width:100%;
    padding:18px 20px;

    border:1px solid #d8d8d8;
    border-radius:14px;

    font-size:16px;
    font-family:'Poppins',sans-serif;

    transition:.3s;
    background:#fff;
}

.quote-form textarea{
    resize:vertical;
    min-height:170px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{

    outline:none;
    border-color:#cf2027;

    box-shadow:0 0 0 4px rgba(207,32,39,.12);
}

.quote-form button{

    width:fit-content;
    cursor:pointer;
}
/*=========================
        FOOTER
=========================*/

footer{

    background:#183a6d;
    color:white;

    margin-top:80px;

}

.footer-container{

    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

    padding:60px 30px;

}

.footer-logo{

    width:180px;
    margin-bottom:20px;

}

.footer-column h3{

    margin-bottom:20px;

    color:#fff;

}

.footer-column p{

    color:#d9d9d9;

    line-height:1.8;

    margin-bottom:15px;

}

.footer-column ul{

    list-style:none;
    padding:0;

}

.footer-column li{

    margin-bottom:12px;

}

.footer-column a{

    color:#d9d9d9;
    text-decoration:none;

    transition:.3s;

}

.footer-column a:hover{

    color:#ffffff;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.15);

    text-align:center;

    padding:20px;

    color:#ccc;

}
/*=========================
        FOOTER
=========================*/

footer{

    background:#0f2d52;
    color:#ffffff;

    margin-top:80px;

}

.footer-container{

    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

    padding:60px 30px;

}

.footer-logo{

    width:180px;
    margin-bottom:20px;

}

.footer-column h3{

    color:#ffffff;

    margin-bottom:20px;

}

.footer-column p{

    color:#d9d9d9;

    line-height:1.8;

    margin-bottom:15px;

}

.footer-column ul{

    list-style:none;

    padding:0;

}

.footer-column li{

    margin-bottom:12px;

}

.footer-column a{

    color:#d9d9d9;

    text-decoration:none;

    transition:.3s;

}

.footer-column a:hover{

    color:#cf2027;

}

.footer-bottom{

    text-align:center;

    padding:20px;

    border-top:1px solid rgba(255,255,255,.15);

    font-size:14px;

}/*=========================
        FOOTER
=========================*/

.site-footer{

    background:#0d2b52;
    color:#ffffff;

    margin-top:80px;

}

.footer-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

    padding:70px 40px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer-description{

    color:#d8d8d8;

    line-height:1.8;

}

.footer-column h3{

    color:#ffffff;

    margin-bottom:20px;

}

.footer-column p{

    color:#d8d8d8;

    line-height:1.8;

    margin-bottom:15px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#d8d8d8;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#cf2027;

}

.footer-column a{

    color:#d8d8d8;

    text-decoration:none;

}

.footer-column a:hover{

    color:#ffffff;

}

.footer-social{

    display:inline-block;

    margin-top:10px;

    font-weight:600;

    font-size:18px;

}

.footer-note{

    margin-top:20px;

    font-size:15px;

    color:#b8c4d6;

}

.footer-bottom{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.15);

    padding:25px;

    color:#b8c4d6;

    font-size:14px;

}