*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#000;
    color:#fff;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:black;
    backdrop-filter:blur(12px);
    z-index:1000;
}

.logo img{
    height:60px;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:40px;
}

.navbar ul li a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    transition:.3s;
}

.navbar ul li a:hover{
    color:#FFC107;
}

.call-btn{
    background:#FFC107;
    color:#000;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.call-btn:hover{
    background:#fff;
}

/* HERO */

.hero{
    width:100%;
    height:100vh;
    background:url(images/taxi.png);
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    max-width:800px;
    z-index:2;
    padding:20px;
}

.hero h3{
    color:#FFC107;
    font-size:22px;
    margin-bottom:10px;
}

.hero h1{
    font-size:75px;
    font-weight:700;
    margin-bottom:10px;
}

.hero h2{
    color:#FFC107;
    font-size:36px;
    margin-bottom:20px;
}

.tagline{
    font-size:24px;
    margin-bottom:20px;
}

.description{
    color:#ddd;
    line-height:1.8;
    font-size:18px;
    margin-bottom:40px;
}
/* BUTTONS */

.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.book,
.call{
    display:inline-block;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:.4s ease;
}

.book{
    background:#FFC107;
    color:#000;
}

.book:hover{
    background:#fff;
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(255,193,7,.4);
}

.call{
    border:2px solid #FFC107;
    color:#fff;
}

.call:hover{
    background:#FFC107;
    color:#000;
    transform:translateY(-5px);
}

/* ANIMATION */

.hero-content{
    animation:fadeUp
}    

.hero-content{
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
        opacity:1;
    }
}
.hero{
    animation: zoomBg 8s ease-in-out infinite alternate;
}

@keyframes zoomBg{
    from{
        background-size:100%;
    }
    to{
        background-size:108%;
    }
}

.book,
.call{
    transition:0.4s;
}

.book:hover,
.call:hover{
    transform:translateY(-6px) scale(1.05);
    box-shadow:0 10px 30px rgba(255,193,7,.5);
}

.navbar ul li a{
    position:relative;
}

.navbar ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#FFC107;
    transition:.4s;
}

.navbar ul li a:hover::after{
    width:100%;
}


/* ABOUT */

.about{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
    padding:100px 10%;
    background:#111;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:10px;
    box-shadow:0 20px 50px rgba(255,193,7,.2);
    transition:.5s;
}

.about-image img:hover{
    transform:scale(1.03);
}

.about-content{
    flex:1;
}

.about-content span{
    color:#FFC107;
    letter-spacing:2px;
    font-weight:600;
}

.about-content h2{
    font-size:42px;
    margin:15px 0;
}

.about-content p{
    color:#ccc;
    line-height:1.9;
    margin-bottom:30px;
}

