/* ==============================
   RESET
============================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#111;
    color:#fff;
}

/* ==============================
   NAVBAR
============================== */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
}

.navbar{

    width:100%;
    padding:18px 7%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(12px);

    transition:.4s;
}

.logo{

    display:flex;
    align-items:center;
}

.logo img{

    width:65px;
    margin-right:15px;
}

.logo-text h2{

    color:#FFC107;
    font-size:24px;
    letter-spacing:1px;
}

.logo-text span{

    color:#fff;
    font-size:14px;
}

.nav-links{

    display:flex;
    list-style:none;
}

.nav-links li{

    margin-left:35px;
}

.nav-links a{

    text-decoration:none;
    color:#fff;
    font-weight:500;
    transition:.3s;
    position:relative;
}

.nav-links a::after{

    content:"";

    position:absolute;
    bottom:-8px;
    left:0;

    width:0;
    height:2px;

    background:#FFC107;

    transition:.3s;
}

.nav-links a:hover::after,
.nav-links .active::after{

    width:100%;
}

.nav-links a:hover{

    color:#FFC107;
}

.call-btn a{

    background:#FFC107;
    color:#111;

    text-decoration:none;

    padding:13px 24px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.call-btn a:hover{

    background:#fff;

    transform:translateY(-3px);
}

/* ==============================
 HERO
============================== */

.hero{

    width:100%;
    height:100vh;

    position:relative;

    overflow:hidden;
}

/* Slides */

.slider{

    width:100%;
    height:100%;
}

.slide{

    position:absolute;

    width:100%;
    height:100%;

    opacity:0;

    transition:opacity 1s ease;
}

.slide.active{

    opacity:1;
}

.slide img{

    width:100%;
    height:100%;

    object-fit:cover;
}

/* Overlay */

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

    rgba(0,0,0,.70),

    rgba(0,0,0,.55)

    );

}

/* Hero Text */

.hero-content{

    position:absolute;

    top:50%;
    left:8%;

    transform:translateY(-50%);

    max-width:700px;

    z-index:5;
}

.hero-content h3{

    color:#FFC107;

    letter-spacing:4px;

    margin-bottom:15px;
}

.hero-content h1{

    font-size:70px;

    line-height:1.15;

    margin-bottom:20px;

    font-weight:800;
}

.hero-content span{

    color:#FFC107;
}

.hero-content p{

    font-size:18px;

    color:#ddd;

    line-height:1.8;

    margin-bottom:35px;
}

/* Buttons */

.hero-buttons{

    display:flex;

    gap:20px;
}

.quote{

    background:#FFC107;

    color:#111;

    text-decoration:none;

    padding:15px 34px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.quote:hover{

    background:#fff;

    transform:translateY(-4px);
}

.call{

    border:2px solid #FFC107;

    color:#fff;

    text-decoration:none;

    padding:15px 34px;

    border-radius:50px;

    transition:.3s;
}

.call:hover{

    background:#FFC107;

    color:#111;
}

/* Slider Dots */

.dots{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    z-index:10;
}

.dot{

    width:14px;
    height:14px;

    border-radius:50%;

    background:#777;

    cursor:pointer;
}

.dot.active{

    background:#FFC107;
}

/* Scroll Down */

.scroll-down{

    position:absolute;

    bottom:40px;

    right:40px;

    font-size:28px;

    color:#FFC107;

    animation:move 1.5s infinite;

    z-index:10;
}

@keyframes move{

    0%{

        transform:translateY(0);
    }

    50%{

        transform:translateY(10px);
    }

    100%{

        transform:translateY(0);
    }

}

/* ==============================
 RESPONSIVE
============================== */

@media(max-width:992px){

.nav-links{

display:none;

}

.call-btn{

display:none;

}

.hero-content{

left:5%;

max-width:90%;

}

.hero-content h1{

font-size:48px;

}

.hero-content p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

width:220px;

}

}

@media(max-width:600px){

.logo img{

width:50px;

}

.logo-text h2{

font-size:20px;

}

.hero-content h1{

font-size:36px;

}

.hero-content h3{

font-size:14px;

letter-spacing:2px;

}

.hero-content p{

font-size:15px;

}

}
/* Smooth Hero Animation */

.hero-content{

    transition:1s;
}

/* Active Navbar */

.navbar.active{

    background:#111;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

/*==================================
ABOUT PAGE BANNER
==================================*/

.page-banner{
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.page-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
}

.banner-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: white;
}

