/*==========================
    GOOGLE FONT
==========================*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

/*==========================
        RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    width:100%;
    display:block;
}

:root{

    --black:#111111;
    --white:#ffffff;
    --gold:#D4AF37;
    --overlay:rgba(0,0,0,.55);

}


/*==========================
        HEADER
==========================*/



.header-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img{

    width:180px;

}

.main-menu{
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-menu a{
    color:#fff;
    font-size:15px;
    font-weight:500;
    text-transform:uppercase;
    transition:.3s;
    border-bottom:2px solid transparent;
    padding-bottom:5px;
}

.main-menu a:hover{
    color:#D4AF37;
    border-color:#D4AF37;
}

/*==========================
      HEADER BUTTON
==========================*/

.btn-custom{

    background:var(--gold);
    color:#111;
    padding:13px 32px;
    border-radius:10px;
    font-weight:600;
    transition:.4s;

}

.btn-custom:hover{

    background:#fff;
    color:#111;

}


/*==========================
        HERO
==========================*/

.hero-slider{

    position:relative;

}

.carousel-item{

    height:100vh;
    position:relative;

}

.carousel-item img{

    height:100%;
    object-fit:cover;

}


/* Overlay */

.overlay{

    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);

}


/* Caption */

.carousel-caption{

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:900px;
    max-width:90%;
    text-align:center;
    z-index:10;

}

.carousel-caption h5{

    color:var(--gold);
    letter-spacing:4px;
    font-size:15px;
    margin-bottom:18px;
    text-transform:uppercase;

}

.carousel-caption h1{

    font-family:'Playfair Display',serif;
    font-size:72px;
    line-height:1.15;
    margin-bottom:25px;

}

.carousel-caption p{

    font-size:18px;
    color:#eee;
    margin-bottom:35px;

}


/* Hero Button */

.hero-btn{

    display:inline-block;
    padding:15px 38px;
    background:var(--gold);
    color:#111;
    border-radius:10px;
    font-weight:600;
    transition:.4s;

}

.hero-btn:hover{

    background:#fff;
    color:#111;

}


/*==========================
     INDICATORS
==========================*/

.carousel-indicators{

    bottom:35px;

}

.carousel-indicators button{

    width:14px !important;
    height:14px !important;
    border-radius:50%;
    background:#fff !important;
    margin:0 8px !important;
    border:none;

}

.carousel-indicators .active{

    background:var(--gold)!important;

}


/*==========================
        ARROWS
==========================*/

.carousel-control-prev,
.carousel-control-next{

    width:60px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    width:45px;
    height:45px;
    border-radius:50%;
    backdrop-filter:blur(8px);

}

@media(max-width:768px){

.header{

    padding:15px 0;

}

.header-wrapper{

    flex-direction: row;
    gap:20px;

}

.carousel-caption h5{

    font-size:13px;

}

.carousel-caption h1{

    font-size:40px;

}

.carousel-caption p{

    font-size:15px;

}

.hero-btn{

    padding:12px 28px;

}

.btn-custom{

    padding:10px 20px;

}

}


@media(max-width:480px){

.logo img{

    width:130px;

}

.carousel-caption h1{

    font-size:30px;

}

.carousel-caption p{

    font-size:14px;

}
.hero-btn{

    font-size:14px;
    padding:10px 22px;

}

}

/*==========================
        HAMBURGER
==========================*/

.menu-toggle{
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

/*==========================
      MOBILE NAVBAR
==========================*/

@media (max-width:991px){

.header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:110px;
}

/* Hide Desktop Button */
.btn-custom{
    display:none;
}

/* Show Hamburger */
.menu-toggle {
        display: block;
        margin: 11px;
    }

/* Mobile Menu */
.main-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:280px;
    height:100vh;

    background:#111;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:25px;

    transition:.4s ease;

    z-index:1000;
}

/* Open Menu */
.main-menu.active{
    right:0;
}