.about-boxes{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.box{
    background:#1a1a1a;
    padding:25px;
    border-radius:15px;
    text-align:center;
    width:150px;
    transition:.4s;
}

.box:hover{
    background:#FFC107;
    color:#000;
    transform:translateY(-10px);
}

.box h3{
    font-size:30px;
}

.box p{
    margin-top:10px;
    font-size:15px;
}

/* ABOUT ANIMATION */

.about-image{
    opacity:0;
    transform:translateX(-80px);
    transition:1s ease;
}

.about-content{
    opacity:0;
    transform:translateX(80px);
    transition:1s ease;
}

.about-image.show{
    opacity:1;
    transform:translateX(0);
}

.about-content.show{
    opacity:1;
    transform:translateX(0);
}

.box{
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}

.box.show{
    opacity:1;
    transform:translateY(0);
}

/* ===========================
   SERVICES SECTION
=========================== */

.services{
    background:#0f0f0f;
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#fcb900;
    letter-spacing:3px;
    font-size:15px;
    font-weight:600;
}

.section-title h2{
    color:#fff;
    font-size:45px;
    margin:15px 0;
}

.section-title p{
    color:#bdbdbd;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

.featured{
    display:flex;
    align-items:center;
    gap:30px;
    background:#1a1a1a;
    padding:35px;
    border-radius:18px;
    margin-bottom:30px;
    transition:.4s;
}

.featured:hover{
    transform:translateY(-8px);
    border:1px solid #fcb900;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.service-card{
    display:flex;
    gap:20px;
    background:#1a1a1a;
    padding:30px;
    border-radius:18px;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-8px);
    border:1px solid #fcb900;
}

.icon{
    width:70px;
    height:70px;
    background:#fcb900;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
}

.service-card h3,
.featured h3{
    color:#fff;
    margin-bottom:10px;
}

.service-card p,
.featured p{
    color:#cfcfcf;
    line-height:1.7;
}

@media(max-width:768px){

.featured{
    flex-direction:column;
    text-align:center;
}

.service-grid{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:32px;
}

}

.service-card,
.featured{
    transition:0.5s ease;
    border:1px solid transparent;
}

.service-card:hover,
.featured:hover{
    transform:translateY(-12px) scale(1.03);
    border-color:#fcb900;
    box-shadow:0 15px 35px rgba(252,185,0,.25);
}

.icon{
    transition:.5s;
}

.service-card:hover .icon,
.featured:hover .icon{
    transform:rotate(360deg) scale(1.1);
}

.service-card,
.featured{
    opacity:0;
    transform:translateY(80px);
    transition:1s;
}

.service-card.show,
.featured.show{
    opacity:1;
    transform:translateY(0);
}


/* ==========================
   GALLERY SECTION
========================== */

.gallery-heading,
.gallery-box{
    opacity:0;
    transform:translateY(60px);
    transition:all 0.8s ease;
}

.gallery-heading.show,
.gallery-box.show{
    opacity:1;
    transform:translateY(0);
}
.gallery-box:hover{
    transform:translateY(-10px) scale(1.04);
    box-shadow:0 0 30px rgba(255,180,0,.5);
}

.gallery-box:hover img{
    transform:scale(1.1);
}
.gallery{
    padding:80px 10%;
    background:#111;
    text-align:center;
}

.gallery-heading h2{
    color:#ffb400;
    font-size:42px;
    margin-bottom:10px;
}

.gallery-heading p{
    color:#ccc;
    margin-bottom:40px;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.gallery-box{
    background:#1b1b1b;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 0 15px rgba(255,180,0,.3);
}

.gallery-box img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:0.5s;
}

.gallery-box h3{
    color:#ffb400;
    padding:20px;
    font-size:22px;
}

/* ==========================
   CONTACT SECTION
========================== */

.contact{
    background:#0f0f0f;
    padding:100px 8%;
}

.contact-heading{
    text-align:center;
    margin-bottom:60px;
}

.contact-heading span{
    color:#fcb900;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
}

.contact-heading h2{
    color:#fff;
    font-size:45px;
    margin:15px 0;
}

.contact-heading p{
    color:#cfcfcf;
    max-width:600px;
    margin:auto;
    line-height:1.8;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:40px;
    margin-top:50px;
}

.contact-info,
.contact-form{
    background:#1a1a1a;
    padding:35px;
    border-radius:20px;
    transition:.4s;
}

.contact-info:hover,
.contact-form:hover{
    transform:translateY(-8px);
    border:1px solid #fcb900;
    box-shadow:0 15px 35px rgba(252,185,0,.2);
}

.info-box{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.info-box:last-child{
    margin-bottom:0;
}

.info-box i{
    width:60px;
    height:60px;
    background:#fcb900;
    color:#111;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    transition:.5s;
}

.info-box:hover i{
    transform:rotate(360deg);
}

.info-box h3{
    color:#fff;
    margin-bottom:5px;
}

.info-box p{
    color:#cfcfcf;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 18px;
    margin-bottom:20px;
    border:1px solid #333;
    border-radius:10px;
    background:#111;
    color:#fff;
    outline:none;
    font-size:16px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#fcb900;
}

.contact-form button{
    width:100%;
    padding:16px;
    background:#fcb900;
    color:#111;
    border:none;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
}

.contact-form button:hover{
    background:#ffd84d;
    transform:translateY(-4px);
}

.social-media{
    text-align:center;
    margin-top:60px;
}

.social-media h3{
    color:#fff;
    margin-bottom:25px;
}

.social-media a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:55px;
    height:55px;
    border:2px solid #fcb900;
    border-radius:50%;
    color:#fcb900;
    text-decoration:none;
    font-size:22px;
    margin:0 10px;
    transition:.4s;
}

.social-media a:hover{
    background:#fcb900;
    color:#111;
    transform:translateY(-8px);
}

@media(max-width:991px){

.contact-container{
    grid-template-columns:1fr;
}

.contact-heading h2{
    font-size:36px;
}

}

@media(max-width:576px){

.contact{
    padding:70px 6%;
}

.contact-heading h2{
    font-size:30px;
}

.info-box{
    align-items:flex-start;
}

}

/* ==========================
   CONTACT ANIMATION
========================== */

.contact,
.contact-info,
.contact-form,
.social-media{
    opacity:0;
    transform:translateY(80px);
    transition:all 1s ease;
}

.contact.show,
.contact-info.show,
.contact-form.show,
.social-media.show{
    opacity:1;
    transform:translateY(0);
}

/* Form slide from right */
.contact-form{
    transform:translateX(80px);
}

.contact-form.show{
    transform:translateX(0);
}

/* Contact info slide from left */
.contact-info{
    transform:translateX(-80px);
}

.contact-info.show{
    transform:translateX(0);
}

/* ==========================
   FOOTER
========================== */

.footer{
    background: #000;
    padding:80px 8% 25px;
    border-top:1px solid rgba(255,193,7,.2);
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:40px;
    margin-bottom:50px;
}

.footer-box h2{
    color:#FFC107;
    font-size:32px;
    margin-bottom:10px;
}

.footer-box h3{
    color:#fff;
    margin-bottom:20px;
    font-size:22px;
}

.footer-box h4{
    color:#fff;
    margin-bottom:20px;
    font-weight:500;
}

.footer-box p{
    color:#bbb;
    line-height:1.8;
    margin-bottom:12px;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:15px;
    color:#bbb;
    transition:.3s;
}

.footer-box ul li a{
    color:#bbb;
    text-decoration:none;
    transition:.3s;
}

.footer-box ul li:hover,
.footer-box ul li a:hover{
    color:#FFC107;
    padding-left:8px;
}

.footer-box i{
    color:#FFC107;
    margin-right:10px;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:30px;
}

.footer-social a{
    width:50px;
    height:50px;
    border:2px solid #FFC107;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#FFC107;
    text-decoration:none;
    font-size:20px;
    transition:.4s;
}

.footer-social a:hover{
    background:#FFC107;
    color:#000;
    transform:translateY(-6px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
    text-align:center;
}

.footer-bottom p{
    color:#888;
    font-size:15px;
}

@media(max-width:768px){

.footer{
    padding:60px 6% 20px;
}

.footer-container{
    text-align:center;
}

.footer-social{
    gap:15px;
}

}
.footer-logo{
    width: 150px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}