    /* ======================================================
   AFRICAN CHILD SPORTS ACADEMY
   MAIN STYLESHEET
   Version 2.0
====================================================== */

/* ==========================
   GOOGLE FONT VARIABLES
========================== */

:root{

    --primary:#0B4EA2;
    --secondary:#D72638;
    --accent:#F4B400;

    --white:#ffffff;
    --light:#f8fafc;
    --dark:#1f2937;

    --container:1200px;

    --transition:.35s ease;

}

/* ==========================
RESET
========================== */

*
{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;
    background:var(--white);
    color:var(--dark);
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:var(--container);
    margin:auto;

}

/* ==========================
HEADER
========================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.4s;

    padding:20px 0;

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* ==========================
LOGO
========================== */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    color:white;

}

.logo img{

    width:65px;

    height:65px;

    border-radius:50%;

}

.logo-text h2{

    font-family:'Poppins',sans-serif;

    font-size:22px;

    font-weight:700;

}

.logo-text span{

    display:block;

    font-size:14px;

    opacity:.8;

}

/* ==========================
NAVIGATION
========================== */

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:white;

    font-size:16px;

    font-weight:500;

    transition:var(--transition);

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

.nav-links a:hover::after,

.nav-links .active::after{

    width:100%;

}

.menu-toggle{

    display:none;

    color:white;

    font-size:28px;

    cursor:pointer;

}

/* ==========================
HERO
========================== */

.hero{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

/* Background Images */

.hero-slider{

    position:absolute;

    width:100%;

    height:100%;

}

.slide{

    position:absolute;

    width:100%;

    height:100%;

    background-size:cover;

    background-position:center;

    opacity:0;

    transition:opacity 1.4s ease;

}

.slide.active{

    opacity:1;

}

/* Overlay */

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.58);

}

/* Hero Content */

.hero-content{

    position:relative;

    z-index:20;

    color:white;

}

.hero-content h4{

    color:var(--accent);

    letter-spacing:3px;

    margin-bottom:18px;

}

.hero-content h1{

    font-family:'Poppins',sans-serif;

    font-size:68px;

    line-height:1.1;

    margin-bottom:20px;

}

.hero-content h1 span{

    display:block;

    color:var(--secondary);

}

.hero-content p{

    max-width:650px;

    font-size:20px;

    line-height:1.8;

    margin-bottom:35px;

}

/* ==========================
BUTTONS
========================== */

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn{

    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.btn-primary{

    background:var(--secondary);

    color:white;

}

.btn-primary:hover{

    background:white;

    color:var(--secondary);

}

.btn-secondary{

    border:2px solid white;

    color:white;

}

.btn-secondary:hover{

    background:white;

    color:var(--primary);

}

/* ==========================
SCROLL DOWN
========================== */

.scroll-down{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:26px;

    animation:bounce 2s infinite;

    z-index:50;

}

@keyframes bounce{

    0%,100%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,15px);

    }

}

/*====================================================
MISSION
====================================================*/

.mission{

    background:#f8fafc;

}

.section-title{

    text-align:center;

    max-width:800px;

    margin:auto;

    margin-bottom:70px;

}