.main-menu a{
    color:#fff;
    font-size:18px;
}

}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    padding: 15px 0;

    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition: all .4s ease;
}

.header.sticky{
    background: #111;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}

/*=================================
        MOBILE HERO
=================================*/

@media (max-width:768px){

.carousel-item{
    height:100vh;
}

.carousel-item img{
    height:100vh;
    object-fit:cover;
    object-position:center;
}

.carousel-caption{
    width:90%;
    left:50%;
    top:55%;
    transform:translate(-50%,-50%);
    text-align:center;
}

.carousel-caption h5{
    font-size:12px;
    letter-spacing:3px;
    margin-bottom:12px;
}

.carousel-caption h1{
    font-size:38px;
    line-height:1.2;
    margin-bottom:18px;
}

.carousel-caption p{
    font-size:15px;
    line-height:26px;
    margin-bottom:28px;
}

.hero-btn{
    padding:12px 28px;
    font-size:15px;
}

.carousel-control-prev,
.carousel-control-next{
    display:none;
}

.carousel-indicators{
    bottom:25px;
}

}

@media (max-width:480px){

.carousel-caption{
    top:58%;
}

.carousel-caption h1{
    font-size:30px;
}

.carousel-caption p{
    font-size:14px;
    line-height:24px;
}

.hero-btn{
    padding:10px 24px;
    font-size:14px;
}

}

/*=========================
        ABOUT
=========================*/

.about-section{
    padding:100px 0;
    background:#fff;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
}

.experience-box{

    position:absolute;
    bottom:30px;
    right:-20px;

    background:#D4AF37;
    color:#111;

    width:150px;
    height:150px;

    border-radius:20px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.experience-box h2{

    font-size:42px;
    font-weight:700;
    margin-bottom:5px;

}

.experience-box span{

    font-size:15px;
    text-align:center;
    font-weight:500;

}

.about-subtitle{

    color:#D4AF37;
    font-size:15px;
    letter-spacing:3px;
    font-weight:600;

}

.about-title{

    font-family:'Playfair Display',serif;
    font-size:48px;
    color:#111;
    margin:18px 0;

}

.about-section p{

    color:#666;
    line-height:30px;
    margin-bottom:30px;

}

.about-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;

}

.about-list div{

    font-weight:500;
    color:#111;

}

.about-list i{

    color:#D4AF37;
    margin-right:10px;

}

.about-btn{

    display:inline-block;

    background:#D4AF37;
    color:#111;

    padding:14px 35px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.about-btn:hover{

    background:#111;
    color:#fff;

}

/*=========================
      Responsive
=========================*/

@media(max-width:991px){

.about-title{

    font-size:38px;

}

.experience-box{

    right:15px;
    bottom:15px;

    width:120px;
    height:120px;

}

.about-list{

    grid-template-columns:1fr;

}

}

@media(max-width:576px){

.about-title{

    font-size:30px;

}

.experience-box{

    width:100px;
    height:100px;

}

.experience-box h2{

    font-size:30px;

}

.experience-box span{

    font-size:12px;

}

}


/*==================================
        SERVICES SECTION
==================================*/

.services-section{
    padding:100px 0;
    background:#f8f8f8;
}

.section-title span{
    color:#D4AF37;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-title h2{
    font-family:'Playfair Display',serif;
    font-size:48px;
    color:#111;
    margin:15px 0;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:28px;
}

/*========== CARD ==========*/

.service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/*========== IMAGE ==========*/

.service-img{
    position:relative;
    overflow:hidden;
}

.service-img img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;
}

.service-card:hover .service-img img{
    transform:scale(1.1);
}

/* Gold Overlay */

.service-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(212,175,55,.15);
    opacity:0;
    transition:.4s;
}

.service-card:hover .service-img::after{
    opacity:1;
}

/*========== CONTENT ==========*/

.service-content{
    padding:25px;
    text-align:center;
}

