/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* ================= GLOBAL STYLE ================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    background: #6366f1;
    color: #fff;
    overflow-x: hidden;
}

img{
    width: 100%;
    display: block;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

.section{
    padding: 100px 8%;
}

.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2{
    font-size: 42px;
    color: #ffb703;
    position: relative;
    display: inline-block;
}

.section-title h2::after{
    content: "";
    width: 70%;
    height: 4px;
    background: #ff6b00;
    position: absolute;
    left: 0;
    bottom: -10px;
}


/* ================= LOADER ================= */

.loader{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #6366f1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: 1s;
}

.loader h1{
    color: #ffb703;
    font-size: 50px;
    letter-spacing: 5px;
}

.loader-hide{
    opacity: 0;
    visibility: hidden;
}


/* ================= NAVBAR ================= */

header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar{
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s;
}

.navbar.sticky{
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.logo{
    font-size: 32px;
    font-weight: 700;
    color: #ffb703;
}

.nav-links{
    display: flex;
    gap: 35px;
}

.nav-links li a{
    color: #fff;
    font-size: 17px;
    transition: 0.3s;
}

.nav-links li a:hover,
.active-link{
    color: #ff6b00;
}

.menu-btn{
    display: none;
    font-size: 28px;
    cursor: pointer;
}


/* ================= HERO SECTION ================= */

.hero{
    width: 100%;
    height: 100vh;
    background: url("images/hero1.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: 1s;
}

.hero-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content{
    position: relative;
    z-index: 2;
    width: 90%;
}

.hero-content h1{
    font-size: 70px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeUp 1s ease;
}

.hero-content h1 span{
    color: #ffb703;
}

.hero-content p{
    font-size: 20px;
    max-width: 800px;
    margin: auto;
    margin-bottom: 35px;
    color: #ddd;
    animation: fadeUp 1.5s ease;
}

.hero-buttons{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* ================= BUTTON ================= */

.btn{
    padding: 15px 35px;
    background: linear-gradient(45deg,#ff6b00,#ffb703);
    color: #fff;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.btn:hover{
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255,183,3,0.5);
}

.btn2{
    background: transparent;
    border: 2px solid #ffb703;
}


/* ================= ABOUT ================= */

.about-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
    align-items: center;
}

.about-image img{
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(255,183,3,0.3);
}

.about-content h3{
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffb703;
}

.about-content p{
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.counter-wrapper{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.counter-box{
    background: #4338ca;
    padding: 25px;
    border-radius: 15px;
    flex: 1;
    text-align: center;
    transition: 0.4s;
}

.counter-box:hover{
    transform: translateY(-10px);
}

.counter-box h2{
    font-size: 40px;
    color: #ff6b00;
}

.counter-box p{
    margin-top: 10px;
}


/* ================= SERVICES ================= */

.services-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.service-card{
    background: #4338ca;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.5s;
    position: relative;
}

.service-card:hover{
    transform: translateY(-15px);
    box-shadow: 0 0 25px rgba(255,183,3,0.3);
}

.service-card img{
    height: 250px;
    object-fit: cover;
}

.service-card h3{
    padding: 20px;
    color: #ffb703;
    font-size: 25px;
}

.service-card p{
    padding: 0 20px 30px;
    color: #ccc;
    line-height: 1.7;
}


/* ================= VIDEO SECTION ================= */

.video-section{
    width: 100%;
    height: 60vh;
    background: url("images/bg-video.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.video-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.video-content{
    position: relative;
    z-index: 2;
}

.video-content h2{
    font-size: 50px;
    margin-bottom: 20px;
}

.video-content p{
    margin-bottom: 30px;
    color: #ddd;
}


/* ================= GALLERY ================= */

.gallery-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}

.gallery-item{
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.gallery-item img{
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img{
    transform: scale(1.1);
}


/* ================= TESTIMONIALS ================= */

.testimonial-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
}

.testimonial-card{
    background: #4338ca;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
}

.testimonial-card:hover{
    transform: translateY(-10px);
}

.testimonial-card p{
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-card h4{
    color: #ffb703;
}


/* ================= CONTACT ================= */

.contact-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 18px;
    border: none;
    outline: none;
    background: #4338ca;
    border-radius: 10px;
    color: #fff;
}

.contact-info{
    background: #4338ca;
    padding: 40px;
    border-radius: 20px;
}

.contact-info h3{
    font-size: 35px;
    margin-bottom: 20px;
    color: #ffb703;
}

.contact-info p{
    color: #ccc;
    margin-bottom: 30px;
}

.info-box{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-box i{
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg,#ff6b00,#ffb703);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}


/* ================= FOOTER ================= */

footer{
    background: #a855f7;
    padding: 50px 8%;
    text-align: center;
}

footer h2{
    font-size: 40px;
    color: #ffb703;
    margin-bottom: 15px;
}

footer p{
    color: #aaa;
}

.social-icons{
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a{
    width: 50px;
    height: 50px;
    background: #4338ca;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.4s;
}

.social-icons a:hover{
    background: linear-gradient(45deg,#ff6b00,#ffb703);
    transform: translateY(-8px);
}


/* ================= WHATSAPP ================= */

.whatsapp{
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 999;
}


/* ================= SCROLL TOP ================= */

.scroll-top{
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ff6b00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: 0.4s;
}

.show-scroll{
    opacity: 1;
}


/* ================= ANIMATION ================= */

@keyframes fadeUp{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

.show{
    animation: fadeUp 1s ease;
}


/* ================= RIPPLE EFFECT ================= */

.btn span{
    position: absolute;
    background: rgba(255,255,255,0.5);
    transform: translate(-50%,-50%);
    pointer-events: none;
    border-radius: 50%;
    animation: ripple 0.6s linear;
}

@keyframes ripple{

    from{
        width: 0;
        height: 0;
        opacity: 1;
    }

    to{
        width: 400px;
        height: 400px;
        opacity: 0;
    }

}


/* ================= RESPONSIVE ================= */

@media(max-width:991px){

    .hero-content h1{
        font-size: 50px;
    }

    .about-container,
    .contact-container{
        grid-template-columns: 1fr;
    }

    .navbar{
        padding: 20px 5%;
    }

}

@media(max-width:768px){

    .menu-btn{
        display: block;
    }

    .nav-links{
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background: #6366f1;
        flex-direction: column;
        text-align: center;
        padding: 30px 0;
        transition: 0.4s;
    }

    .nav-links.active{
        left: 0;
    }

    .hero-content h1{
        font-size: 38px;
    }

    .hero-content p{
        font-size: 16px;
    }

    .section-title h2{
        font-size: 32px;
    }

    .video-content h2{
        font-size: 35px;
    }

    .about-content h3{
        font-size: 30px;
    }

}

@media(max-width:500px){

    .hero-content h1{
        font-size: 30px;
    }

    .btn{
        padding: 12px 25px;
        font-size: 15px;
    }

    .section{
        padding: 80px 5%;
    }

}