.section-title span{

    color:var(--secondary);

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-title h2{

    font-family:'Poppins',sans-serif;

    font-size:46px;

    margin:20px 0;

}

.section-title p{

    color:#666;

    line-height:1.8;

    font-size:18px;

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.mission-card{

    background:white;

    padding:45px 35px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.card-icon{

    width:80px;

    height:80px;

    margin:auto;

    background:var(--primary);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.card-icon i{

    color:white;

    font-size:34px;

}

.mission-card h3{

    margin-bottom:20px;

    font-family:'Poppins',sans-serif;

}

.mission-card p{

    line-height:1.8;

    color:#555;

}

.mission-card ul{

    margin-top:20px;

}

.mission-card ul li{

    padding:8px 0;

    color:#555;

}
/*====================================================
WELCOME SECTION
====================================================*/

.section{

    padding:120px 0;

}

.welcome{

    background:#fff;

}

.welcome-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.welcome-image{

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.welcome-image img{

    width:100%;

    transition:.5s;

}

.welcome-image:hover img{

    transform:scale(1.08);

}

.section-tag{

    display:inline-block;

    padding:10px 20px;

    background:#eef5ff;

    color:var(--primary);

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.welcome-content h2{

    font-family:'Poppins',sans-serif;

    font-size:46px;

    line-height:1.2;

    margin-bottom:25px;

}

.welcome-content p{

    font-size:18px;

    line-height:1.9;

    margin-bottom:20px;

    color:#555;

}

.welcome-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:16px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.btn-outline:hover{

    background:var(--primary);

    color:white;

}

/*====================================================
WHY CHOOSE US
====================================================*/

.why-us{

    background:white;

}

.features-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.feature-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    transition:.35s;

    border:1px solid #ececec;

}

.feature-card:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-10px);

}

.feature-icon{

    width:75px;

    height:75px;

    border-radius:50%;

    background:rgba(11,78,162,.1);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    transition:.35s;

}

.feature-card:hover .feature-icon{

    background:white;

}

.feature-icon i{

    font-size:30px;

    color:var(--primary);

}

.feature-card h3{

    font-family:'Poppins',sans-serif;

    margin-bottom:15px;

}

.feature-card p{

    line-height:1.8;

}

.feature-card:hover p,

.feature-card:hover h3{

    color:white;

}

/*====================================================
ACADEMY PROGRAMMES
====================================================*/

.programmes{

    background:#f8fafc;

}

.programmes-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.programmes-image{

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.programmes-image img{

    width:100%;

    transition:.5s;

}

.programmes-image:hover img{

    transform:scale(1.08);

}

.programmes-content h2{

    font-size:44px;

    font-family:'Poppins',sans-serif;

    margin:20px 0;

}

.programmes-content>p{

    margin-bottom:40px;

    color:#666;

    line-height:1.8;

}

.programme{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}

.programme i{

    width:65px;

    height:65px;

    background:var(--primary);

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    flex-shrink:0;

}

.programme h3{

    font-family:'Poppins',sans-serif;

    margin-bottom:10px;

}

.programme p{

    color:#555;

    line-height:1.7;

}

/*====================================================
SUCCESS STORIES
====================================================*/

.success{

    background:white;

}

.success-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    margin-bottom:80px;

}

.success-image{

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 20px 60px rgba(0,0,0,.15);

}

.success-image img{

    width:100%;

    transition:.5s;

}

.success-image:hover img{

    transform:scale(1.05);

}

.player-tag{

    display:inline-block;

    background:var(--secondary);

    color:white;

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:20px;

    font-size:14px;

}

.success-content h2{

    font-size:44px;

    margin-bottom:10px;

    font-family:'Poppins',sans-serif;

}

.success-content h4{

    color:var(--primary);

    margin-bottom:25px;

}

.success-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat{

    background:var(--primary);

    color:white;

    text-align:center;

    padding:40px 20px;

    border-radius:20px;

}

.stat h2{

    font-size:42px;

    font-family:'Poppins',sans-serif;

    margin-bottom:10px;

}

.stat p{

    font-size:16px;

}

/*====================================================
LEADERSHIP
====================================================*/

.leadership{

    background:#f8fafc;

}

.leadership-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.leader-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.leader-card:hover{

    transform:translateY(-10px);

}

.leader-card img{

    width:100%;

    height:340px;

    object-fit:cover;

}

.leader-info{

    padding:25px;

}

.leader-info h3{

    font-family:'Poppins',sans-serif;

    margin-bottom:8px;

}

.leader-info span{

    color:var(--secondary);

    font-weight:600;

    display:block;

    margin-bottom:15px;

}

.leader-info p{

    color:#666;

    line-height:1.7;

}

.leadership-btn{

    text-align:center;

    margin-top:60px;

}

/*====================================================
GALLERY
====================================================*/

.gallery{

    background:white;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.gallery-large{

    grid-column:span 2;

    grid-row:span 2;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.1);

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:rgba(11,78,162,.75);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    transition:.35s;

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-overlay h3{

    color:white;

    font-family:'Poppins',sans-serif;

    font-size:24px;

    text-align:center;

}

.gallery-btn{

    text-align:center;

    margin-top:60px;

}

/*====================================================
PARTNER SECTION
====================================================*/

.partner{

    position:relative;

    padding:140px 0;

    background:url("../images/gallery/gallery1.jpg") center/cover;

    text-align:center;

    color:white;

}

.partner-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

}

.partner-content{

    position:relative;

    z-index:2;

    max-width:800px;

    margin:auto;

}

.partner span{

    color:var(--accent);

    font-weight:700;

    letter-spacing:2px;

}

.partner h2{

    font-size:52px;

    margin:25px 0;

    font-family:'Poppins',sans-serif;

}

.partner p{

    line-height:1.9;

    margin-bottom:40px;

}

.partner-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

/*====================================================
CONTACT
====================================================*/

.contact-preview{

    background:#f8fafc;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.contact-card{

    background:white;

    text-align:center;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.contact-card i{

    font-size:38px;

    color:var(--primary);

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:15px;

}

/*====================================================
FOOTER
====================================================*/

footer{

    background:#081C35;

    color:white;

    padding:80px 0 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:90px;

    margin-bottom:20px;

}

footer h3{

    margin-bottom:20px;

}

footer ul li{

    margin-bottom:10px;

}

footer a{

    color:#ddd;

}

footer a:hover{

    color:white;

}

footer hr{

    margin:50px 0 20px;

    border:1px solid rgba(255,255,255,.15);

}

.copyright{

    text-align:center;

    color:#ccc;

}
/*==================================
SCROLL TO TOP
==================================*/

#scrollTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--secondary);

    color:white;

    font-size:20px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

#scrollTop.active{

    opacity:1;

    visibility:visible;

}

#scrollTop:hover{

    background:var(--primary);

    transform:translateY(-5px);

}
.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    overflow:hidden;

    position:relative;

}

.btn::before{

    content:"";

    position:absolute;

    left:-100%;

    width:100%;

    height:100%;

    background:rgba(255,255,255,.2);

    transition:.5s;

}

.btn:hover::before{

    left:100%;

}

/*====================================================
PARTNERS
====================================================*/

.partners{

    background:white;

}

.partners-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.partner-box{

    background:#fff;

    border-radius:20px;

    padding:50px 25px;

    text-align:center;

    transition:.35s;

    border:1px solid #eee;

}

.partner-box:hover{

    background:var(--primary);

    transform:translateY(-10px);

}

.partner-box i{

    font-size:50px;

    color:var(--secondary);

    margin-bottom:20px;

}

.partner-box:hover i{

    color:white;

}

.partner-box h3{

    font-family:'Poppins',sans-serif;

}

.partner-box:hover h3{

    color:white;

}

/*====================================================
HERO SLIDER CONTROLS
====================================================*/

.slider-controls{

    position:absolute;

    top:50%;

    left:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    transform:translateY(-50%);

    z-index:30;

    padding:0 40px;

}

.slider-controls button{

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(8px);

    color:white;

    cursor:pointer;

    font-size:20px;

    transition:.35s;

}

.slider-controls button:hover{

    background:var(--secondary);

}

.slider-dots{

    position:absolute;

    bottom:100px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:15px;

    z-index:30;

}

.dot{

    width:14px;

    height:14px;

    border-radius:50%;

    background:rgba(255,255,255,.5);

    cursor:pointer;

    transition:.35s;

}

.dot.active{

    background:var(--secondary);

    transform:scale(1.3);

}

/*==============================================
HERO ANIMATION
==============================================*/

.animate{

    opacity:0;

    transform:translateY(40px);

    animation:fadeUp 1s forwards;

}

.hero-subtitle{

    animation-delay:.3s;

}

.hero-title{

    animation-delay:.6s;

}

.hero-text{

    animation-delay:.9s;

}

.hero-buttons{

    animation-delay:1.2s;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.counter {
    color: white;
}
h2.counter{
    font-size: 65px;
    font-weight: 800px;
}

/*==============================================
GALLERY LIGHTBOX
==============================================*/

.lightbox{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,.9);

    display:flex;

    justify-content:center;
    align-items:center;

    visibility:hidden;
    opacity:0;

    transition:.3s;

    z-index:99999;

}

.lightbox.show{

    visibility:visible;
    opacity:1;

}

.lightbox img{

    max-width:90%;
    max-height:90%;

}

.lightbox-close{

    position:absolute;

    top:20px;
    right:30px;

    color:#fff;

    font-size:45px;

    cursor:pointer;

    z-index:100000;

}


.gallery-item{

    overflow:hidden;
    cursor:pointer;

}

.gallery-item img{

    width:100%;
    display:block;
    transition:transform .4s ease;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/*==================================
PRELOADER
==================================*/

#preloader{
    position:fixed;
    inset:0;
    background:#ffffff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
    transition:opacity .8s ease, visibility .8s ease;
}

#preloader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-content{
    text-align:center;
}