.service-content h4{
    font-size:22px;
    font-weight:600;
    color:#111;
    margin-bottom:12px;
    transition:.3s;
}

.service-card:hover h4{
    color:#D4AF37;
}

.service-content p{
    color:#666;
    font-size:15px;
    line-height:26px;
    margin-bottom:20px;
}

/*========== READ MORE ==========*/

.service-content a{
    color:#111;
    font-weight:600;
    transition:.3s;
}

.service-content a i{
    margin-left:8px;
    transition:.3s;
}

.service-content a:hover{
    color:#D4AF37;
}

.service-content a:hover i{
    transform:translateX(6px);
}

/*========== VIEW BUTTON ==========*/

.services-section .btn-custom{
    margin-top:20px;
    display:inline-block;
}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:991px){

.section-title h2{
    font-size:38px;
}

.service-img img{
    height:220px;
}

}

@media(max-width:767px){

.services-section{
    padding:70px 0;
}

.section-title h2{
    font-size:30px;
}

.section-title p{
    font-size:15px;
}

.service-img img{
    height:240px;
}

.service-content{
    padding:20px;
}

.service-content h4{
    font-size:20px;
}

}

@media(max-width:576px){

.service-img img{
    height:220px;
}

.section-title span{
    font-size:13px;
}

.section-title h2{
    font-size:28px;
}

}

/*==================================
        WHY CHOOSE US
==================================*/

.why-section{
    padding:100px 0;
    background:#fff;
}

.why-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.why-image img{
    width:100%;
    border-radius:20px;
    transition:.5s;
}

.why-image:hover img{
    transform:scale(1.08);
}

/* Experience Box */

.experience{
    position:absolute;
    left:25px;
    bottom:25px;

    background:#D4AF37;
    color:#111;

    width:170px;
    height:170px;

    border-radius:18px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.experience h2{
    font-size:48px;
    font-weight:700;
    margin-bottom:5px;
}

.experience span{
    font-size:15px;
    text-align:center;
    font-weight:600;
}

/* Content */

.section-subtitle{
    color:#D4AF37;
    letter-spacing:3px;
    font-size:15px;
    font-weight:600;
}

.why-content h2{
    font-family:'Playfair Display',serif;
    font-size:48px;
    color:#111;
    margin:18px 0;
}

.why-content p{
    color:#666;
    line-height:28px;
    margin-bottom:35px;
}

/* Grid */

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* Card */

.why-box{

    background:#fff;

    padding:30px;

    border-radius:15px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.4s;

}

.why-box:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

.why-box i{

    width:65px;
    height:65px;

    background:#D4AF37;
    color:#111;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    margin-bottom:20px;

    transition:.4s;

}

.why-box:hover i{

    transform:rotate(360deg);

}

.why-box h4{

    font-size:22px;
    margin-bottom:10px;

}

.why-box p{

    font-size:15px;
    color:#666;
    line-height:26px;
    margin:0;

}

/*==============================
        Responsive
==============================*/

@media(max-width:991px){

.why-content{
    margin-top:20px;
}

.why-content h2{
    font-size:38px;
}

.why-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.why-section{
    padding:70px 0;
}

.why-content h2{
    font-size:30px;
}

.experience{
    width:120px;
    height:120px;
}

.experience h2{
    font-size:32px;
}

.experience span{
    font-size:12px;
}

.why-box{
    padding:22px;
}

}


/*==================================
      FEATURED PROJECTS
==================================*/

.projects-section{
    padding:100px 0;
    background:#fff;
    overflow:hidden;
}

.projects-section .section-title{
    margin-bottom:60px;
}

.projects-section .section-title span{
    display:block;
    color:#D4AF37;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.projects-section .section-title h2{
    font-family:'Playfair Display',serif;
    font-size:48px;
    color:#111;
    margin-bottom:15px;
}

.projects-section .section-title p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:28px;
}

/*============================
        SLIDER
=============================*/

.projects-slider{
    overflow:hidden;
    position:relative;
}

