
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    overflow-x:hidden;
    font-family: 'Montserrat', sans-serif;
}

/* HERO SECTION */
.hero-section{
    position: relative;
    width:100%;
    height:100vh;
    background: url("../images/banner.jpg") center center/cover no-repeat;
}

/* dark overlay */
.hero-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.38);
}

/* left dark gradient */
.hero-section::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:42%;
    height:100%;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.58) 55%,
        rgba(0,0,0,0.00) 100%
    );
}

/* NAVBAR */
.custom-navbar{
    position:absolute;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    padding-top:22px;
}

.logo img{
    width:115px;
}

/* menu */
.navbar-nav{
    gap:18px;
}

.navbar-nav .nav-link{
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:0.8px;
    text-transform:uppercase;
    transition:.3s;
    position:relative;
}

.navbar-nav .nav-link:hover{
    color:#cfaa47;
}

/* HERO CONTENT */
.hero-content{
    position:relative;
    z-index:5;
    height:100vh;
    display:flex;
    align-items:center;
}

.hero-left{
    max-width:640px;
    padding-left:0px;
    margin-top:30px;
}

.sub-heading{
    color: #c8a247;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
    margin-top: 25px;
}

.hero-title{
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 28px;
}

.hero-desc{
    color:#f0f0f0;
    font-size:17px;
    line-height:1.6;
    max-width:660px;
    font-weight:500;
}

/* BUTTON */
.custom-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:32px;
    color:#fff;
    padding:10px 20px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;    
    text-transform:uppercase;
    transition:.3s;
    background: #d4af374d !important;
    border-color: #d4af3780 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #d4af3766;
    overflow: hidden;
    position: relative;
    transition: all .3s ease;
}

.custom-btn:hover{
    background:#a6863d;
    color:#fff;
}

.arrow{
    font-size:22px;
}

/* sunlight icon */
.sun-icon{
    color:#b28a2e;
    font-size:22px;
    margin-left:20px;
}

/* responsive */
@media(max-width:992px){

    .hero-section::after{
        width:100%;
        background: rgba(0,0,0,0.65);
    }

    .hero-title{
        font-size:54px;
    }

    .hero-left{
        padding:20px;
    }

    .navbar-collapse{
        background:#111;
        padding:20px;
        margin-top:15px;
    }
}

@media(max-width:768px){

    .hero-title{
        font-size:42px;
    }

    .hero-desc{
        font-size:15px;
        line-height:1.8;
    }

    .sub-heading{
        font-size:12px;
        letter-spacing:3px;
    }

    .custom-btn{
        padding:16px 28px;
        font-size:15px;
    }

    .logo img{
        width:95px;
    }
}



.stats-section{
    background:
    linear-gradient(
        90deg,
        #121417 0%,
        #15171a 35%,
        #16181b 100%
    );

    padding: 98px 0 94px;
    position: relative;
    overflow: hidden;
}

.stats-row{
    max-width: 1320px;
    margin: auto;
}

.stats-box{
    position: relative;
}

/* ICON */
.stats-icon{
    margin-bottom: 34px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon i{
    color: #c9a43b;
    font-size: 40px;
    font-weight: 300;
}

/* NUMBER */
.stats-box h2{
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: 500;
    margin: 0 0 16px;
    letter-spacing: 0.4px;
}

/* TEXT */
.stats-box span{
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    line-height: 1.6;
}

/* Exact spacing desktop */
.col-lg-3{
    padding-left: 48px;
    padding-right: 48px;
}

/* Tablet */
@media(max-width:991px){

    .stats-section{
        padding: 80px 0;
    }

    .stats-box{
        margin-bottom: 50px;
    }

    .stats-icon{
        margin-bottom: 24px;
    }

    .stats-icon i{
        font-size: 36px;
    }

    .stats-box h2{
        font-size: 28px;
    }

    .stats-box span{
        font-size: 14px;
    }
}

/* Mobile */
@media(max-width:576px){

    .stats-section{
        padding: 60px 0 35px;
    }

    .stats-box{
        margin-bottom: 45px;
    }

    .stats-icon i{
        font-size: 32px;
    }

    .stats-box h2{
        font-size: 26px;
    }

    .stats-box span{
        font-size: 12px;
        line-height: 1.5;
    }
}

.services-section {
    background: #000;
    padding: 90px 0;
}

.small-title {
    color: #b9985d;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.main-title {
    color: #fff;
    font-size: 42px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 40px;
    font-family: serif;
}

.service-card {
    background: #111;
    border: 1px solid rgba(185, 152, 93, 0.5);
    transition: 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-content {
    padding: 22px;
}

.icon {
    color: #fff;
    font-size: 20px;
    margin-bottom: 18px;
}

.service-content h4 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
    font-family: serif;
    line-height: 1.3;
}

.service-content p {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 34px;
    }

    .service-content h4 {
        font-size: 22px;
    }
}
.about-section {
    background: #111111;
    padding: 100px 0;
    color: #fff;
}

