/*=================================
SIBU SPORTS GROUP
SERVICES 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{
    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;
}

.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;
}

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
==================================*/

.services-hero{
    height:55vh;
    background:url("../Images/Overay/4.jpg") center/cover no-repeat;
    position:relative;
}

.overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.60);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content{
    color:#fff;
    max-width:900px;
    padding:20px;
}

.hero-content h1{
    font-size:60px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    line-height:34px;
}

/*=================================
INTRODUCTION
==================================*/

.intro{
    width:90%;
    max-width:1000px;
    margin:90px auto;
    text-align:center;
}

.intro h2{
    font-size:42px;
    margin-bottom:20px;
}

.intro p{
    color:#555;
    line-height:32px;
    font-size:18px;
}

/*=================================
SERVICES
==================================*/

.services{
    padding:20px 8% 80px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #007336;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.service-card i{
    font-size:55px;
    color:#007336;
    margin-bottom:25px;
}

.service-card h3{
    font-size:24px;
    margin-bottom:18px;
}

.service-card p{
    color:#666;
    line-height:30px;
}

/*=================================
TECHNOLOGY
==================================*/

.technology{
    background:#f7f7f7;
    padding:90px 8%;
    text-align:center;
}

.technology h2{
    font-size:42px;
    margin-bottom:20px;
}

.technology > p{
    max-width:800px;
    margin:0 auto 60px;
    color:#555;
    line-height:30px;
}

.technology-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.tech-box{
    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.tech-box:hover{
    transform:translateY(-8px);
}

.tech-box img{
    height:90px;
    margin:0 auto 25px;
    object-fit:contain;
}

.tech-box h3{
    margin-bottom:15px;
    font-size:24px;
}

.tech-box p{
    color:#666;
    line-height:28px;
}

/*=================================
WHY CHOOSE US
==================================*/

.why-us{
    padding:90px 8%;
    text-align:center;
    background:#fff;
}

.why-us h2{
    font-size:42px;
    margin-bottom:50px;
    color:#111;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:35px 30px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
    border-bottom:4px solid #007336;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.why-card i{
    font-size:50px;
    color:#007336;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#666;
    line-height:28px;
}

/*=================================
CALL TO ACTION
==================================*/

.cta{
    background:linear-gradient(rgba(0,115,54,.9),rgba(0,115,54,.9)),
    url("../Images/Overay/4.jpg") center/cover no-repeat;
    padding:90px 8%;
    text-align:center;
    color:#fff;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    max-width:750px;
    margin:0 auto 35px;
    line-height:32px;
    font-size:18px;
}

.cta .btn{
    display:inline-block;
    background:#fff;
    color:#007336;
}

.cta .btn:hover{
    background:#111;
    color:#fff;
}

/*=================================
FOOTER
==================================*/

footer{
    background:#111;
    color:#fff;
}

.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:45px;
    padding:70px 0;
}

.footer-box h3{
    margin-bottom:20px;
    font-size:22px;
}

.footer-box p{
    color:#ddd;
    line-height:30px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:12px;
}

.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;
    color:#ddd;
}

/*=================================
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;
}

.hero-content h1{
    font-size:45px;
}

.hero-content p{
    font-size:18px;
}

.services-grid{
    grid-template-columns:repeat(2,1fr);
}

.technology-grid{
    grid-template-columns:1fr;
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.footer-container{
    grid-template-columns:repeat(2,1fr);
}

}

/*============================*/

@media(max-width:768px){

.services-grid{
    grid-template-columns:1fr;
}

.why-grid{
    grid-template-columns:1fr;
}

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
    line-height:28px;
}

.intro h2,
.technology h2,
.why-us h2,
.cta h2{
    font-size:32px;
}

.intro p,
.cta p{
    font-size:16px;
}

.service-card,
.tech-box,
.why-card{
    padding:30px 25px;
}

}

/*=================================
SMOOTH ANIMATIONS
==================================*/

.service-card,
.tech-box,
.why-card,
.btn,
.partner-box{
    transition:all .35s ease;
}

.service-card:hover i,
.why-card:hover i{
    transform:scale(1.1);
}