/* 
=========================================
BIM. HTML Template Styles
=========================================
*/

:root {
    --bs-primary: #f58634;
    /* Orange accent */
    --bs-primary-rgb: 245, 134, 52;
    --bs-dark: #202020;
    --bs-secondary: #888888;
    --bs-light: #f8f9fa;
    --font-heading: 'Roboto Slab', serif;
    --font-body: 'Roboto Slab', serif;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    overflow-x: hidden;
}

h1 {
    font-family: var(--font-heading);
    color: #d4af37;
}

.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: #fff;
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #000;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: #d3a046;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h3,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--bs-dark);
}

.nav-link:focus,
.nav-link:hover {
    color: #d3a046;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #d3a046;
}

.text-primary {
    color: #d3a046 !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.btn-primary {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #fff;
}

.btn-primary:hover {
    background-color: #d67128;
    border-color: #d67128;
}

.btn-outline-primary {
    color: #d4af37;
    border-color: #d4af37;
}

.btn-outline-primary:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #fff;
}

.border-primary {
    border-color: var(--bs-primary) !important;
}

/* Utilities */
.tracking-wider {
    letter-spacing: 0.1em;
}

.fs-7 {
    font-size: 1rem;
}

.hover-primary:hover {
    color: var(--bs-primary) !important;
}

.hover-white:hover {
    color: #fff !important;
}

.transition-transform {
    transition: transform 0.4s ease-in-out;
}

.group:hover .transition-transform {
    transform: scale(1.05);
}

.transition-filter {
    transition: filter 0.4s ease-in-out;
}

.grayscale {
    filter: grayscale(100%);
}

.group:hover .grayscale {
    filter: grayscale(0%);
}

.image-hover {
    transition: transform 0.5s ease;
}

.blog-card:hover .image-hover {
    transform: scale(1.05);
}

.blog-card {
    cursor: pointer;
}

/* Header */
.navbar-brand {
    letter-spacing: 1px;
}
.sub-page-header{
    background-color: #000;
}
.nav-link {
    font-size: 17px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 1rem !important;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: #fff;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: #000;
    border: 0;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
}
.slide-text-section{
        padding-bottom: 40px;
}
.hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;

    /* Dark only on top & bottom */
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.555) 0%, rgba(0, 0, 0, 0.281) 28%, rgba(0, 0, 0, 0.212) 50%, rgba(0, 0, 0, 0.418) 72%, rgba(0, 0, 0, 0.70) 100%);

    z-index: 0;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    display: inline-block;
}

.hero-controls {
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-controls button {
    pointer-events: auto;
    transition: transform 0.3s ease;
}

.hero-controls button:hover {
    transform: scale(1.2);
    cursor: pointer;
}

/* Carousel Inner Animations */
.carousel-item.active .container p,
.carousel-item.active .container h1,
.carousel-item.active .container a {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.carousel-item.active .delay-1 {
    animation-delay: 0.2s;
}

.carousel-item.active .delay-2 {
    animation-delay: 0.5s;
}

.carousel-item.active .delay-3 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* About Section */
.about-list li i {
    font-size: 1.25rem;
}

.about-images {
    min-height: 500px;
}

.img-wrapper-1 {
    width: 80%;
    position: relative;
    z-index: 2;
}

.img-wrapper-2 {
    width: 60%;
    bottom: -10%;
    right: 0;
    z-index: 3;
    border: 10px solid #fff;
}

.pattern-bg {
    width: 200px;
    height: 200px;
    bottom: -40px;
    right: -40px;
    z-index: 1;
}

/* Work Process */
.process-item {
    position: relative;
}

.process-icon-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    padding: 10px;
    border: 2px dashed var(--bs-primary);
}

.process-icon-wrapper img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.process-row .process-line {
    position: absolute;
    top: 70px;
    left: 15%;
    width: 70%;
    height: 1px;
    border-top: 1px dashed #ccc;
    z-index: 0;
}

/* Parallax CTA */
.parallax-cta {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../img/background.avif') center/cover no-repeat fixed;

    padding: 100px 0;
    min-height: 400px;
}

/* Services */
.service-card {
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .15) !important;
    cursor: pointer;
}