.loader-content img{
    width:130px;
    margin:auto;
    border-radius: 50%;
    animation:logoPulse 1s infinite;
}

.loader-content h2{
    margin-top:20px;
    color:#0B4EA2;
    font-family:'Poppins',sans-serif;
}

.loader-content p{
    color:#D72638;
    margin:10px 0 30px;
}

.loader-spinner{
    width:50px;
    height:50px;
    border:5px solid #ddd;
    border-top:5px solid #0B4EA2;
    border-radius:50%;
    margin:auto;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

@keyframes logoPulse{
    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }
}

/*=====================================
ABOUT HERO
=====================================*/

.about-hero{
    position: relative;
    height: 65vh;
    background: url("images/africanchild5.jpeg") center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    overflow:hidden;
}

.about-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    padding:20px;
}

.hero-content h1{
    font-size:3.5rem;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.2rem;
    line-height:1.8;
}

/*=====================================
ABOUT PAGE
=====================================*/

.about-section,
.focus-section,
.mission-section,
.management{
    padding:100px 8%;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.5rem;
    color:#0B4EA2;
    margin-bottom:15px;
}

.section-title p{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/*=====================================
WHAT WE DO
=====================================*/

.about-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-text h2{
    color:#D72638;
    margin-bottom:15px;
}

.about-text h3{
    font-size:2rem;
    color:#0B4EA2;
    margin-bottom:25px;
    line-height:1.4;
}

.about-text p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
    text-align:justify;
}