.projects-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:projectSlide 45s linear infinite;
}

/* Pause Animation */

.projects-slider:hover .projects-track{
    animation-play-state:paused;
}

/*============================
          CARD
=============================*/

.project-item{
    flex:0 0 320px;
    overflow:hidden;
    border-radius:18px;
    position:relative;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

/* 4:5 Ratio */

.project-item img{

    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;

    transition:.6s;

}

/* Gold Overlay */

.project-item::after{

    content:"";

    position:absolute;
    inset:0;

    background:rgba(212,175,55,.15);

    opacity:0;

    transition:.4s;

}

.project-item:hover::after{

    opacity:1;

}

/* Hover */

.project-item:hover img{

    transform:scale(1.12);

}

/*============================
      ANIMATION
=============================*/

@keyframes projectSlide{

0%{
    transform:translateX(0);
}

100%{
    transform:translateX(-50%);
}

}

/*============================
      RESPONSIVE
=============================*/

@media(max-width:1200px){

.project-item{

    flex:0 0 290px;

}

}

@media(max-width:991px){

.projects-section{

    padding:80px 0;

}

.projects-section .section-title h2{

    font-size:38px;

}

.project-item{

    flex:0 0 260px;

}

}

@media(max-width:768px){

.projects-section{

    padding:70px 0;

}

.projects-section .section-title h2{

    font-size:30px;

}

.projects-section .section-title p{

    font-size:15px;

}

.project-item{

    flex:0 0 85vw;
    border-radius:15px;

}

.project-item img{

    aspect-ratio:4/5;

}

.projects-track{

    gap:18px;

}

}

@media(max-width:480px){

.project-item{

    flex:0 0 90vw;

}

.projects-section .section-title span{

    font-size:13px;

}

.projects-section .section-title h2{

    font-size:28px;

}

}

/*==================================
          CTA BANNER
==================================*/

.cta-banner{
    position: relative;
    height: 300px;
    background: url("images/banner-3.jpg") center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.cta-content{
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;

    text-align: center;

    margin: auto;
    padding: 040px 20px;
}
/* Content */

.cta-content{

    position:relative;
    z-index:2;

    text-align:center;
    max-width:850px;

    color:#fff;

}

.cta-content span{

    color:#D4AF37;

    font-size:15px;

    letter-spacing:4px;

    font-weight:600;

    text-transform:uppercase;

}

.cta-content h2{

    font-family:'Playfair Display', serif;

    font-size:43px;

    margin:13px 0;

    line-height:1.2;

}

.cta-content p{

    color:#ddd;

    font-size:17px;

    line-height:30px;

    max-width:700px;

    margin:0 auto;

}

.cta-btn{

    display:inline-block;

    padding:15px 40px;

    background:#D4AF37;

    color:#111;

    border-radius:10px;

    font-weight:600;

    transition:.4s;

}

.cta-btn:hover{

    background:#fff;

    color:#111;

    transform:translateY(-5px);

}

/*=========================
      Responsive
=========================*/

@media(max-width:768px){

.cta-banner{

    height:420px;

    padding:20px;

}

.cta-content h2{

    font-size:34px;

}

.cta-content p{

    font-size:15px;

    line-height:28px;

}

}

@media(max-width:480px){

.cta-banner{

    height:400px;

}

.cta-content span{

    font-size:13px;

}

.cta-content h2{

    font-size:28px;

}

.cta-content p{

    font-size:14px;

    margin-bottom:28px;

}

.cta-btn{

    padding:12px 30px;

    font-size:14px;

}

}

/*=========================
    TESTIMONIAL SECTION
=========================*/

.testimonial-section{
    padding:100px 0;
    background:#f8f8f8;
}

.testimonial-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    position:relative;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
    border-top:4px solid #D4AF37;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.quote{
    position:absolute;
    top:20px;
    right:25px;
    font-size:42px;
    color:#D4AF37;
    opacity:.15;
}

.stars{
    color:#D4AF37;
    font-size:18px;
    margin-bottom:20px;
    letter-spacing:2px;
}

.testimonial-card p{
    color:#666;
    line-height:28px;
    margin-bottom:30px;
    font-size:15px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-info img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #D4AF37;
}

.client-info h5{
    margin:0;
    font-size:18px;
    font-weight:600;
}

.client-info span{
    color:#777;
    font-size:14px;
}

/* Responsive */

@media(max-width:991px){

.testimonial-card{
    padding:30px 25px;
}

}

@media(max-width:767px){

.testimonial-section{
    padding:70px 0;
}

.testimonial-card{
    margin-bottom:20px;
}

.client-info img{
    width:55px;
    height:55px;
}

}

/*=========================
        CTA SECTION
=========================*/

.pta-section{

    background:#D4AF37;

    padding:40px 0;

}

.pta-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

}