/* Portfolio */
.portfolio-filter .nav-link {
    color: var(--bs-dark);
}

.portfolio-filter .nav-link.active {
    background-color: var(--bs-primary);
    color: #fff;
}

.portfolio-filter .nav-link:hover:not(.active) {
    background-color: rgba(245, 134, 52, 0.1);
}

.portfolio-item {
    cursor: pointer;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background-color: rgb(82 82 82 / 76%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Stats Section */
.stats-section {
    background-color: rgba(246, 146, 30, 0.69);
}

.stats-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    opacity: 0.3;
}

/* Blog */
.bg-text-overlay {
    position: relative;
    display: inline-block;
}

.bg-text-overlay::before {
    content: 'BLOG';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: -1;
    letter-spacing: 0.2em;
}

/* Testimonials */
.testimonials-section {
    background-color: #f8f9fa;
    position: relative;
}

.testimonial-card {
    background: #fff;
    padding: 50px 40px;
    position: relative;
    border: 1px solid #eee;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    background-color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.testimonial-icon i {
    color: #fff !important;
    font-size: 1.5rem !important;
}

.testimonial-author h5 {
    color: #000;
    letter-spacing: 1px;
}

.italic {
    font-style: italic;
    line-height: 1.8;
}

#testimonialCarousel .carousel-indicators {
    bottom: -60px;
}

#testimonialCarousel .carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    margin: 0 6px;
    border-radius: 50%;
    background-color: #ccc !important;
    border: none;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
}

#testimonialCarousel .carousel-indicators button.active {
    opacity: 1;
    background-color: #d4af37 !important;
    transform: scale(1.3);
}

/* Contact Settings */
.contact-section {
    background-color: #f8f9fa;
}

.map-bg {
    background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
    filter: grayscale(100%) opacity(0.3) brightness(1.5);
}

.contact-box {
    max-width: 1100px;
    border-radius: 10px;
}

.contact-box .bg-dark {
    position: relative;
    overflow: hidden;
}

.contact-box .bg-dark::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background: var(--bs-dark);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--bs-primary) !important;
}

