

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
   
}

body{
    min-height:100vh;
     font-family:'Poppins',sans-serif;
}

/* HEADER */

header{
    position:sticky;
    top:0;
    width:100%;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:999;
}

.navbar{
    max-width:1300px;
    margin:auto;
    padding:1px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    /* gap: 12px; */
    width: 93px;
}



/* MENU */

.footer-widget img{
    filter: invert(1);
    width: 184px;
}

.nav-menu{
    display:flex;
    align-items:center;
    list-style:none;
    gap:35px;
    margin-bottom: 0;
}

.nav-menu li{
    position:relative;
}

.nav-menu a{
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:500;
    transition:.3s;
    display:block;
    padding:10px 0;
}

.nav-menu a:hover{
    color:#c89b63;
}

/* UNDERLINE EFFECT */

.nav-menu > li > a{
    position:relative;
}

.nav-menu > li > a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:#c89b63;
    transition:.3s;
}

.nav-menu > li > a:hover::after{
    width:100%;
}

/* DROPDOWN */

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    min-width:230px;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.35s ease;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu a{
    padding:14px 18px;
    border-bottom:1px solid #f2f2f2;
}

.dropdown-menu a:hover{
    background:#c89b63;
    color:#fff;
}

.dropdown-menu li:last-child a{
    border-bottom:none;
}

/* RIGHT SIDE */

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.quote-btn{
    text-decoration:none;
    background:#c89b63;
    color:#fff;
    padding:12px 24px;
    border-radius:30px;
    transition:.3s;
}

.quote-btn:hover{
    background:#222;
}

/* MOBILE MENU BUTTON */

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

/* RESPONSIVE */

@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    .header-right{
        display:none;
    }

    .nav-menu{
        position:absolute;
        top:90px;
        left:-100%;
        width:100%;
        background:#fff;
        flex-direction:column;
        gap:0;
        padding:20px;
        transition:.4s;
        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .nav-menu.active{
        left:0;
    }

    .nav-menu li{
        width:100%;
    }

    .nav-menu a{
        padding:15px;
    }

    .dropdown-menu{
        position:static;
        width:100%;
        display:none;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        background:#f7f7f7;
        margin-top:5px;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }
}

.hero-slider{
    overflow:hidden;
}

.slide{
    position:relative;
    height:100vh;
}

.slide img{
    width:100%;
    height:100vh;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.banner-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:90%;
    max-width:900px;
    z-index:2;
}

.banner-content span{
    display:block;
    color:#d4a762;
    font-size:22px;
    letter-spacing:3px;
    margin-bottom:15px;
    text-transform:uppercase;
}

