

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:#fff;
    overflow-x:hidden;
}

/* NAVBAR */

nav{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    background:#0f2a5f;
    backdrop-filter:blur(10px);
}

.nav-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
}

.logo{
    font-size:22px;
    font-weight:700;
    color:#d4af37;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{
    text-decoration:none;
    color:white;
    transition:.3s;
}

nav ul li a:hover{
    color:#d4af37;
}
nav ul{
    display:flex;
    gap:30px;
}


/* HERO */
    
 .hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
     background:url('https://images.unsplash.com/photo-1610375461246-83df859d849d?q=80&w=1920') center center/cover;
    z-index:-2;
}

.hero-bg::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}   
    


@keyframes pulse{
    0%,100%{transform:scale(1);}
    50%{transform:scale(1.2);}
}

.hero-content{
    max-width:900px;
    z-index:2;
}

.hero h1{
    font-size:4rem;
    margin-bottom:20px;
    color:#d4af37;
}

.hero p{
    font-size:1.2rem;
    line-height:1.8;
    color:white;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:15px 35px;
    background:linear-gradient(45deg,#d4af37,#f5d76e);
    color:black;
    text-decoration:none;
    font-weight:600;
    border-radius:50px;
    transition:.4s;
}

.btn:hover{
    transform:translateY(-5px);
}
    
    /* =========================
   ABOUT US SECTION
========================= */

#about{
    background:#0f2a5f;
    padding:100px 0;
}

.about-content{
    max-width:1200px;
    margin:auto;
}

.about-text{
    background:#fff;
    padding:50px;
    border-radius:20px;
    border:1px solid #E8E1D5;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.about-text h3{
    font-size:34px;
    color:#C9A227;
    margin-bottom:25px;
    font-weight:700;
}

.about-text p{
    color:black;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

.about-highlight{
    margin-top:30px;
    padding:25px;
    background:linear-gradient(
        135deg,
        #C9A227,
        #E5C76B
    );
    border-radius:15px;
    color:#fff;
    font-size:18px;
    line-height:1.8;
    text-align:center;
    box-shadow:0 10px 25px rgba(201,162,39,.25);
}

/* =========================
   EXPERTISE SECTION
========================= */

.expertise-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:50px;
}

.expertise-item{
    background:#000;
    border:1px solid #E8E1D5;
    border-radius:15px;
    padding:20px;
    text-align:center;
    color:#333;
    font-weight:600;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.04);
}

.expertise-item:hover{
    background:#C9A227;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(201,162,39,.25);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .about-text{
        padding:30px;
    }

    .about-text h3{
        font-size:28px;
    }

    .about-text p{
        font-size:16px;
    }

    .about-highlight{
        font-size:16px;
        padding:20px;
    }

}

/* SECTION */

section{
    padding:100px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    color:#d4af37;
}

 
 .services-slider{
    padding:30px 10px 70px;
}

.service-card{
    background:#0f2a5f;
    height:450px;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #E8E1D5;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.service-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.service-card h3{
    color:#C9A227;
    padding:20px 20px 10px;
    font-size:22px;
}

.service-card p{
    padding:0 20px 25px;
    color:#fff;
}

.swiper-pagination-bullet-active{
    background:#C9A227 !important;
}   
    
    

/* COMPANY INFO */

.info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.info-box{
   background:#0f2a5f;
    padding:30px;
    border-radius:15px;
}

.info-box h3{
    color:#d4af37;
    margin-bottom:20px;
}

.info-box p{
    margin-bottom:10px;
    color:white;
}

/* Management Image */

.manager-img{
    width:100%;
    max-width:550px;
    height:auto;
    display:block;
    margin:25px auto 0;
    border-radius:15px;
    object-fit:cover;
    border:3px solid #d4af37;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    transition:all .4s ease;
}

/* Hover Effect */

.manager-img:hover{
    transform:scale(1.05);
    box-shadow:0 5px 15px rgba(212,175,55,.4);
}



/* Mobile */

@media(max-width:768px){

    .manager-img{
        max-width:100%;
        margin-top:20px;
    }

}

/* STATS */

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    text-align:center;
}

.stat-box{
    padding:40px;
    background:#0f2a5f;
    border-radius:15px;
}

.counter{
    font-size:45px;
    color:#d4af37;
    font-weight:bold;
}
 

/* CONTACT */

.contact{
    text-align:center;
}

.contact p{
    margin:15px 0;
    font-size:18px;
}


/* ANIMATION */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:768px){

.hero h1{
    font-size:2.5rem;
}

nav ul{
    gap:15px;
    font-size:14px;
}

}
    
    .gallery{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    transition:.5s;
}
    .gallery h2{
    font-size:40px;
    color:#d4af37;
}