/* Footer Section */
.footer-area {
    background-color: #040809;
}
.footer-social a{
   padding: 3px 10px;
    line-height: 27px;
        color: #fff;
}
.footer-links a{
    color: #fff;
}
.footer-address .group a{
    color: #fff !important;
}
/* Dropdown Hover Animation */
@media (min-width: 992px) {
    .dropdown-hover:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-muted {
    --bs-text-opacity: 1;
    color: #000 !important;
}

.text-dark {
    color: #000 !important;
    font-family: "Playfair Display", serif;
    font-size: 20px;
}

.touch {
    color: #fff;
}

.navbar-brand img {
    width: 60%;
}

.blog-section {
    background-color: #000000db;
}

.blog-text {
    text-align: center;
    color: #d3a046;
    font-size: 20px;
}

.bubbles span {
    position: absolute;
    bottom: -50px;
    background: rgba(255, 200, 120, 0.2);
    border-radius: 50%;
    animation: rise 15s linear infinite;
}

.bubbles span:nth-child(1) {
    left: 10%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.bubbles span:nth-child(2) {
    left: 20%;
    width: 40px;
    height: 40px;
    animation-delay: 2s;
    animation-duration: 10s;
}

.bubbles span:nth-child(3) {
    left: 35%;
    width: 100px;
    height: 100px;
    animation-delay: 4s;
}

.bubbles span:nth-child(4) {
    left: 50%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 12s;
}

.bubbles span:nth-child(5) {
    left: 65%;
    width: 50px;
    height: 50px;
    animation-delay: 3s;
}

.bubbles span:nth-child(6) {
    left: 80%;
    width: 90px;
    height: 90px;
    animation-delay: 1s;
    animation-duration: 18s;
}

.bubbles span:nth-child(7) {
    left: 90%;
    width: 70px;
    height: 70px;
    animation-delay: 5s;
}

.bubbles span:nth-child(8) {
    left: 25%;
    width: 30px;
    height: 30px;
    animation-delay: 7s;
}

.bubbles span:nth-child(9) {
    left: 55%;
    width: 45px;
    height: 45px;
    animation-delay: 2s;
}

@keyframes rise {
    0% {
        bottom: -20px;
        transform: translateX(0) scale(1);
    }

    50% {
        transform: translateX(100px) scale(1.2);
    }

    100% {
        bottom: 100%;
        transform: translateX(-50px) scale(0.5);
        opacity: 0;
    }
}

.footer-ad {
    display: flex;
}

.group a {
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
    text-decoration: none;
}

.group a:hover {
    color: rgb(204 178 109);
}

.footer-color i {
    color: #d3a046;
}

.footer-read-more {
    color: #d3a043;
}

.contact-ad h3 {
    color: #fff;
}

.contact-ad h5 {
    color: #fff;
}

.contact-ad i {
    color: #d3a046;
}

.contact-ad p {
    color: #fff !important;
}

@media (min-width: 1200px) {
    .display-5 {
        font-size: 2.5rem;
    }
}

.main-accordion{
    background:#fff;
    border-radius:30px;
    margin-bottom:30px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,0.06);
    box-shadow:0 10px 40px rgba(0,0,0,0.04);
    transition:0.4s ease;
}

.main-accordion:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.main-btn{
    width:100%;
    border:none;
    background:none;
    padding:10px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-align:left;
    cursor:pointer;
}

.main-btn h3{
    font-size: 25px;
    color: #444444;
    margin-top: 10px;
    font-weight: 600;
}

.main-icon{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#f8f4ec;
    color:#c8a45d;
    font-size:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.4s ease;
}

.main-content{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.6s ease;
    background:#fff;
}

.main-accordion.active .main-content{
    max-height:4000px;
}

.main-accordion.active .main-icon{
    transform:rotate(45deg);
    background:#c8a45d;
    color:#fff;
}

.sub-faq{
    padding:15px 40px;
    border-top:1px solid rgba(0,0,0,0.06);
}

.sub-faq h4{
    font-size:24px;
    color:#97760c;
    margin-bottom:16px;
    line-height:1.5;
    font-weight:700;
}

.sub-faq p{
    color:#666;
    line-height:2;
    font-size:17px;
}

@media(max-width:768px){

    .main-btn{
        padding:25px;
    }

    .main-btn h3{
        font-size:24px;
    }

    .main-icon{
        width:50px;
        height:50px;
        font-size:28px;
    }

    .sub-faq{
        padding:25px;
    }

    .sub-faq h4{
        font-size:20px;
    }

    .sub-faq p{
        font-size:15px;
        line-height:1.9;
    }
}
    .Breadcrumb{
       background: linear-gradient(rgb(212 175 55 / 82%), rgb(212 175 55 / 80%)), url(../img/slide/slide1.jpg) center / cover no-repeat !important;
         padding: 26px 45px;
    }
    .Breadcrumb  a,.Breadcrumb  span{
        color: #fff !important;
        text-decoration: none !important;
    }
    .subpage{
        padding: 50px 0px !important;
    }
    




.project-grid-section{
    
    background:#f8f6f2;
    overflow:hidden;
}

.container-custom{
        max-width: 1253px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.subtitle{
    color:#c8a45d;
    font-size:13px;
    letter-spacing:4px;
    font-weight:600;
    text-transform:uppercase;
    display:block;
    margin-bottom:18px;
}

.section-heading h2{
    font-size:45px;
    color:#111;
    font-weight:700;
    margin-bottom:22px;
    line-height:1.2;
}

.section-heading p{
    max-width:760px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.9;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.project-card{
    position:relative;
    height:500px;
    overflow:hidden;
    border-radius:30px;
    cursor:pointer;
    background:#000;
}

.project-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s ease;
}

.project-card:hover img{
    transform:scale(1.08);
}

.project-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.20) 45%,
    rgba(0,0,0,0.05) 100%);
    display:flex;
    align-items:flex-end;
    padding:35px;
}