/* Small Heading */
.sub-title {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

/* Main Title */
.main-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 35px;
    color: #f5e4d4;
    font-family: serif;
}

/* Paragraph */
.about-section p {
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 28px;
}

/* Checklist */
.about-points {
    padding-top: 170px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 28px;
}

.point-item i {
    color: #fff;
    font-size: 20px;
    margin-top: 5px;
}

.point-item span {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {

    .about-points {
        padding-top: 30px;
    }

    .main-title {
        font-size: 42px;
    }

    .about-section p,
    .point-item span {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 70px 0;
    }

    .main-title {
        font-size: 34px;
    }
}



.project-section{
      padding:100px 0;
      background:#000;
    }

    .sub-title{
      color: #ffffff;
      text-transform:uppercase;
      letter-spacing:4px;
      font-size:11px;
      text-align:center;
      margin-bottom:15px;
      font-weight:600;
    }

    
    /* Tabs */

    .project-tabs{
      justify-content:center;
      margin-bottom:50px;
      border:none;
      gap:15px;
    }

    .project-tabs .nav-link{
      -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    background: #1a1a1acc !important;
    border-color: #d4af374d !important;
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #d4af374d;
    overflow: hidden;
    position: relative;
    transition: all .3s ease;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-size: .875rem;
    line-height: 1.25rem;
    padding-bottom: .5rem;
    padding-top: .5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 0px !important;
    }
    .nav-link.active {
     color: #ffffff !important;
    }

    .project-tabs .nav-link:hover,
    .project-tabs .nav-link.active{
      background:#8a6a2d;
      color:#fff;
      border-color:#8a6a2d;
    }

    /* Gallery */

    .gallery-item{
      position:relative;
      overflow:hidden;
      margin-bottom:30px;
      background:#111;
    }

    .gallery-item img{
      width:100%;
      height:500px;
      object-fit:cover;
      transition:0.5s ease;
      display:block;
    }

    .gallery-item:hover img{
      transform:scale(1.08);
      opacity:0.75;
    }

    .overlay{
      position:absolute;
      left:0;
      bottom:0;
      width:100%;
      padding:25px;
      background:linear-gradient(to top, rgba(0,0,0,0.9), transparent);
      opacity:0;
      transition:0.4s;
    }

    .gallery-item:hover .overlay{
      opacity:1;
    }

    .overlay h4{
      margin:0;
      font-size:28px;
      font-family:'Cormorant Garamond', serif;
      color:#fff;
    }

    .overlay p{
      margin-top:8px;
      color:#d6a85f;
      font-size:14px;
      letter-spacing:2px;
      text-transform:uppercase;
    }

    @media(max-width:991px){

      .main-title{
        font-size:46px;
      }

      .gallery-item img{
        height:350px;
      }
    }

    @media(max-width:767px){

      .main-title{
        font-size:38px;
      }

      .project-tabs{
        gap:10px;
      }

      .project-tabs .nav-link{
        padding:10px 18px;
        font-size:12px;
      }

      .gallery-item img{
        height:280px;
      }
    }


    .testimonial-section{
      padding:100px 0;
      background:linear-gradient(to right,#121212,#0f0f0f);
    }

    /* Small Heading */

    .section-subtitle{
      text-align:center;
      color:#fff;
      text-transform:uppercase;
      letter-spacing:4px;
      font-size:13px;
      font-weight:600;
      margin-bottom:15px;
    }

    /* Main Heading */

    .section-title{
      text-align:center;
      font-size:40px;
      color:#fff;
      font-weight:600;
      margin-bottom:70px;
    }

    /* Testimonial Box */

    .testimonial-box{
      border:1px solid rgba(212,168,93,0.5);
      padding:40px 35px;
      height:100%;
      background:transparent;
      transition:0.4s ease;
    }

    .testimonial-box:hover{
      transform:translateY(-8px);
      border-color:#d4a85d;
      box-shadow:0 0 25px rgba(212,168,93,0.15);
    }

    .client-name{
      font-size:14px;
      color:#fff;
      margin-bottom:6px;
      font-weight:600;
    }

    .client-designation{
      color:#d8d8d8;
      font-size:15px;
      margin-bottom:30px;
      font-weight:400;
    }

    .testimonial-text{
      color:#d8d8d8;
      line-height:1.9;
      font-size:13px;
      margin-bottom:30px;
    }

    .stars{
      color:#ffffff;
      letter-spacing:4px;
      font-size:18px;
    }

    /* Responsive */

    @media(max-width:991px){

      .section-title{
        font-size:52px;
      }

      .testimonial-box{
        margin-bottom:30px;
      }
    }

    @media(max-width:767px){

      .testimonial-section{
        padding:70px 0;
      }

      .section-title{
        font-size:40px;
      }

      .client-name{
        font-size:28px;
      }

      .testimonial-box{
        padding:30px 25px;
      }
    }



    .footer-section{
      background:linear-gradient(to right,#141414,#0f0f0f);
      padding:90px 0 30px;
      color:#fff;
      position:relative;
      overflow:hidden;
    }

    /* Gold Line */

    .footer-section::before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:1px;
      background:rgba(212,168,93,0.4);
    }

    /* Logo */

    .footer-logo img{
      width:140px;
      margin-bottom:35px;
    }

    /* About Text */

    .footer-about{
          color: #d0d0d0;
    line-height: 2;
    font-size: 13px;
    max-width: 300px;
    }

    /* Footer Heading */

    .footer-title{
      font-size: 14px;
        color: #fff;
        margin-bottom: 30px;
        font-weight: 400;
        position: relative;
    }

    .footer-title::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-10px;
      width:45px;
      height:2px;
      background:#d4a85d;
    }

    /* Links */

    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
    }

    .footer-links li{
      margin-bottom:5px;
    }

    .footer-links a{
      color:#d0d0d0;
      text-decoration:none;
      transition:0.4s;
      font-size:14px;
    }

    .footer-links a:hover{
      color:#d4a85d;
      padding-left:8px;
    }

    /* Contact */

    .contact-item{
      display:flex;
      align-items:flex-start;
      gap:14px;
      margin-bottom:25px;
      color:#d0d0d0;
      line-height:1.8;
      font-size:15px;
    }

    .contact-item i{
      color:#d4a85d;
      font-size:16px;
      margin-top:5px;
    }

    /* Social */

    .social-icons{
      margin-top:25px;
      display:flex;
      gap:15px;
    }

    .social-icons a{
      width:42px;
      height:42px;
      border:1px solid rgba(212,168,93,0.4);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      text-decoration:none;
      transition:0.4s;
      font-size:15px;
    }

    .social-icons a:hover{
      background:#d4a85d;
      border-color:#d4a85d;
      transform:translateY(-4px);
    }

    /* Bottom */

    .footer-bottom{
      border-top:1px solid rgba(212,168,93,0.2);
      margin-top:70px;
      padding-top:28px;
      text-align:center;
      color:#c7c7c7;
      font-size:14px;
    }

    .footer-bottom span{
      color:#d4a85d;
    }

    /* Responsive */

    @media(max-width:991px){

      .footer-column{
        margin-bottom:45px;
      }

      .footer-title{
        font-size:32px;
      }
    }

    @media(max-width:767px){

      .footer-section{
        padding:70px 0 25px;
      }

      .footer-logo img{
        width:120px;
      }

      .footer-title{
        font-size:28px;
      }

      .footer-about{
        max-width:100%;
      }
    }