/*==========================
    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;
}

/*=========================
    CONTACT PAGE BANNER
==========================*/

.contact-banner-section{
    position:relative;
    height:400px;
    background:url("images/banner-2.jpg") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.contact-banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65));
}

.contact-banner-content{
    position:relative;
    z-index:2;
    text-align:center;
  
    padding:0 20px;
    animation:contactBannerFade 1s ease;
}

.contact-banner-subtitle{
    display:block;
    color:#D4AF37;
    font-size:15px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.contact-banner-title{
    font-family:'Playfair Display', serif;
    font-size:65px;
    color:#fff;
    margin-bottom:20px;
}

.contact-banner-text{
    color:#f1f1f1;
    font-size:18px;
    line-height:32px;
}

/* Animation */

@keyframes contactBannerFade{

    from{
        opacity:0;
        transform:translateY(60px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*=========================
      RESPONSIVE
==========================*/

@media(max-width:768px){

.contact-banner-section{
    height:320px;
}

.contact-banner-title{
    font-size:42px;
}

.contact-banner-text{
    font-size:16px;
    line-height:28px;
}

}

@media(max-width:576px){

.contact-banner-section{
    height:280px;
}

.contact-banner-subtitle{
    font-size:12px;
    letter-spacing:3px;
}

.contact-banner-title{
    font-size:34px;
}

.contact-banner-text{
    font-size:14px;
    line-height:24px;
}

}

/*=========================
    CONTACT INFO
==========================*/

.contact-info-area{
    padding:70px 0;
    background:#fff;
}

.contact-info-title{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:70px;

    animation:contactFadeUp .8s ease;
}

.contact-info-title span{
    color:#D4AF37;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.contact-info-title h2{
    font-size:48px;
    color:#111;
    margin:18px 0;
    font-family:'Playfair Display',serif;
}

.contact-info-title p{
    color:#666;
    line-height:30px;
}

/*=========================
        GRID
==========================*/

.contact-info-wrapper{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

/*=========================
        CARD
==========================*/

.contact-info-box{

    position:relative;

    background:#fff;

    padding:45px 30px;

    text-align:center;

    border-radius:18px;

    border:1px solid #ededed;

    overflow:hidden;

    transition:.45s;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    animation:contactCard .9s ease;

}

.contact-info-box::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:4px;

    background:#D4AF37;

    transition:.5s;

}

.contact-info-box:hover::before{

    left:0;

}

.contact-info-box:hover{

    transform:translateY(-12px);

    border-color:#D4AF37;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

/*=========================
        ICON
==========================*/

.contact-info-icon{

    width:85px;
    height:85px;

    margin:auto;

    border-radius:50%;

    background:#fff8e8;

    border:2px solid #D4AF37;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    transition:.45s;

}

.contact-info-icon i{

    color:#D4AF37;

    font-size:30px;

    transition:.45s;

}

.contact-info-box:hover .contact-info-icon{

    background:#D4AF37;

    transform:rotate(12deg) scale(1.1);

}

.contact-info-box:hover .contact-info-icon i{

    color:#111;

}

/*=========================
        TEXT
==========================*/

.contact-info-box h3{

    color:#111;

    margin-bottom:15px;

    font-size:24px;

}

.contact-info-box a{

    display:block;

    color:#D4AF37;

    font-weight:600;

    margin-bottom:15px;

    transition:.3s;

}

.contact-info-box:hover a{

    letter-spacing:1px;

}

.contact-info-box p{

    color:#666;

    line-height:28px;

}

/*=========================
      ANIMATION
==========================*/

@keyframes contactFadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes contactCard{

    from{

        opacity:0;

        transform:translateY(70px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=========================
      RESPONSIVE
==========================*/

@media(max-width:991px){

.contact-info-wrapper{

grid-template-columns:1fr;

}

.contact-info-title h2{

font-size:38px;

}

}

@media(max-width:576px){

.contact-info-area{

padding:70px 0;

}

.contact-info-title h2{

font-size:30px;

}

.contact-info-box{

padding:35px 25px;

}

.contact-info-icon{

width:75px;
height:75px;

}

.contact-info-icon i{

font-size:26px;

}

}
/*==================================
      CONTACT FORM SECTION
==================================*/

.contact-form-section{
    padding:70px 0;
    background:#fff;
}

.contact-form-content{
    animation:fadeLeft .8s ease;
}

.contact-form-subtitle{
    color:#D4AF37;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.contact-form-title{
    font-size:48px;
    font-family:'Playfair Display',serif;
    color:#111;
    margin:15px 0 20px;
}

.contact-form-text{
    color:#666;
    line-height:30px;
    margin-bottom:35px;
}

/* Contact Details */

.contact-form-details{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-detail-item{
    display:flex;
    align-items:center;
    gap:18px;
}

.contact-detail-item i{
    width:60px;
    height:60px;
    background:#D4AF37;
    color:#111;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.4s;
}

.contact-detail-item:hover i{
    transform:rotate(360deg);
    background:#111;
    color:#fff;
}

.contact-detail-item h6{
    margin:0;
    color:#111;
    font-weight:600;
}

.contact-detail-item span{
    color:#666;
}

/* Form */

.contact-form-box{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    animation:fadeRight .8s ease;
}

.contact-input{
    width:100%;
    border:1px solid #ddd;
    padding:15px 18px;
    border-radius:10px;
    outline:none;
    transition:.4s;
    font-size:15px;
}

.contact-input:focus{
    border-color:#D4AF37;
    box-shadow:0 0 15px rgba(212,175,55,.25);
}

.contact-message{
    resize:none;
}

.contact-submit-btn{
    border:none;
    background:#D4AF37;
    color:#111;
    padding:15px 40px;
    border-radius:10px;
    font-weight:600;
    transition:.4s;
}

.contact-submit-btn:hover{
    background:#111;
    color:#fff;
    transform:translateY(-4px);
}

/* Map */

.contact-map-wrapper{
    margin-top:70px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    animation:fadeUp .8s ease;
}

.contact-map-wrapper iframe{
    width:100%;
    height:420px;
    border:0;
}

/* Animations */

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(60px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Responsive */

@media(max-width:991px){

.contact-form-title{
    font-size:38px;
}

.contact-form-box{
    padding:30px;
    margin-top:20px;
}

}

@media(max-width:576px){

.contact-form-section{
    padding:70px 0;
}

.contact-form-title{
    font-size:30px;
}

.contact-form-box{
    padding:20px;
}

.contact-map-wrapper iframe{
    height:280px;
}

.contact-submit-btn{
    width:100%;
}

}


/*====================================
        GALLERY HERO
====================================*/

.gallery-hero{
    position:relative;
   margin-top:0;
    padding-top:0;
}

.gallery-hero-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    display:block;
}

.gallery-hero-box{

    width:500px;
    max-width:90%;

    background:#1f1f1f;

    color:#fff;

    text-align:center;

    padding:35px;

    position:absolute;

    left:50%;
    bottom:-60px;

    transform:translateX(-50%);

    animation:fadeUp .8s ease;

}

.gallery-hero-box span{

    color:#D4AF37;

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:13px;

}

.gallery-hero-box h2{

    margin-top:12px;

    font-family:'Playfair Display',serif;

    font-size:42px;

    margin-bottom:0;

}

/*=============================
        INTRO
=============================*/

.gallery-intro{

    padding:105px 0 90px;

    text-align:center;

}

.gallery-intro h3{

    font-family:'Playfair Display',serif;

    font-size:42px;

    color:#111;

    margin-bottom:20px;

}

.gallery-intro p{

    max-width:760px;

    margin:auto;

    color:#666;

    line-height:30px;

}

.gallery-btn{

    display:inline-block;

    margin-top:35px;

    background:#D4AF37;

    color:#111;

    padding:14px 36px;

    border-radius:8px;

    font-weight:600;

    transition:.4s;

}

.gallery-btn:hover{

    background:#111;

    color:#fff;

    transform:translateY(-4px);

}

/*=========================
      Animation
=========================*/

@keyframes fadeUp{

from{
opacity:0;
transform:translate(-50%,40px);
}

to{
opacity:1;
transform:translate(-50%,0);
}

}

/*=========================
      Responsive
=========================*/

@media(max-width:991px){

.gallery-hero-image img{

height:320px;

}

.gallery-hero-box{

width:420px;
padding:28px;

}

.gallery-hero-box h2{

font-size:34px;

}

.gallery-intro h3{

font-size:34px;

}

}

@media(max-width:576px){

.gallery-hero{

margin-top:80px;

}

.gallery-hero-image img{

height:240px;

}

.gallery-hero-box{

bottom:-45px;

padding:22px;

}

.gallery-hero-box h2{

font-size:26px;

}

.gallery-intro{

padding:90px 20px 70px;

}

.gallery-intro h3{

font-size:28px;

}

.gallery-intro p{

font-size:15px;
line-height:28px;

}

.gallery-btn{

padding:12px 28px;

}

}

/*=============================
        GALLERY
=============================*/

.gallery-section{

    padding: 0px 0px 80px 0px;
    background:#fff;

}

.section-title span{

    color:#D4AF37;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;

}

.section-title h2{

    font-family:'Playfair Display',serif;
    font-size:48px;
    margin:15px 0 60px;

}

.gallery-item{

    position:relative;
    overflow:hidden;
    border-radius:12px;
    cursor:pointer;

}

.gallery-item img{

    width:100%;
    height:420px;
    object-fit:cover;
    transition:.7s;

}

.gallery-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.15));

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:center;

    padding:35px;

    opacity:0;

    transition:.5s;

}

.gallery-overlay h4{

    color:#fff;
    font-size:28px;
    transform:translateY(25px);
    transition:.5s;

}

.gallery-overlay p{

    color:#ddd;
    margin:10px 0 20px;
    transform:translateY(25px);
    transition:.6s;

}

.gallery-overlay span{

    width:60px;
    height:60px;

    background:#D4AF37;
    color:#111;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:20px;

    transform:scale(.5);

    transition:.6s;

}

/* Hover */

.gallery-item:hover img{

    transform:scale(1.15);

}

.gallery-item:hover .gallery-overlay{

    opacity:1;

}

.gallery-item:hover h4{

    transform:translateY(0);

}

.gallery-item:hover p{

    transform:translateY(0);

}

.gallery-item:hover span{

    transform:scale(1);

}

/* icon hover */

.gallery-overlay span:hover{

    background:#fff;

}

/* Responsive */

@media(max-width:991px){

.gallery-item img{

height:350px;

}

}

@media(max-width:576px){

.section-title h2{

font-size:32px;

}

.gallery-item img{

height:300px;

}

}

/*===================================
        ABOUT HERO BANNER
====================================*/

.abouthero-sec{

    position:relative;

    width:100%;

    height:680px;

    background:url(images/banner-2.jpg);

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.abouthero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(90deg,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.45) 45%,
    rgba(0,0,0,.15) 100%);

}

.abouthero-content{

    position:relative;

    z-index:2;

    max-width:620px;

    color:#fff;

    animation:aboutContent 1.2s ease;

}

.abouthero-subtitle{

    color:#D4AF37;

    font-size:15px;

    letter-spacing:4px;

    font-weight:600;

}

.abouthero-content h1{

    font-family:'Playfair Display',serif;

    font-size:56px;

    line-height:1.08;

    margin:22px 0;

}

.abouthero-content h1 span{

    color:#D4AF37;

}

.abouthero-content p{

    color:#eee;

    font-size:18px;

    line-height:34px;

    margin-bottom:40px;

}

.abouthero-btns{

    display:flex;

    align-items:center;

    gap:25px;

}

.abouthero-btn{

    padding:16px 38px;

    background:#D4AF37;

    color:#111;

    border-radius:8px;

    font-weight:600;

    transition:.4s;

}

.abouthero-btn:hover{

    background:#fff;

    transform:translateY(-6px);

}

.abouthero-video{

    display:flex;

    align-items:center;

    gap:15px;

    color:#fff;

    font-weight:600;

}

.abouthero-video i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#fff;

    color:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.5s;

}

.abouthero-video:hover i{

    transform:rotate(360deg);

    background:#D4AF37;

}

/* Animation */

@keyframes aboutContent{

    from{

        opacity:0;

        transform:translateX(-80px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/* Responsive */

@media(max-width:991px){

.abouthero-sec{

    height:600px;

}

.abouthero-content{

    text-align:center;

    margin:auto;

}

.abouthero-content h1{

    font-size:50px;

}

.abouthero-btns{

    justify-content:center;

    flex-wrap:wrap;

}

}

@media(max-width:576px){

.abouthero-sec{

    height:520px;

}

.abouthero-content h1{

    font-size:36px;

}

.abouthero-content p{

    font-size:15px;

    line-height:28px;

}

.abouthero-btn{

    padding:13px 28px;

}

.abouthero-video{

    display:none;

}

}

/*==================================
      ABOUT FEATURE SECTION
===================================*/

.about-feature-area{

    margin-top:-70px;

    position:relative;

    z-index:10;

    padding-bottom:100px;

}

.about-feature-card{

    background:#fff;

    border-radius:18px;

    padding:35px 28px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.45s;

    height:100%;

    animation:featureUp .8s ease;

}

.about-feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.about-feature-icon{

    width:72px;

    height:72px;

    border-radius:50%;

    background:#f8f4eb;

    color:#D4AF37;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    transition:.4s;

}

.about-feature-card:hover .about-feature-icon{

    background:#D4AF37;

    color:#fff;

    transform:rotateY(360deg);

}

.about-feature-card h4{

    margin:22px 0 14px;

    font-size:22px;

    color:#111;

    font-weight:600;

}

.about-feature-card p{

    color:#666;

    font-size:15px;

    line-height:28px;

    margin-bottom:22px;

}

.about-feature-card a{

    color:#111;

    text-transform:uppercase;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

}

.about-feature-card a i{

    margin-left:8px;

    transition:.4s;

}

.about-feature-card:hover a i{

    margin-left:14px;

    color:#D4AF37;

}

/* Animation */

@keyframes featureUp{

    from{

        opacity:0;

        transform:translateY(60px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* Responsive */

@media(max-width:991px){

.about-feature-area{

    margin-top:0;

    padding-top:70px;

}

}

@media(max-width:576px){

.about-feature-card{

    padding:28px 22px;

}

.about-feature-icon{

    width:60px;

    height:60px;

    font-size:24px;

}

.about-feature-card h4{

    font-size:20px;

}

}

/*=================================
      ABOUT SHOWCASE
==================================*/

.about-showcase-sec{

    padding:100px 0;

    background:#f9f9f9;

}

.about-showcase-left{

    animation:showLeft .8s ease;

}

.about-showcase-left span{

    color:#D4AF37;

    letter-spacing:3px;

    font-size:14px;

    font-weight:600;

}

.about-showcase-left h2{

    font-family:'Playfair Display',serif;

    font-size:52px;

    color:#111;

    line-height:1.2;

    margin:18px 0;

}

.about-showcase-left p{

    color:#666;

    line-height:30px;

    margin-bottom:35px;

}

.about-showcase-btn{

    display:inline-block;

    padding:14px 34px;

    background:#D4AF37;

    color:#111;

    border-radius:8px;

    font-weight:600;

    transition:.4s;

}

.about-showcase-btn:hover{

    background:#111;

    color:#fff;

}

.about-showcase-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    animation:showUp .8s ease;

}

.about-showcase-card:hover{

    transform:translateY(-10px);

}

.about-showcase-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.6s;

}

.about-showcase-card:hover img{

    transform:scale(1.08);

}

.about-showcase-content{

    padding:20px;

}

.about-showcase-content h4{

    font-size:20px;

    margin-bottom:8px;

    color:#111;

}

.about-showcase-content span{

    color:#888;

    font-size:14px;

}

@keyframes showLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes showUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@media(max-width:991px){

.about-showcase-left{

    text-align:center;

    margin-bottom:50px;

}

.about-showcase-left h2{

    font-size:40px;

}

}

@media(max-width:576px){

.about-showcase-left h2{

    font-size:32px;

}

.about-showcase-card img{

    height:230px;

}

}

/*=================================
      ABOUT REVIEW
==================================*/

.about-review-sec{

    padding:100px 0;

    background:#fff;

}

.about-review-content{

    background:#faf8f4;

    padding:70px;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    animation:reviewLeft .8s ease;

}

.about-review-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#D4AF37;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:30px;

}

.about-review-text{

    font-size:22px;

    line-height:42px;

    color:#444;

    font-family:'Playfair Display',serif;

    margin-bottom:40px;

}

.about-review-user{

    display:flex;

    align-items:center;

    gap:15px;

}

.about-review-user img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.about-review-user h5{

    margin:0;

    color:#111;

    font-size:20px;

}

.about-review-user span{

    color:#777;

}

.about-review-image{

    overflow:hidden;

    height:100%;

}

.about-review-image img{

    width:100%;

    height:500px;

    object-fit:cover;

    transition:.6s;

    animation:reviewRight .8s ease;

}

.about-review-image:hover img{

    transform:scale(1.08);

}

/* Animation */

@keyframes reviewLeft{

    from{

        opacity:0;

        transform:translateX(-60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes reviewRight{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

/* Responsive */

@media(max-width:991px){

.about-review-content{

    padding:45px;

}

.about-review-image img{

    height:350px;

}

}

@media(max-width:576px){

.about-review-content{

    padding:30px;

}

.about-review-text{

    font-size:18px;

    line-height:32px;

}

.about-review-image img{

    height:280px;

}

}

/*====================================
        NEWSLETTER SECTION
=====================================*/

.newsletter-area{
    padding:40px 0px 90px;
    background:#fff;
}

.newsletter-box{
    background:#f8f6f2;
    border:1px solid rgba(212,175,55,.25);
    border-radius:18px;
    padding:35px 45px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;

    transition:.4s;
}



.newsletter-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.newsletter-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    color:#D4AF37;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:26px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.newsletter-box:hover .newsletter-icon{
    transform:rotate(15deg) scale(1.1);
}

.newsletter-content span{
    color:#D4AF37;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
}

.newsletter-content h3{
    font-family:'Playfair Display',serif;
    font-size:34px;
    margin:10px 0;
    color:#111;
}

.newsletter-content p{
    color:#666;
    line-height:28px;
    margin:0;
    max-width:550px;
}

.newsletter-form{
    display:flex;
    align-items:center;
    background:#fff;
    border:1px solid #ddd;
    border-radius:50px;
    overflow:hidden;
    min-width:420px;
}

.newsletter-form input{
    width:100%;
    border:none;
    outline:none;
    padding:18px 25px;
    font-size:15px;
    background:transparent;
}

.newsletter-form button{
    border:none;
    background:#D4AF37;
    color:#111;
    padding:18px 35px;
    font-weight:600;
    transition:.4s;
    cursor:pointer;
}

.newsletter-form button:hover{
    background:#111;
    color:#fff;
}

/*=========================
      Responsive
=========================*/

@media(max-width:991px){

.newsletter-box{
    flex-direction:column;
    text-align:center;
}

.newsletter-left{
    flex-direction:column;
}

.newsletter-form{
    min-width:100%;
}

}

@media(max-width:576px){

.newsletter-box{
    padding:30px 20px;
}

.newsletter-content h3{
    font-size:26px;
}

.newsletter-form{
    flex-direction:column;
    border:none;
    background:none;
    gap:15px;
}

.newsletter-form input{
    border:1px solid #ddd;
    border-radius:50px;
}

.newsletter-form button{
    width:100%;
    border-radius:50px;
}

}

/*=================================
        SERVICE PAGE BANNER
==================================*/

.service-banner{
    position:relative;
    height:650px;
    overflow:hidden;
}

.service-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:zoomBanner 12s linear infinite alternate;
}

.service-banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,
    rgba(0,0,0,.75) 15%,
    rgba(0,0,0,.45) 45%,
    rgba(0,0,0,.15) 100%);
}

.service-banner .container{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
}

.service-banner-content{
    max-width:560px;
    color:#fff;
    animation:fadeLeft 1s ease;
    padding-top:100px;
   
    
}

.service-tag{
    display:inline-block;
    background:#D4AF37;
    color:#111;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.service-banner-content h1{
    font-family:'Playfair Display',serif;
    font-size:62px;
    line-height:1.1;
    margin-bottom:25px;
}

.service-banner-content p{
    font-size:17px;
    line-height:30px;
    color:#eee;
    margin-bottom:35px;
}

.service-banner-btn{
    display:inline-block;
    background:#D4AF37;
    color:#111;
    padding:15px 38px;
    border-radius:10px;
    font-weight:600;
    transition:.4s;
}

.service-banner-btn:hover{
    background:#fff;
    color:#111;
    transform:translateY(-5px);
}

/* Animation */

@keyframes zoomBanner{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.08);
    }

}

@keyframes fadeLeft{

    from{
        opacity:0;
        transform:translateX(-60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

/* Responsive */

@media(max-width:991px){

.service-banner{
    height:500px;
}

.service-banner-content h1{
    font-size:48px;
}

}

@media(max-width:768px){

.service-banner{
    height:450px;
}

.service-banner-content{
    text-align:center;
    margin:auto;
}

.service-banner .container{
    justify-content:center;
}

.service-banner-content h1{
    font-size:36px;
}

.service-banner-content p{
    font-size:15px;
    line-height:27px;
}

}

@media(max-width:576px){

.service-banner{
    height:400px;
}

.service-banner-content h1{
    font-size:30px;
}

.service-banner-content p{
    display:none;
}

.service-banner-btn{
    padding:12px 28px;
}

}

/*==============================
      SERVICE INTRO
===============================*/

.service-intro-sec{
    padding:110px 0;
    background:#fff;
}

.service-intro-img{
    position:relative;
    overflow:hidden;
    border-radius:18px;
}

.service-intro-img img{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:18px;
    transition:.6s;
}

.service-intro-img:hover img{
    transform:scale(1.08);
}

.service-intro-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.25),
    transparent);
}

.intro-badge{

    position:absolute;
    left:30px;
    top:30px;

    width:120px;
    height:120px;

    background:#D4AF37;
    color:#111;

    border-radius:50%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    z-index:2;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

    animation:floatBadge 3s infinite;
}

.intro-badge i{
    font-size:30px;
    margin-bottom:10px;
}

.intro-badge span{
    text-align:center;
    font-weight:600;
    font-size:14px;
}

.service-intro-content{
    animation:fadeRight 1s;
}

.intro-subtitle{

    color:#D4AF37;

    font-size:15px;

    font-weight:600;

    letter-spacing:3px;

    text-transform:uppercase;

}

.service-intro-content h2{

    font-family:'Playfair Display',serif;

    font-size:52px;

    color:#111;

    margin:18px 0 25px;

    line-height:1.2;

}

.service-intro-content p{

    color:#666;

    line-height:31px;

    margin-bottom:35px;

}

.intro-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.intro-btn-one{

    background:#D4AF37;

    color:#111;

    padding:15px 34px;

    border-radius:10px;

    font-weight:600;

    transition:.4s;

}

.intro-btn-one:hover{

    background:#111;

    color:#fff;

}

.intro-btn-two{

    border:2px solid #D4AF37;

    color:#111;

    padding:15px 34px;

    border-radius:10px;

    font-weight:600;

    transition:.4s;

}

.intro-btn-two i{
    margin-right:8px;
}

.intro-btn-two:hover{

    background:#D4AF37;

    color:#111;

}

@keyframes floatBadge{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}

@keyframes fadeRight{

from{

opacity:0;

transform:translateX(60px);

}

to{

opacity:1;

transform:translateX(0);

}

}

@media(max-width:991px){

.service-intro-content{

margin-top:40px;

text-align:center;

}

.intro-btns{

justify-content:center;

}

.service-intro-content h2{

font-size:40px;

}

}

@media(max-width:576px){

.service-intro-img img{

height:320px;

}

.service-intro-content h2{

font-size:30px;

}

.intro-badge{

width:90px;

height:90px;

left:15px;

top:15px;

}

.intro-badge i{

font-size:22px;

}

.intro-badge span{

font-size:11px;

}

}

/*=========================
     PVC DESIGN CARDS
==========================*/

.pvc-design-section{
    padding:70px 0;
    background:#fff;
}

.section-heading{
    margin-bottom:70px;
}

.section-heading span{
    color:#D4AF37;
    letter-spacing:3px;
    font-weight:600;
    text-transform:uppercase;
}

.section-heading h2{
    font-family:'Playfair Display',serif;
    font-size:48px;
    margin:18px 0;
    color:#111;
}

.section-heading p{
    color:#666;
    max-width:650px;
    margin:auto;
    line-height:28px;
}

.pvc-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.45s;
    border:1px solid #eee;
}

.pvc-img{
    overflow:hidden;
}

.pvc-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.6s;
}

.pvc-content{
    padding:28px;
}

.pvc-content h4{
    font-size:24px;
    margin-bottom:15px;
    color:#111;
    font-family:'Playfair Display',serif;
}

.pvc-content p{
    color:#666;
    line-height:28px;
    margin-bottom:22px;
}

.pvc-content a{
    color:#D4AF37;
    font-weight:600;
}

.pvc-content a i{
    margin-left:8px;
    transition:.4s;
}

.pvc-card:hover{

    transform:translateY(-12px);

    border-color:#D4AF37;

    box-shadow:0 20px 55px rgba(0,0,0,.15);

}

.pvc-card:hover img{

    transform:scale(1.08);

}

.pvc-card:hover a i{

    transform:translateX(8px);

}

@media(max-width:768px){

.section-heading h2{
    font-size:34px;
}

.pvc-img img{
    height:220px;
}

}

/*=========================
        FAQ SECTION
=========================*/

.faq-sec{
    padding:80px 0;
    background:#f8f6f2;
}

.faq-heading{
    margin-bottom:60px;
}

.faq-heading span{
    color:#D4AF37;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.faq-heading h2{
    font-size:48px;
    font-family:'Playfair Display',serif;
    color:#111;
    margin:15px 0;
}

.faq-heading p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:28px;
}

.faq-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.faq-box{

    background:#fff;

    padding:30px;

    border-radius:16px;

    border:1px solid #eee;

    transition:.4s;

}

.faq-title{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:18px;

}

.faq-title h4{

    font-size:22px;

    color:#111;

    font-family:'Playfair Display',serif;

}

.faq-title i{

    width:42px;

    height:42px;

    background:#D4AF37;

    color:#111;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.4s;

}

.faq-box p{

    color:#666;

    line-height:30px;

}

.faq-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.faq-box:hover i{

    transform:rotate(45deg);

    background:#111;

    color:#fff;

}

@media(max-width:991px){

.faq-wrapper{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.faq-heading h2{
    font-size:34px;
}

.faq-box{
    padding:25px;
}

.faq-title h4{
    font-size:20px;
}

}

/*==================================
        PRIVACY POLICY
===================================*/

.privacy-page-sec{

    padding:120px 0;

    background:#f8f6f2;

}

.privacy-page-head{

    text-align:center;

    margin-bottom:60px;

}

.privacy-page-head span{

    color:#D4AF37;

    font-size:14px;

    letter-spacing:3px;

    font-weight:600;

}

.privacy-page-head h1{

    font-size:52px;

    margin:18px 0;

    color:#111;

    font-family:'Playfair Display',serif;

}

.privacy-page-head p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:30px;

}

.privacy-content-box{

    max-width:950px;

    margin:auto;

}

.privacy-item{

    background:#fff;

    padding:35px;

    margin-bottom:25px;

    border-radius:15px;

    border-left:5px solid #D4AF37;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.4s;

}

.privacy-item:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.privacy-item h3{

    font-size:26px;

    margin-bottom:15px;

    color:#111;

    font-family:'Playfair Display',serif;

}

.privacy-item p{

    color:#666;

    line-height:30px;

    margin:0;

}

@media(max-width:768px){

.privacy-page-sec{

    padding:80px 0;

}

.privacy-page-head h1{

    font-size:38px;

}

.privacy-item{

    padding:25px;

}

.privacy-item h3{

    font-size:22px;

}

}
.footer-bottom p a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.footer-bottom p a:hover{
    color:#D4AF37;
}

/*==================================
      TERMS & CONDITIONS
===================================*/

.privacy-page-sec{
    padding:100px 0;
    background:#f8f6f2;
}

.privacy-page-head{
    text-align:center;
    margin-bottom:60px;
}

.privacy-page-head span{
    display:inline-block;
    color:#D4AF37;
    font-size:15px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.privacy-page-head h1{
    font-family:'Playfair Display',serif;
    font-size:52px;
    color:#111;
    margin-bottom:20px;
}

.privacy-page-head p{
    max-width:720px;
    margin:auto;
    color:#666;
    line-height:30px;
    font-size:16px;
}

.privacy-content-box{
    max-width:1000px;
    margin:auto;
}

.privacy-item{
    background:#fff;
    border-left:5px solid #D4AF37;
    border-radius:15px;
    padding:35px;
    margin-bottom:25px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.4s ease;
}

.privacy-item:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.privacy-item h3{
    font-family:'Playfair Display',serif;
    font-size:28px;
    color:#111;
    margin-bottom:18px;
}

.privacy-item p{
    color:#666;
    line-height:30px;
    font-size:16px;
    margin:0;
}

/*=========================
      Responsive
==========================*/

@media(max-width:991px){

.privacy-page-sec{
    padding:80px 0;
}

.privacy-page-head h1{
    font-size:42px;
}

.privacy-item{
    padding:30px;
}

}

@media(max-width:767px){

.privacy-page-head h1{
    font-size:34px;
}

.privacy-page-head p{
    font-size:15px;
}

.privacy-item{
    padding:22px;
}

.privacy-item h3{
    font-size:22px;
}

.privacy-item p{
    font-size:15px;
    line-height:28px;
}

}