/* =========================
   SK BROTHERS STYLE.CSS
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f5f5;
    color:#333;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

header{
    background:#000;
    border-bottom:4px solid #ffc107;
    position:sticky;
    top:0;
    z-index:1000;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo h2{
    color:#ffc107;
    font-size:38px;
    font-weight:800;
}

.logo span{
    color:#fff;
    font-size:14px;
}

nav ul{
    list-style:none;
    display:flex;
    align-items:center;
    gap:10px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:600;
    padding:10px 18px;
    border-radius:8px;
    transition:0.3s ease;
}

/* Hover Effect */

nav ul li a:hover{
    background:#ffc107;
    color:#000;
}

/* Active Page */

nav ul li a.active{
    background:#ffc107;
    color:#000;
}

/* HERO */

.hero{
    height:100vh;
    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url('../image/f5.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

.hero-content{
    max-width:900px;
}

.hero-content h1{
    font-size:72px;
    font-weight:800;
    margin-bottom:20px;
    text-shadow:3px 3px 12px rgba(0,0,0,.5);
}

.hero-content p{
    font-size:22px;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    background:#ffc107;
    color:#000;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(255,193,7,.4);
}

/* SECTIONS */

section{
    padding:80px 0;
}

section h2{
    text-align:center;
    margin-bottom:40px;
    color:#111;
    font-size:38px;
}

/* ABOUT */

.about-home p{
    text-align:center;
    max-width:900px;
    margin:auto;
    font-size:18px;
}

/* SERVICES */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:35px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(1, 0, 54, 0.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card i{
    font-size:45px;
    color:#ffc107;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
}

/* FLEET */

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.equipment{
    background:#111;
    color:white;
    padding:30px;
    border-radius:12px;
    text-align:center;
}

.equipment h3{
    color:#ffc107;
}

/* GALLERY */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:12px;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.gallery-grid img:hover{
    transform:scale(1.04);
}

/* WHY US */

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.why-grid div{
    background:#fff;
    padding:25px;
    border-radius:12px;
    text-align:center;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/* STATS */

.stats{
    background:#111;
    color:white;
}

.stats .container{
    display:flex;
    justify-content:space-around;
    text-align:center;
    flex-wrap:wrap;
}

.stat-box{
    margin:20px;
}

.stat-box h2{
    color:#ffc107;
    font-size:55px;
    margin-bottom:10px;
}

/* CONTACT */

.contact-preview{
    text-align:center;
}

.contact-preview p{
    margin-bottom:20px;
}

/* FOOTER */

footer{
    background:#000;
    color:#fff;
    text-align:center;
    padding:35px 0;
    border-top:4px solid #ffc107;
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:34px;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    z-index:999;
}

/* MOBILE */

@media(max-width:768px){

    header .container{
        flex-direction:column;
        text-align:center;
    }

  nav ul{
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
    margin-top:15px;
}

nav ul li{
    margin:0;
}

nav ul li a{
    padding:8px 12px;
    font-size:14px;
}

    .hero{
        height:auto;
        padding:120px 20px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:18px;
    }

    .service-grid,
    .fleet-grid,
    .gallery-grid,
    .why-grid{
        grid-template-columns:1fr;
    }

    .stats .container{
        flex-direction:column;
    }

    iframe{
        height:300px;
    }

    .whatsapp{
        width:55px;
        height:55px;
        font-size:28px;
    }
}

/* TABLET */

@media(min-width:769px) and (max-width:1024px){

    .hero-content h1{
        font-size:55px;
    }

    .service-grid,
    .fleet-grid,
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
.card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:15px;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    height:90px;
    width:auto;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-text h2{
    color:#ffc107;
    font-size:38px;
    font-weight:800;
    margin:0;
    line-height:1;
}

.logo-text span{
    color:#ddd;
    font-size:16px;
    font-weight:500;
    letter-spacing:1px;
    margin-top:5px;
}
.contact-info h2,
.contact-form h2{
    background:linear-gradient(135deg,#000,#222);
    color:#fff;
    text-align:center;
    padding:18px 25px;
    margin-bottom:25px;
    border-radius:12px;
    border-left:6px solid #ffc107;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    position:relative;
}
.contact-form button{
    width:100%;
    background:#ffc107;
    color:#000;
    border:none;
    padding:15px;
    font-size:17px;
    font-weight:bold;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}
.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px 15px;
    margin-bottom:15px;
    border:2px solid #333;
    border-radius:8px;
    background:#ffffff;
    color: #333;;
    font-size:15px;
    transition:.3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#bbb;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#ffc107;
    box-shadow:0 0 10px rgba(255,193,7,.4);
}
.page-heading{
    text-align:center;
    font-size:48px;
    font-weight:800;
    color:#111;
    margin-bottom:30px;
    letter-spacing:1px;
    position:relative;
}

.page-heading::after{
    content:'';
    display:block;
    width:100px;
    height:5px;
    background:#ffc107;
    margin:15px auto 0;
    border-radius:20px;
}
/* REVIEWS */

.reviews{
    background:#f9f9f9;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.review-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    border-top:4px solid #ffc107;
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-5px);
}

.review-card p{
    margin:15px 0;
    color:#555;
}

.review-card h4{
    color:#111;
}
.stars{
    color:#ffc107;
    font-size:30px;
    font-weight:900;
    text-align:center;
    margin-bottom:20px;
    text-shadow:0 2px 8px rgba(255,193,7,.4);
}
@media(max-width:768px){

    header .container{
        flex-direction:column;
        text-align:center;
    }

    .logo{
        flex-direction:row;
        justify-content:center;
        align-items:center;
    }

    .logo img{
        height:60px;
    }

    .logo-text h2{
        font-size:28px;
    }

    nav ul{
        display:flex;
        flex-direction:row;
        flex-wrap:wrap;
        justify-content:center;
        gap:5px;
        margin-top:15px;
    }

    nav ul li a{
        padding:8px 10px;
        font-size:13px;
    }
}
footer{
    background:#111;
    color:#fff;
    padding:20px 0;
}

.footer-content{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.footer-social{
    position:absolute;
    left:40px;
    display:flex;
    gap:15px;
}

.footer-social a{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    transition:all 0.3s ease;
    box-shadow:0 6px 15px rgba(0,0,0,0.25);
    border:2px solid rgba(255,255,255,0.15);
}

.facebook{
    background:linear-gradient(135deg,#1877F2,#0A58CA);
}

.tiktok{
    background:linear-gradient(135deg,#FF0050,#00F2EA);
}

.footer-whatsapp{
    background:linear-gradient(135deg,#25D366,#128C7E);
}

.footer-social a:hover{
    transform:translateY(-5px) scale(1.08);
    box-shadow:0 12px 25px rgba(0,0,0,0.35);
}

.footer-text{
    text-align:center;
}

.footer-text h3{
    margin-bottom:8px;
}

.footer-text p{
    margin:5px 0;
}
.footer-contact{
    position:absolute;
    right:40px;
    text-align:left;
}

.footer-contact p{
    margin:6px 0;
    color:#ddd;
    font-size:14px;
}

.footer-contact i{
    margin-right:8px;
    color:#25D366;
}

@media(max-width:768px){

    .footer-content{
        flex-direction:column;
        gap:20px;
    }

    .footer-social{
        position:static;
    }

    .footer-contact{
        position:static;
        text-align:center;
    }

    .footer-text{
        text-align:center;
    }
}