.banner-content h1{
    font-size:70px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.banner-content p{
    font-size:20px;
    line-height:32px;
    margin-bottom:35px;
}

.banner-btn{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-dark,
.btn-gold{
    padding:15px 35px;
    text-decoration:none;
    border-radius:5px;
    transition:.4s;
    font-weight:600;
}

.btn-dark{
    background:#222;
    color:#fff;
}

.btn-gold{
    background:#d4a762;
    color:#fff;
}

.btn-dark:hover,
.btn-gold:hover{
    transform:translateY(-5px);
}

.slick-active .banner-content span{
    animation:fadeUp .8s ease forwards;
}

.slick-active .banner-content h1{
    animation:fadeUp 1.2s ease forwards;
}

.slick-active .banner-content p{
    animation:fadeUp 1.6s ease forwards;
}

.slick-active .banner-btn{
    animation:fadeUp 2s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

    .slide{
        height:80vh;
    }

    .slide img{
        height:80vh;
    }

    .banner-content h1{
        font-size:38px;
    }

    .banner-content p{
        font-size:16px;
        line-height:28px;
    }

    .banner-content span{
        font-size:16px;
    }
}


.projects{
    padding:60px 80px;
    background-image: url(../images/bg-white-3.png);

}

.slick-prev, 
.slick-next{
    width:50px;
    height:50px;
    background:#b57a3c !important;
    border-radius:50%;
    display:flex !important;
    justify-content:center;
    align-items:center;
    z-index:10;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    transition:.3s;
}

/* Arrow icons color */
.slick-prev:before,
.slick-next:before{
    font-size:20px;
    color:#fff !important;
    opacity:1;
}



/* Position adjust */
.slick-prev{
    left:15px;
}

.slick-next{
    right:15px;
}

.section-title{
    font-size:28px;
    margin-bottom:30px;
    color:#b57a3c;
}

.work-slider .card{
    position:relative;
    margin:10px;
    border-radius:10px;
    overflow:hidden;
}

.work-slider img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    background:linear-gradient(to top, rgba(0,0,0,.8), transparent);
    color:#fff;
}

.overlay h3 {
    font-size: 20px;
    margin: 226px 0 10px;
}
.overlay p{
    margin:5px 0;
    color:#d4a762;
    font-weight:600;
}

.overlay span{
    font-size:13px;
    display:block;
    margin-bottom:10px;
}

.overlay a{
    color:#fff;
    text-decoration:none;
    background:#b57a3c;
    padding:6px 12px;
    border-radius:5px;
    font-size:13px;
}

.projects-section {
    background: #fff;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
    color: #222;
}

.section-title span {
    color: #c58a43;
}

.project-filter .filter-btn {
    border: none;
    background: transparent;
    padding: 8px 18px;
    margin: 5px;
    cursor: pointer;
    transition: .3s;
    font-size: 14px;
}

.project-filter .filter-btn.active,
.project-filter .filter-btn:hover {
    background: #c58a43;
    color: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    border: 5px solid #e5e5e5;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.gallery-item:hover img {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: 0.4s;
    border-radius: 12px;
}

.gallery-item:hover::after {
    opacity: 1;
}
.view-btn {
    display: inline-block;
    background: #c58a43;
    color: #fff;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 600;
}

.view-btn:hover {
    background: #a86f2f;
    color: #fff;
}



.testimonial-section {
    background-image: url(../images/bg-white-3.png);
    padding: 80px 0;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading h6 {
    color: #c58a43;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 5px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 700;
}

.testimonial-card {
    background: #fff;
    padding: 30px 25px;
    text-align: center;
    border-radius: 15px;
    position: relative;
    transition: all .4s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 4px solid #c58a43;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-card span {
    color: #999;
    font-size: 14px;
}

.rating {
    color: #fcb900;
    margin: 12px 0;
}

.quote-icon {
    color: #c58a43;
    font-size: 30px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.contact-section {
    
    background: #f8f9fa;
}

.contact-info {
    background: url('images/map-bg.jpg') center center/cover;
    position: relative;
    min-height: 600px;
}

.contact-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.92);
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 450px;
    padding: 80px;
}

.contact-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.contact-content p {
    color: #666;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-item i {
    color: #c58a43;
    font-size: 22px;
    margin-top: 4px;
}

.contact-item a {
    color: #333;
    text-decoration: none;
}

.contact-form-wrap {
    background: #2fb88f;
    align-items: center;
    padding: 70px;
    position: relative;
}

.contact-form-wrap::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 70px;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 18px solid #2fb88f;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    padding: 16px 20px;
    border-radius: 8px;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,.8);
}

.submit-btn {
    width: 100%;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    padding: 18px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.submit-btn:hover {
    background: #fff;
    color: #2fb88f;
}

@media(max-width:991px){

    .contact-content,
    .contact-form-wrap{
        padding:40px;
    }

    .contact-form-wrap::before{
        display:none;
    }
}

.footer-section {
    background: #111827;
    color: #fff;
    position: relative;
    padding-top: 100px;
}

/* Newsletter */

.footer-newsletter {
    background: linear-gradient(135deg,#c58a43,#e2ab66);
    padding: 40px;
    border-radius: 20px;
    margin-top: -160px;
    margin-bottom: 70px;
    box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

.footer-newsletter h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    height: 55px;
    padding: 0 20px;
    border-radius: 50px;
}

.newsletter-form button {
    border: none;
    background: #111827;
    color: #fff;
    padding: 0 30px;
    border-radius: 50px;
    font-weight: 600;
}

/* Widgets */

.footer-widget h4,
.footer-widget h5 {
    margin-bottom: 25px;
    position: relative;
}

.footer-widget h5::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #c58a43;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-widget p {
    color: #bdbdbd;
    line-height: 1.8;
}

.footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #bdbdbd;
    text-decoration: none;
    transition: .3s;
}

.footer-widget ul li a:hover {
    color: #c58a43;
    padding-left: 8px;
}

/* Social */

.social-links {
    margin-top: 25px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    transition: .3s;
}

.social-links a:hover {
    background: #c58a43;
    transform: translateY(-5px);
}

/* Contact */

.contact-info p {
    margin-bottom: 15px;
}

.contact-info i {
    color: #c58a43;
    margin-right: 10px;
}

/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    margin-top: 60px;
    padding: 25px 0;
}

.footer-bottom p {
    margin: 0;
    color: #999;
}

/* Responsive */

@media(max-width:768px){

    .newsletter-form{
        flex-direction:column;
    }

    .footer-newsletter{
        margin-top:0;
    }
}