.project-content{
    width:100%;
    transform:translateY(25px);
    transition:0.5s ease;
}

.project-card:hover .project-content{
    transform:translateY(0);
}

.project-content span{
    color:#d6d6d6;
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
    display:block;
    margin-bottom:12px;
}

.project-content h3{
    color:#fff;
    font-size:38px;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.2;
}

.view-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    background:#c8a45d;
    color:#111;
    font-size:15px;
    font-weight:700;
    border-radius:60px;
    text-decoration:none;
    transition:0.4s ease;
    opacity:0;
    transform:translateY(20px);
}

.project-card:hover .view-btn{
    opacity:1;
    transform:translateY(0);
}

.view-btn:hover{
    background:#fff;
    color:#111;
}

@media(max-width:991px){

    .project-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .section-heading h2{
        font-size:38px;
    }

    .section-heading p{
        font-size:16px;
    }

    .project-grid{
        grid-template-columns:1fr;
    }

    .project-card{
        height:420px;
        border-radius:24px;
    }

    .project-content h3{
        font-size:28px;
    }

}

.gallery-section{
  
    background:#f8f6f2;
}

.gallery-container{
    max-width:1253px;
    margin:auto;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.gallery-item{
    height:420px;
    overflow:hidden;
    border-radius:28px;
    cursor:pointer;
    position:relative;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.8s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* POPUP */

.popup-gallery{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.94);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transition:0.4s ease;
    z-index:9999;
}

.popup-gallery.active{
    opacity:1;
    visibility:visible;
}

.popup-image-box{
    width:85%;
    max-width:1200px;
    height:85vh;
    border-radius:28px;
    overflow:hidden;
}

.popup-image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CLOSE */

.close-popup{
    position:absolute;
    top:35px;
    right:40px;
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#111;
    font-size:42px;
    cursor:pointer;
    z-index:10;
    transition:0.3s ease;
}

.close-popup:hover{
    background:#c8a45d;
}

/* ARROWS */

.gallery-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:75px;
    height:75px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:34px;
    cursor:pointer;
    transition:0.3s ease;
}

.gallery-arrow:hover{
    background:#c8a45d;
    color:#111;
}

.prev{
    left:40px;
}

.next{
    right:40px;
}

/* MOBILE */

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item{
        height:320px;
    }

    .popup-image-box{
        width:92%;
        height:70vh;
    }

    .gallery-arrow{
        width:55px;
        height:55px;
        font-size:24px;
    }

    .prev{
        left:15px;
    }

    .next{
        right:15px;
    }

    .close-popup{
        top:20px;
        right:20px;
        width:55px;
        height:55px;
        font-size:34px;
    }

}

/* new style */
.main-content ul {
    margin-left: 30px !important;
    color: #444;
    line-height: 2;
    font-size: 17px;
}

.main-content li {
    padding-top: 10px;
}

.services-section{ 
    position:relative;
    overflow:hidden;
}

.services-container{
    max-width:1253px;
    margin:auto;
}
.contact{
    max-width:1253px;
    margin:auto;  
}
.about-difference{
    max-width:1253px;
    margin:auto;
    margin-top: 50px;
}

.services-heading{
    text-align:center;
    margin-bottom:70px;
}

.services-heading span{
    color:#c8a45d;
    font-size:13px;
    letter-spacing:4px;
    text-transform:uppercase;
    font-weight:600;
    display:block;
    margin-bottom:18px;
}

.services-heading h2{
    font-size:58px;
    color:#111;
    margin-bottom:20px;
    font-weight:700;
}

.services-heading p{
    max-width:760px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.9;
}

/* GRID */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.service-card{
    position:relative;
    background:#fff;
    padding:40px;
    border-radius:30px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,0.06);
    transition:0.5s ease;
    box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(0,0,0,0.08);
}