.banner-content h1{
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-content p{
    font-size: 18px;
    color: #ddd;
    letter-spacing: 2px;
}

/*==================================
COMPANY SECTION
==================================*/

.company{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    padding: 100px 8%;
    background: #f5f5f5;
    flex-wrap: wrap;
}

.company-image{
    flex: 1;
    min-width: 320px;
}

.company-image img{
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    transition: .5s;
}

.company-image img:hover{
    transform: scale(1.03);
}

.company-content{
    flex: 1;
    min-width: 320px;
}

.company-content span{
    color: #FFC107;
    font-weight: 600;
    letter-spacing: 2px;
}

.company-content h2{
    font-size: 45px;
    color: #222;
    margin: 20px 0;
}

.company-content p{
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.btn{
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: #FFC107;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: .4s;
}

.btn:hover{
    background: #111;
    color: white;
}

/*==================================
MISSION SECTION
==================================*/

.mission{
    background: #111;
    padding: 100px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 35px;
}

.box{
    background: #1f1f1f;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: .4s;
}

.box:hover{
    transform: translateY(-10px);
    background: #222;
}

.box i{
    font-size: 45px;
    color: #FFC107;
    margin-bottom: 20px;
}

.box h3{
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}

.box p{
    color: #ccc;
    line-height: 1.8;
}

/*==================================
STATISTICS
==================================*/

.stats{
    background: #FFC107;
    padding: 80px 8%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 30px;
    text-align: center;
}

.stat h2{
    font-size: 55px;
    color: #111;
    margin-bottom: 10px;
}

.stat p{
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/*==================================
FOOTER
==================================*/

footer{
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 25px;
}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:992px){

    .banner-content h1{
        font-size: 42px;
    }

    .company{
        flex-direction: column;
    }

    .company-content h2{
        font-size: 35px;
    }

}

@media(max-width:768px){

    .page-banner{
        height: 45vh;
    }

    .banner-content h1{
        font-size: 32px;
    }

    .banner-content p{
        font-size: 15px;
    }

    .company{
        padding: 70px 6%;
    }

    .mission{
        padding: 70px 6%;
    }

    .stats{
        padding: 60px 6%;
    }

    .stat h2{
        font-size: 40px;
    }

}
/*==============================
SERVICES PAGE
==============================*/

.services-page{

    padding:100px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    background:#f5f5f5;

}

/*==============================
PREMIUM SERVICE CARD
==============================*/
.services-page{

    width:90%;
    max-width:1400px;
    margin:80px auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;

    align-items:stretch;

}
.service-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:all .4s ease;

}

.service-card::before{

    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#FFC107,#FF9800);
    transition:.5s;

}

.service-card:hover::before{

    left:0;

}

.service-card:hover{

    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,.18);

}

.service-card img{

    width:100%;
    height:240px;
    object-fit:cover;
    transition:transform .6s ease;

}

.service-card:hover img{

    transform:scale(1.12);

}

.service-card-content{

    padding:25px;

}

.service-card h3{

    color:#222;
    font-size:28px;
    margin-bottom:12px;
    transition:.3s;

}

.service-card:hover h3{

    color:#FFC107;

}

.service-card p{

    color:#666;
    line-height:1.8;
    margin-bottom:25px;

}

.service-card a{

    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 24px;
    background:#111;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.35s ease;

}

.service-card a:hover{

    background:#FFC107;
    color:#111;
    transform:translateX(6px);

}

.service-card a i{

    transition:.35s;

}

.service-card a:hover i{

    transform:translateX(5px);

}
/* CTA */

.service-cta{

    background:#111;
    color:white;
    text-align:center;
    padding:90px 8%;

}

.service-cta h2{

    font-size:45px;
    margin-bottom:20px;

}

.service-cta p{

    color:#ccc;
    margin-bottom:35px;
    font-size:18px;

}
/*==============================
GALLERY PAGE
==============================*/

.gallery{

    padding:100px 8%;
    background:#f5f5f5;

}

.gallery-title{

    text-align:center;
    margin-bottom:50px;

}

.gallery-title h2{

    font-size:45px;
    color:#222;

}

.gallery-title p{

    color:#666;
    margin-top:15px;

}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;

}

.gallery-item{

    position:relative;
    overflow:hidden;
    border-radius:15px;
    cursor:pointer;

}