/*=====================================
FOCUS AREAS
=====================================*/

.focus-section{
    background:#f8f9fc;
}

.focus-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.focus-card{
    background:#fff;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.focus-card:hover{
    transform:translateY(-10px);
}

.focus-card i{
    font-size:3rem;
    color:#D72638;
    margin-bottom:20px;
}

.focus-card h3{
    color:#0B4EA2;
}

/*=====================================
MISSION
=====================================*/

.mission-section{
    background:#ffffff;
}

.mission-text{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
    font-size:1.15rem;
    line-height:2;
    color:#555;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.mission-card{
    background:#f8f9fc;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.mission-card:hover{
    background:#0B4EA2;
    color:#fff;
    transform:translateY(-10px);
}

.mission-card h3{
    margin-bottom:15px;
}

.mission-card:hover h3,
.mission-card:hover p{
    color:#fff;
}

/*=====================================
OUR APPROACH HERO
=====================================*/

.approach-hero{
    position:relative;
    height:65vh;
    background:url("images/africanchild26.jpg") center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    overflow:hidden;
}

.approach-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.approach-hero .hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    padding:20px;
}

.approach-hero h1{
    font-size:3.5rem;
    margin-bottom:20px;
    font-weight:700;
}

.approach-hero p{
    font-size:1.2rem;
    line-height:1.8;
}

/*=====================================
APPROACH SECTIONS
=====================================*/

.approach-section{
    padding:100px 8%;
}

.approach-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:70px;
    align-items:center;
}

.approach-grid.reverse{
    grid-template-columns:repeat(2,1fr);
}

.approach-image{
    overflow:hidden;
    border-radius:20px;
}

.approach-image img{
    width:100%;
    display:block;
    border-radius:20px;
    transition:.5s;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.approach-image:hover img{
    transform:scale(1.08);
}

.approach-content h2{
    color:#D72638;
    margin-bottom:15px;
    font-size:1.2rem;
    text-transform:uppercase;
    letter-spacing:1px;
}

.approach-content h3{
    color:#0B4EA2;
    font-size:2.3rem;
    margin-bottom:25px;
    line-height:1.4;
}

.approach-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
    text-align:justify;
}

/*=====================================
OUR APPROACH RESPONSIVE
=====================================*/

/* Tablets */
@media (max-width: 992px) {

    .approach-hero {
        height: 55vh;
    }

    .approach-hero h1 {
        font-size: 2.8rem;
    }

    .approach-hero p {
        font-size: 1.1rem;
    }

    .approach-grid,
    .approach-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-content,
    .approach-image {
        width: 100%;
    }

    .approach-content {
        text-align: center;
    }

    .approach-content h3 {
        font-size: 2rem;
    }

    .football-features .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Phones */
@media (max-width: 768px) {

    .approach-section,
    .football-features {
        padding: 70px 6%;
    }

    .approach-hero {
        height: 50vh;
    }

    .approach-hero h1 {
        font-size: 2.2rem;
    }

    .approach-hero p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .approach-content h2 {
        font-size: 1rem;
    }

    .approach-content h3 {
        font-size: 1.7rem;
    }

    .approach-content p {
        text-align: left;
        font-size: 1rem;
    }

    .football-features .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card i {
        font-size: 2.5rem;
    }
}

/* Small Phones */
@media (max-width: 480px) {

    .approach-hero h1 {
        font-size: 1.8rem;
    }

    .approach-hero p {
        font-size: 0.95rem;
    }

    .approach-content h3 {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 25px 18px;
    }
}