.card-glow{
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(200,164,93,0.12);
    filter:blur(80px);
    right:-80px;
    bottom:-80px;
    opacity:0;
    transition:0.5s ease;
}

.service-card:hover .card-glow{
    opacity:1;
}

.service-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:35px;
}

.service-no{
    width:65px;
    height:65px;
    border-radius:20px;
    background:#f5efe3;
    color:#c8a45d;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.4s ease;
}

.service-card:hover .service-no{
    background:#c8a45d;
    color:#fff;
    transform:rotate(-8deg);
}

.service-icon{
    font-size:32px;
}

.service-card h3{
    font-size:30px;
    color:#111;
    margin-bottom:18px;
    line-height:1.3;
    font-weight:700;
}

.service-card p{
    color:#666;
    line-height:2;
    font-size:16px;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-heading h2{
        font-size:38px;
    }

    .service-card{
        padding:32px 24px;
    }

    .service-card h3{
        font-size:24px;
    }

}



/* =========================
   CONTACT SECTION
========================= */

.contact-left-content{
    padding-right:40px;
}

.contact-tag{
    display:inline-block;
    color:#c8a45d;
    font-size:13px;
    font-weight:600;
    letter-spacing:4px;
    margin-bottom:20px;
}

.contact-title{
    font-size:52px;
    line-height:1.2;
    color:#111;
    font-weight:700;
    margin-bottom:24px;
}

.contact-text{
    color:#666;
    font-size:17px;
    line-height:2;
    margin-bottom:40px;
}

/* INFO BOX */

.contact-info-box{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-item{
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:20px;
    border-radius:22px;
    border:1px solid rgba(0,0,0,0.06);
    transition:0.4s ease;
}

.info-item:hover{
    transform:translateX(8px);
    border-color:rgba(200,164,93,0.4);
}

.info-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#f5efe3;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#c8a45d;
    font-size:24px;
}

.info-item span{
    color:#777;
    font-size:14px;
    display:block;
    margin-bottom:5px;
}

.info-item h6{
    margin:0;
    color:#111;
    font-size:18px;
    font-weight:700;
}

/* FORM */

.luxury-contact-form{
    background:#fff;
    padding:50px;
    border-radius:32px;
    border:1px solid rgba(0,0,0,0.06);
    box-shadow:0 20px 60px rgba(0,0,0,0.05);
    position:relative;
    overflow:hidden;
}

/* GOLD BLUR */

.luxury-contact-form::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(200,164,93,0.10);
    border-radius:50%;
    top:-120px;
    right:-100px;
    filter:blur(70px);
}

/* FORM GROUP */

.form-group label{
    display:block;
    margin-bottom:12px;
    color:#111;
    font-weight:600;
    font-size:15px;
}
.form-group .form-select{
        color: #5c5c5c !important;
}
.form-control,
.form-select{
    height:62px;
    border-radius:18px;
    border:1px solid rgba(0,0,0,0.08);
    padding:0 20px;
    font-size:15px;
    box-shadow:none !important;
    transition:0.3s ease;
    background:#fafafa;
}

.form-control:focus,
.form-select:focus{
    border-color:#c8a45d;
    background:#fff;
}

/* BUTTON */

.luxury-submit-btn{
    border:none;
    background:#111;
    color:#fff;
    height:65px;
    padding:0 38px;
    border-radius:60px;
    font-size:16px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:12px;
    transition:0.4s ease;
}

.luxury-submit-btn i{
    transition:0.4s ease;
}

.luxury-submit-btn:hover{
    background:#c8a45d;
    color:#111;
    transform:translateY(-3px);
}

.luxury-submit-btn:hover i{
    transform:translateX(6px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .contact-left-content{
        padding-right:0;
    }

    .contact-title{
        font-size:38px;
    }

    .luxury-contact-form{
        padding:35px 24px;
    }

}
.process-img{
        margin-left: auto;
    margin-right: auto;
    display: table;
}