.gallery img:hover{
    transform:scale(1.05);
}
    
    .contact-section{
    padding:100px 20px;
    background: black;
}

.contact-form{
    width:100%;
    max-width:100%;
    background:#0f2a5f;
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(212,175,55,.2);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    background:#fff;
    border:1px solid #333;
    border-radius:10px;
    color:#fff;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#d4af37;
    box-shadow:0 0 10px rgba(212,175,55,.3);
}

.contact-form button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:50px;
    background:linear-gradient(
        45deg,
        #b8860b,
        #d4af37,
        #f5d76e
    );
    color:#000;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    transform:translateY(-3px);
}

#success-message{
    margin-top:15px;
    text-align:center;
    color:#d4af37;
    font-weight:500;
}
    .footer{
     background:#0f2a5f;
    padding:80px 20px 20px;
    border-top:1px solid rgba(212,175,55,.15);
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:50px;
}

.footer-col h3{
    color:#d4af37;
    margin-bottom:25px;
    font-size:22px;
}

.footer-logo{
    width:180px;
    margin-bottom:20px;
}

.footer-col p{
    color:white;
    line-height:1.8;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links a{
    color:#dcdcdc;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#d4af37;
    padding-left:5px;
}

.newsletter-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.newsletter-form input{
    padding:14px;
    border:none;
    border-radius:8px;
    background:#181818;
    color:#fff;
    outline:none;
}

.newsletter-form button{
    padding:14px;
    border:none;
    border-radius:50px;
    background:linear-gradient(
        45deg,
        #b8860b,
        #d4af37,
        #f5d76e
    );
    color:#000;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.newsletter-form button:hover{
    transform:translateY(-2px);
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#181818;
    border:1px solid rgba(212,175,55,.2);
    border-radius:50%;
    color:#d4af37;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.social-icons a:hover{
    background:#d4af37;
    color:#000;
    transform:translateY(-5px);
}

.footer-bottom{
    margin-top:60px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:#999;
    font-size:14px;
}

@media(max-width:991px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-logo{
        margin:auto auto 20px;
        display:block;
    }

}
    
    /* =========================
   MOBILE RESPONSIVE FIXES
========================= */

.menu-toggle{
    display:none;
    font-size:28px;
    color:#d4af37;
    cursor:pointer;
}

/* Tablets */
@media (max-width:992px){

    .hero h1{
        font-size:3rem;
    }

    .hero p{
        font-size:1rem;
        padding:0 20px;
    }

    .about-text{
        padding:35px;
    }

    .service-card{
        height:auto;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }

}

/* Mobile */
@media (max-width:768px){

    /* NAVBAR */

    .menu-toggle{
        display:block;
    }

    nav ul{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#0f2a5f;
        flex-direction:column;
        text-align:center;
        padding:20px 0;
        gap:20px;

        display:none;
    }

    nav ul.active{
        display:flex;
    }

    .nav-container{
        padding:15px 20px;
    }

    .logo img{
        max-width:140px;
        height:auto;
    }

    /* HERO */

    .hero{
        padding:100px 20px 50px;
    }

    .hero h1{
        font-size:2.2rem;
        line-height:1.2;
    }

    .hero p{
        font-size:15px;
        line-height:1.7;
    }

    .btn{
        padding:12px 25px;
        font-size:14px;
    }

    /* TITLES */

    .section-title h2{
        font-size:30px;
    }

    /* ABOUT */

    .about-text{
        padding:25px;
    }

    .about-text h3{
        font-size:24px;
    }

    .about-text p{
        font-size:15px;
    }

    .about-highlight{
        font-size:15px;
        padding:18px;
    }

    /* SERVICES */

    .service-card img{
        height:220px;
    }

    .service-card h3{
        font-size:18px;
    }

    .service-card p{
        font-size:14px;
    }

    /* COMPANY INFO */

    .info-grid{
        grid-template-columns:1fr;
    }

    /* STATS */

    .stats{
        grid-template-columns:1fr;
    }

    .counter{
        font-size:35px;
    }

    /* GALLERY */

    .gallery{
        grid-template-columns:1fr;
    }

    .gallery img{
        height:250px;
    }

    /* CONTACT */

    .contact-form{
        padding:25px;
    }

    .contact-form input,
    .contact-form textarea{
        padding:14px;
    }

    /* FOOTER */

    .footer{
        padding:60px 20px 20px;
    }

    .footer-container{
        gap:30px;
    }

}

/* Small Phones */

@media (max-width:480px){

    .hero h1{
        font-size:1.8rem;
    }

    .section-title h2{
        font-size:26px;
    }

    .about-text h3{
        font-size:22px;
    }

    .counter{
        font-size:30px;
    }

    .service-card img{
        height:200px;
    }

}

