/* css/style.css */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #1f2937;
    overflow-x: hidden;
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-padding{
    padding: 100px 0;
}

/* ================= NAVBAR ================= */

.header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    font-size: 28px;
    font-weight: 700;
    color: #f59e0b;
}

.nav-links{
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a{
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover{
    color: #f59e0b;
}

.nav-btn{
    text-decoration: none;
    background: #f59e0b;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    transition: 0.3s;
}

.nav-btn:hover{
    background: #ff8c00;
}

.menu-btn{
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ================= HERO SECTION ================= */

/* ================= HERO SECTION ================= */

.hero{
    margin-top: 90px;
    background: #f5f5f5;
    padding-bottom: 50px;
}

.hero-banner{
    width: 100%;
    height: 750px;
    position: relative;
    overflow: hidden;

    border-bottom-right-radius: 120px;
}

.hero-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* DARK OVERLAY */

.hero-overlay{
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.15)
    );

    display: flex;
    align-items: center;
}

/* CONTENT */

.hero-content{
    color: white;
    max-width: 700px;
}

.hero-tag{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffd54f;
}

.hero-content h1{
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text{
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 40px;
    color: #f3f4f6;
}

/* BUTTONS */

.hero-buttons{
    display: flex;
    gap: 20px;
}

.primary-btn,
.secondary-btn{
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 500;
    transition: 0.4s;
}

.primary-btn{
    background: #f59e0b;
    color: white;
}

.primary-btn:hover{
    background: #ff8400;
    transform: translateY(-3px);
}

.secondary-btn{
    border: 2px solid white;
    color: white;
}

.secondary-btn:hover{
    background: white;
    color: #111827;
}
.hero-banner img{
    animation: zoomHero 8s ease-in-out infinite alternate;
}

@keyframes zoomHero{

    0%{
        transform: scale(1);
    }

    100%{
        transform: scale(1.08);
    }

}

/* ================= ABOUT ================= */

.about-container{
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image img{
    width: 100%;
    border-radius: 20px;
}

.about-content{
    flex: 1;
}

.section-subtitle{
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-content h2{
    font-size: 45px;
    margin-bottom: 25px;
}

.about-content p{
    line-height: 1.9;
    color: #6b7280;
}

.about-features{
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.feature-card{
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.feature-card h3{
    color: #f59e0b;
    margin-bottom: 10px;
}

/* ================= BENEFITS ================= */

.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2{
    font-size: 45px;
}

.benefits{
    background: #fffdf7;
}

.benefits-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.benefit-card{
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.benefit-card:hover{
    transform: translateY(-10px);
}

.icon{
    font-size: 50px;
    margin-bottom: 20px;
}

.benefit-card h3{
    margin-bottom: 15px;
}

.benefit-card p{
    color: #6b7280;
    line-height: 1.8;
}

/* ================= STATS ================= */

.stats{
    background: linear-gradient(to right,#f59e0b,#ffb703);
    color: white;
}

.stats-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    text-align: center;
}

.stat-box h2{
    font-size: 60px;
    margin-bottom: 10px;
}

/* ================= CTA ================= */

.cta-container{
    background: linear-gradient(to right,#fff7d6,#fff1b8);
    padding: 80px;
    border-radius: 30px;
    text-align: center;
}

.cta-container h2{
    font-size: 45px;
    margin-bottom: 20px;
}

.cta-container p{
    color: #6b7280;
    margin-bottom: 35px;
}

/* ================= FOOTER ================= */

.footer{
    background: #111827;
    color: white;
    padding: 60px 0;
}

.footer-container{
    text-align: center;
}

.footer-logo{
    font-size: 35px;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 20px;
}

.footer p{
    color: #d1d5db;
    margin-bottom: 25px;
}

.footer-links{
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a{
    color: white;
    text-decoration: none;
}

/* ================= ANIMATION ================= */

@keyframes float{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-20px);
    }
    100%{
        transform: translateY(0px);
    }
}
/* ================= PRODUCTS ================= */

.products{
    background: #f3f3f3;
}

.products .section-title{
    text-align: center;
    margin-bottom: 80px;
}

.products .section-title h2{
    font-size: 55px;
    color: #0f9d8a;
    font-weight: 700;
}

.products-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 80px 40px;
}

.product-card{
    text-align: center;
    transition: 0.4s;
}

.product-card:hover{
    transform: translateY(-10px);
}

.product-card img{
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 25px;
}

.product-card h3{
    font-size: 32px;
    color: #0f9d8a;
    margin-bottom: 20px;
    font-weight: 500;
}

.product-card p{
    font-size: 22px;
    line-height: 1.8;
    color: #111;
    margin-bottom: 25px;
}

.product-card a{
    text-decoration: none;
    color: #0f9d8a;
    font-size: 22px;
    transition: 0.3s;
}

.product-card a:hover{
    letter-spacing: 1px;
}
/* ================= PROJECT SLIDER ================= */

.projects-slider{
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #efefef;
}

/* BACKGROUND */

.slider-bg{
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slider-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
    transform: scale(1.1);
}

/* WRAPPER */

.slider-wrapper{
    position: relative;
    z-index: 2;
    width: 85%;
    margin: auto;
}

/* CARD */

.project-card{
    display: none;

    background: rgba(12,16,35,0.88);

    padding: 60px;

    border-radius: 8px;

    animation: fadeSlide 1s ease;
}

.project-card.active{
    display: block;
}

/* CONTENT */

.project-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* TEXT */

.project-text{
    flex: 1;
    color: white;
}

.project-text h2{
    font-size: 58px;
    margin-bottom: 30px;
    font-weight: 300;
}

.project-text p{
    font-size: 22px;
    line-height: 2;
    color: #e5e7eb;
}

/* IMAGE */

.project-image{
    flex: 1;
}

.project-image img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.4);
}

/* ANIMATION */

@keyframes fadeSlide{

    from{
        opacity: 0;
        transform: translateX(40px);
    }

    to{
        opacity: 1;
        transform: translateX(0);
    }

}
/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section{
    position: relative;
    height: 700px;
    overflow: hidden;
}

/* BACKGROUND */

.testimonial-bg{
    position: absolute;
    inset: 0;
}

.testimonial-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BLUE OVERLAY */

.testimonial-overlay{
    position: absolute;
    inset: 0;

    background: rgba(0,102,204,0.55);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

/* SLIDER */

.testimonial-slider{
    width: 100%;
    max-width: 950px;
    text-align: center;
    color: white;
}

/* CARD */

.testimonial-card{
    display: none;
    animation: fadeTestimonial 1s ease;
}

.testimonial-card.active{
    display: block;
}

.testimonial-card h2{
    font-size: 52px;
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonial-card p{
    font-size: 36px;
    line-height: 1.8;
    font-weight: 400;
}

/* DOTS */

.testimonial-dots{
    margin-top: 70px;
}

.dot{
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    margin: 0 8px;
    transition: 0.4s;
}

.active-dot{
    background: white;
}

/* ANIMATION */

@keyframes fadeTestimonial{

    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}
/* ================= FOOTER ================= */

.footer{
    background: #071426;
    color: white;
}

/* TOP */

.footer-top{
    padding: 100px 0 70px;
}

.footer-grid{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

/* LOGO */

.footer-logo{
    font-size: 42px;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 25px;
}

/* TEXT */

.footer-col p{
    color: #cbd5e1;
    line-height: 2;
    font-size: 17px;
}

/* HEADINGS */

.footer-col h3{
    font-size: 24px;
    margin-bottom: 30px;
    color: white;
}

/* LINKS */

.footer-col ul{
    list-style: none;
}

.footer-col ul li{
    margin-bottom: 18px;
}

.footer-col ul li a{
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s;
}

.footer-col ul li a:hover{
    color: #f59e0b;
    padding-left: 6px;
}

/* CONTACT */

.contact-info li{
    color: #cbd5e1;
    line-height: 1.8;
}

/* SOCIAL */

.social-icons{
    margin-top: 30px;
}

.social-icons a{
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.08);

    color: white;

    border-radius: 50%;

    margin-right: 10px;

    text-decoration: none;

    transition: 0.4s;
}

.social-icons a:hover{
    background: #f59e0b;
    transform: translateY(-5px);
}

/* BOTTOM */

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 0;
}

.footer-bottom-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p{
    color: #94a3b8;
    font-size: 15px;
}
/* ================= FOOTER ================= */

.footer{
    background: #ffffff;
    color: #111827;
}

/* TOP */

.footer-top{
    padding: 100px 0 70px;
}

.footer-grid{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

/* LOGO */

.footer-logo{
    font-size: 42px;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 25px;
}

/* TEXT */

.footer-col p{
    color: #4b5563;
    line-height: 2;
    font-size: 17px;
}

/* HEADINGS */

.footer-col h3{
    font-size: 24px;
    margin-bottom: 30px;
    color: #111827;
}

/* LINKS */

.footer-col ul{
    list-style: none;
}

.footer-col ul li{
    margin-bottom: 18px;
}

.footer-col ul li a{
    text-decoration: none;
    color: #4b5563;
    transition: 0.3s;
    font-size: 17px;
}

.footer-col ul li a:hover{
    color: #f59e0b;
    padding-left: 6px;
}

/* CONTACT */

.contact-info li{
    color: #4b5563;
    line-height: 1.8;
    font-size: 17px;
}

/* SOCIAL ICONS */

.social-icons{
    margin-top: 30px;
}

.social-icons a{
    width: 50px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #f3f4f6;

    color: #111827;

    border-radius: 50%;

    margin-right: 10px;

    text-decoration: none;

    transition: 0.4s;
}

.social-icons a:hover{
    background: #f59e0b;
    color: white;
    transform: translateY(-5px);
}

/* BOTTOM */

.footer-bottom{
    border-top: 1px solid #e5e7eb;
    padding: 25px 0;
    background: #fafafa;
}

.footer-bottom-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p{
    color: #6b7280;
    font-size: 15px;
}
.footer{
    border-top: 4px solid #f59e0b;
}