.pta-content{

    max-width:800px;

}

.pta-content span{

    display:inline-block;

    font-size:14px;

    font-weight:600;

    letter-spacing:3px;

    color:#111;

    text-transform:uppercase;

    margin-bottom:15px;

}

.pta-content h2{

    font-size:48px;

    color:#111;

    font-family:'Playfair Display', serif;

    margin-bottom:20px;

}

.pta-content p{

    font-size:17px;

    line-height:30px;

    color:#222;

    margin:0;

}

.theme-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#111;

    color:#fff;

    padding:18px 38px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

}

.theme-btn:hover{

    background:#fff;

    color:#111;

}

.theme-btn i{

    transition:.4s;

}

.theme-btn:hover i{

    transform:translateX(5px);

}

/*=========================
      Responsive
=========================*/

@media(max-width:991px){

.pta-wrapper{

    flex-direction:column;

    text-align:center;

}

.pta-content h2{

    font-size:36px;

}

}

@media(max-width:576px){

.pta-section{

    padding:50px 0;

}

.pta-content h2{

    font-size:30px;

}

.pta-content p{

    font-size:15px;

    line-height:26px;

}

.theme-btn{

    width:100%;

    justify-content:center;

}

}

/*=========================
        FOOTER
=========================*/

.footer{

    background:#111;

    padding:90px 0 25px;

    color:#bbb;

}

.footer-logo h2{

    color:#fff;

    font-size:34px;

    font-family:'Playfair Display', serif;

}

.footer-logo span{

    color:#D4AF37;

}

.footer-text{

    margin:25px 0;

    line-height:30px;

}

.footer h4{

    color:#fff;

    margin-bottom:30px;

    position:relative;

}

.footer h4::after{

    content:"";

    width:45px;

    height:3px;

    background:#D4AF37;

    position:absolute;

    left:0;

    bottom:-10px;

}

.footer ul{

    padding:0;

    margin:0;

    list-style:none;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:#bbb;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#D4AF37;

    padding-left:8px;

}

.contact-list li{

    display:flex;

    gap:12px;

    align-items:flex-start;

}

.contact-list i{

    color:#D4AF37;

    margin-top:5px;

}

.footer-social{

    display:flex;

    gap:12px;

}

.footer-social a{

    width:45px;

    height:45px;

    border:1px solid rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    color:#fff;

    transition:.4s;

}

.footer-social a:hover{

    background:#D4AF37;

    color:#111;

    transform:translateY(-5px);

}

.footer hr{

    margin:60px 0 25px;

    border-color:rgba(255,255,255,.08);

}

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    margin:0;

    color:#999;

}

@media(max-width:991px){

.footer{

    text-align:center;

}

.footer h4::after{

    left:50%;

    transform:translateX(-50%);

}

.contact-list li{

    justify-content:center;

}

.footer-social{

    justify-content:center;

}

}

.footer-logo img{
    width:180px;
    height:auto;
    display:block;
    object-fit:contain;
    margin-bottom:20px;
}
