/*=================================
SIBU SPORTS GROUP
ABOUT PAGE CSS
==================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:#222;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

/*=================================
HEADER
==================================*/

header{
    position:sticky;
    top:0;
    width:100%;
    background:#fff;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

/* Top Bar */

.top-bar{
    height:55px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 80px;
    border-bottom:1px solid #eee;
    font-size:14px;
    font-weight:600;
}

.top-left{
    display:flex;
    gap:35px;
}

.top-left span{
    display:flex;
    align-items:center;
    gap:8px;
}

.top-left a{
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.top-left a:hover{
    color:#007336;
}

/* Social Icons */

.socials{
    display:flex;
}

.socials a{
    width:45px;
    height:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#111;
    border-left:1px solid #eee;
    transition:.3s;
}

.socials a:last-child{
    border-right:1px solid #eee;
}

.socials a:hover{
    background:#007336;
    color:#fff;
}

/* Navigation */

nav{
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 80px;
    position:relative;
}

.logo img{
    height:80px;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin:0 18px;
}

nav ul li a{
    text-decoration:none;
    color:#111;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#007336;
}

.btn{
    background:#007336;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#000;
}

.menu-toggle{
    display:none;
    font-size:30px;
    color:#007336;
    cursor:pointer;
}

/*=================================
HERO SECTION
==================================*/

.about-hero{
    height:55vh;
    background:url("../Images/Overay/2.jpg");
    background-size:cover;
    background-position:center;
    position:relative;
}

.overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content{
    color:#fff;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
}

/*=================================
ABOUT SECTION
==================================*/

.about{
    width:90%;
    max-width:1200px;
    margin:18px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/*.about-image img{
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    background-color: none;
}*/

.about-text h2{
    font-size:42px;
    margin-bottom:12px;
    color:#111;
}

.about-text p{
    color:#333;
    margin-bottom:14px;
    line-height:30px;
}

/*=================================
MISSION
==================================*/

.mission{
    background:#f7f7f7;
    padding:90px 8%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:12px;
    transition:.4s;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:50px;
    color:#007336;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:18px;
    font-size:24px;
}

.card p{
    color:#555;
    line-height:28px;
}

/*=================================
WHY CHOOSE US
==================================*/

.why{
    padding:90px 8%;
    text-align:center;
}

.why h2{
    font-size:42px;
    margin-bottom:20px;
    color:#111;
}

.why > p{
    max-width:750px;
    margin:0 auto 50px;
    color:#555;
    line-height:30px;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-box{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.why-box:hover{
    transform:translateY(-10px);
}

.why-box i{
    font-size:45px;
    color:#007336;
    margin-bottom:20px;
}

.why-box h3{
    margin-bottom:15px;
    font-size:22px;
}

.why-box p{
    color:#555;
    line-height:28px;
}

/*=================================
SERVICES
==================================*/

.services{
    background:#f7f7f7;
    padding:90px 8%;
    text-align:center;
}

.services h2{
    font-size:42px;
    margin-bottom:50px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.service{
    background:#fff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.service:hover{
    transform:translateY(-10px);
}

.service i{
    font-size:48px;
    color:#007336;
    margin-bottom:20px;
}

.service h3{
    margin-bottom:15px;
}

.service p{
    color:#555;
    line-height:28px;
}

/*=================================
STATISTICS
==================================*/

.stats{
    background:#007336;
    color:#fff;
    padding:80px 8%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
}

.stat-box h2{
    font-size:48px;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
}

/*=================================
PARTNERS
==================================*/

.partners{
    padding:90px 8%;
    text-align:center;
}

.partners h2{
    font-size:42px;
    margin-bottom:20px;
}

.partners p{
    max-width:700px;
    margin:0 auto 50px;
    color:#555;
}

.partner-container{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:30px;
}

.partner-box{
    width:190px;
    height:120px;
    background:#fff;
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.partner-box:hover{
    transform:scale(1.05);
}

.partner-box img{
    max-width:90%;
    max-height:80px;
    object-fit:contain;
}

/*=================================
CALL TO ACTION
==================================*/

.cta{
    background:#111;
    color:#fff;
    text-align:center;
    padding:90px 8%;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 35px;
    line-height:30px;
}

/*=================================
FOOTER
==================================*/

footer{
    background:#111;
    color:#fff;
}

.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    padding:70px 0;
}

.footer-box h3{
    margin-bottom:20px;
    font-size:22px;
}

.footer-box p,
.footer-box li{
    color:#ddd;
    line-height:30px;
}

.footer-box ul{
    list-style:none;
}

.footer-box a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-box a:hover{
    color:#007336;
}

.footer-bottom{
    border-top:1px solid #333;
    text-align:center;
    padding:25px;
    font-weight:600;
}

/*=================================
RESPONSIVE
==================================*/

@media(max-width:992px){

.top-bar{
    display:none;
}

nav{
    padding:0 25px;
}

.logo img{
    height:65px;
}

.menu-toggle{
    display:block;
}

.btn{
    display:none;
}

nav ul{
    display:none;
    flex-direction:column;
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

nav ul.active{
    display:flex;
}

nav ul li{
    margin:0;
    border-bottom:1px solid #eee;
}

nav ul li a{
    display:block;
    padding:18px 25px;
}

.about{
    grid-template-columns:1fr;
}

.mission{
    grid-template-columns:1fr;
}

.why-container{
    grid-template-columns:repeat(2,1fr);
}

.services-grid{
    grid-template-columns:1fr;
}

.stats{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.footer-container{
    grid-template-columns:repeat(2,1fr);
}

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:18px;
}

}

@media(max-width:768px){

.why-container{
    grid-template-columns:1fr;
}

.stats{
    grid-template-columns:1fr;
}

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.about{
    width:92%;
}

.about-text h2,
.services h2,
.partners h2,
.why h2,
.cta h2{
    font-size:32px;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
}

.about-text p{
    line-height:28px;
}

}