.gallery-item img{

    width:100%;
    height:300px;
    object-fit:cover;
    transition:.6s;

}

.gallery-overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.65);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;

    transition:.4s;

}

.gallery-overlay h3{

    color:#FFC107;
    font-size:28px;
    text-align:center;

}

.gallery-item:hover img{

    transform:scale(1.15);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}
/*==============================
CONTACT PAGE
==============================*/

.contact-section{

padding:100px 8%;

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

background:#f5f5f5;

}

.contact-info h2{

font-size:42px;

color:#222;

margin-bottom:20px;

}

.contact-info p{

color:#666;

line-height:1.8;

margin-bottom:30px;

}

.info-box{

display:flex;

align-items:flex-start;

margin-bottom:30px;

}

.info-box i{

width:60px;

height:60px;

background:#FFC107;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:22px;

color:#111;

margin-right:20px;

}

.info-box h3{

margin-bottom:5px;

color:#222;

}

.contact-form{

background:white;

padding:40px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.1);

}

.contact-form input,

.contact-form textarea{

width:100%;

padding:15px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:8px;

outline:none;

font-size:16px;

}

.contact-form input:focus,

.contact-form textarea:focus{

border-color:#FFC107;

}

.contact-form button{

width:100%;

padding:15px;

border:none;

background:#FFC107;

font-size:18px;

font-weight:600;

cursor:pointer;

border-radius:8px;

transition:.3s;

}

.contact-form button:hover{

background:#111;

color:white;

}

.map iframe{

width:100%;

height:450px;

border:0;

}

@media(max-width:900px){

.contact-section{

grid-template-columns:1fr;

}

}
.whatsapp{

    position:fixed;

    bottom:30px;

    right:30px;

    width:60px;

    height:60px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.3);

    z-index:999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.1);

}
.call-now{

    position:fixed;

    bottom:105px;

    right:30px;

    width:60px;

    height:60px;

    background:#FFC107;

    color:#111;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.3);

    transition:.3s;

    z-index:999;

}

.call-now:hover{

    transform:scale(1.1);

}
.social-icons{

display:flex;

gap:15px;

margin-top:30px;

}

.social-icons a{

width:45px;

height:45px;

background:#FFC107;

color:#111;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

text-decoration:none;

transition:.3s;

}

.social-icons a:hover{

background:#111;

color:#fff;

}
/*==============================
FOOTER
==============================*/

.footer{

    background:#111;

    color:#ccc;

    padding:70px 8% 20px;

}

.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:40px;

}

.footer-logo{

    width:80px;

    margin-bottom:15px;

}

.footer-box h2{

    color:#FFC107;

    margin-bottom:15px;

}

.footer-box h3{

    color:#fff;

    margin-bottom:20px;

}

.footer-box p{

    line-height:1.8;

    margin-bottom:10px;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:12px;

}

.footer-box ul li a{

    text-decoration:none;

    color:#ccc;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#FFC107;

    padding-left:5px;

}

.footer-social{

    margin-top:20px;

    display:flex;

    gap:15px;

}

.footer-social a{

    width:42px;

    height:42px;

    background:#222;

    color:#FFC107;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    text-decoration:none;

    transition:.3s;

}

.footer-social a:hover{

    background:#FFC107;

    color:#111;

}

.footer-bottom{

    border-top:1px solid #333;

    margin-top:40px;

    padding-top:20px;

    text-align:center;

    color:#888;

}

.footer-box i{

    color:#FFC107;

    margin-right:10px;

}

/*==============================
PRELOADER
==============================*/

#preloader{

    position:fixed;

    inset:0;

    background:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:opacity .8s ease, visibility .8s;

}

.loader-content{

    text-align:center;

}

.loader-content img{

    width:120px;

    animation:logoFloat 2s infinite ease-in-out;

}

.loader-content h2{

    color:#FFC107;

    margin:20px 0;

    letter-spacing:2px;

}

.loading-bar{

    width:220px;

    height:5px;

    background:#333;

    border-radius:20px;

    overflow:hidden;

    margin:auto;

}

.loading-bar span{

    display:block;

    width:0;

    height:100%;

    background:#FFC107;

    animation:loading 2s linear forwards;

}

@keyframes loading{

    100%{

        width:100%;

    }

}

@keyframes logoFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

}

.preloader-hide{

    opacity:0;

    visibility:hidden;

}

