@charset "utf-8";
/* CSS Document */
body { font-family: "Merriweather", serif; 
background-color: #fff4f4;}
.great-vibes-regular {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
}

.merriweather-<uniquifier> {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
.michroma-regular {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.oswald-<uniquifier> {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
em{
	font-family: "Great Vibes", cursive;
}
h1{font-family: "Merriweather", serif;}
p{
	font-family: "Merriweather", serif;
	line-height: 27px;
}
.clearfix{margin-bottom: 15px; clear: both;}
.btn{
	padding: 10px 20px;
}
.gold_button {
  background: linear-gradient(to right, #e5c93b 20%, #95651a 80%);
  color: #fff;
  border: none;  
  cursor: pointer;
}
.btn-outline-dark{
	border-color:#95651a;
}
.header-wrapper {
    background: #f7f5f2;
    font-family: 'Inter', sans-serif;
}

/* TOP TEXT */
.header-info p {
    font-size: 14px;
    color: #fff;
}
header{
	background-color: #3a2f28 !important;
}
/* NAV LINKS */
.custom-link {
    position: relative;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff !important;
    transition: 0.3s;
}

/* UNDERLINE ANIMATION */
.custom-link::after {
    content: "";
    position: absolute;
    /*left: 0;*/
    bottom: 15px;
    width: 0;
    height: 2px;
    /*background: #b89164;*/
    transition: width 0.3s ease;
}

.custom-link:hover::after {
   /* width: 100%;*/
}

.custom-link:hover {
    color: #b89164 !important;
}

/* DROPDOWN */
.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: #f5f1ec;
    color: #b89164;
}

/* NAVBAR LINES */
.navbar {
    border-color: #b89164 !important;
}

/* ANIMATION (FADE IN HEADER) */
.header-wrapper {
    animation: fadeDown 0.8s ease;
}
.navbar-nav{
	font-family: "Oswald", sans-serif; 
	text-transform:uppercase;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .header-info {
        text-align: center !important;
    }
	.header_logo{
		text-align: center;
    	display: block !important;
	}

    .navbar-nav {
        gap: 10px;
        padding: 15px 0;
    }

}

/* HERO */
.hero {
    background:url('images/banner.jpeg') top center/cover no-repeat;
    min-height:100vh;
    position:relative;
    color:#fff;
}
.hero::after {
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}
.hero-content { position:relative; z-index:2;
    min-height: 100vh;
    padding: 50px 0px;
}
.hero-content h1{
	margin-top: 20px;
}

/* STATS BAR */
.stats-bar {
    background:#3a2f28;
    color:#fff;
}
.logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    opacity: .9;
}
.banner_logos{
	margin-top: 50px;
    position: absolute;
    bottom: 20px;
	gap: 10px 30px;
}
.logos img{height: 40px;}
/* SERVICE CARDS */
.service-card {
    overflow:hidden;
}
.service-card img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}
.service-card:hover img {
    transform:scale(1.1);
}
.overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.4);
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-family:'Playfair Display';
    font-size:28px;
}

/*.profile_bg{
	background:url("images/bg-about.jpeg");
	background-attachment: fixed;
	background-position: bottom center;
	background-size: cover;
	
}*/
/* CONTACT */
.contact-left {
    background:#3a2f28;
    color:#fff;
}
.contact_info a{text-decoration: none; color: #fff; margin-left: 10px;}
.contact_info a:hover{color:#b89164 }
.contact_info i{color:#b89164 }

/* FOOTER */
.footer-new {
    background:#3a2f28;
    color:#fff;
}
.footer-new a { color:#fff; text-decoration:none; }
.footer-new a:hover { color:#b89164; }
.light_color{color: #b89164 !important;}
.light_color:hover{color: #fff4f4 !important;}

.social-icon {
    width:35px;height:35px;
    border:1px solid #fff;
    display:flex;
    align-items:center;
    justify-content:center;
	text-decoration: none; color: #fff;
}
.social-icon:hover i{
	color: #b89164;
}
/* ANIMATIONS */
.fade-up {
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}
.fade-up.show {
    opacity:1;
    transform:translateY(0);
}

.testimonials-section {
    background:#000;
}

/* CARD */
.testimonial-card {
    height:500px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.6);
}

.content {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    width:80%;
}

/* AVATAR */
.avatar {
    width:70px;
    height:70px;
    border-radius:50%;
    margin-bottom:10px;
}

/* TEXT */
.testimonial-card h5 {
    font-family:'Playfair Display';
}

.testimonial-card p {
    font-size:14px;
}

/* RATING */
.score {
    background:#fff;
    color:#000;
    padding:5px 10px;
    margin-right:10px;
}

/* RIGHT PANEL */
.right-panel {
    background:#fff4f4;
    min-height:500px;
}

/* CONTROLS */
.carousel-control-prev,
.carousel-control-next {
    width:50px;
    font-size:40px;
    color:#fff;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .testimonial-card {
        height:350px;
    }
}

.blog-section {
    background:#f7f5f2;
}

/* TITLE */
.blog-title {
    font-family:'Playfair Display', serif;
    font-size:42px;
    letter-spacing:3px;
}

.letter-space {
    letter-spacing:3px;
}

.divider {
    width:60px;
    height:2px;
    background:#999;
    margin-top:10px;
}

/* CARD */
.blog-card {
    background:#fff;
    border:1px solid #ddd;
    transition:0.3s;
}

.blog-card img {
    width:100%;
    height:220px;
    object-fit:cover;
}

/* HOVER EFFECT */
.blog-card:hover {
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* TEXT */
.blog-heading {
    font-family:'Playfair Display', serif;
    font-size:20px;
    margin-bottom:10px;
}

.blog-meta {
    font-size:13px;
    color:#777;
}

.blog-meta a {
    color:#777;
    text-decoration:underline;
}

.blog-text {
    font-size:14px;
    color:#555;
}

/* BUTTON */
.btn-dark {
    padding:8px 16px;
    font-size:14px;
	background: #3a2f28;
}

/* RESPONSIVE */
@media (max-width:768px) {

    .blog-title {
        font-size:30px;
    }

    .blog-card img {
        height:180px;
    }

}

/*before and after*/
video{    width: 100%;
    height: auto;
}

.modal-backdrop{position:relative;}
.video-gallery-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* reuse same bg-video + overlay from Real Staging */
.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -2;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 0;
}

/* GRID */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* VIDEO CARD */
.video-item {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(1);
    transition: all 0.4s ease;
}

.video-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover animation (matching smooth site feel) */
.video-item:hover img {
    transform: scale(1.1);
}

.video-item:hover {
    transform: translateY(-8px);
}

/* Play button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    background: rgba(255,255,255,0.9);
    color: #000;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.video-item:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

/* LIGHTBOX (same premium feel) */
.video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.lightbox-content {
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16/9;
    position: relative;
    animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
    from {transform: scale(0.8);}
    to {transform: scale(1);}
}

.lightbox-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Close */
.close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	.banner_logos{position:relative;}
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}
.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) #b89164 !important}

.header-info p{margin-bottom:3px;}
.header-info a{text-decoration: none; color: #fff; margin-left: 10px;}
.header-info a:hover{color: #b89164; }
.header-info i{color: #b89164}
.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.section-title span {
    background: #3a2f28; /* match section bg */
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #b89164;
    z-index: 0;
}
/* Modal Styling to match modern animated UI */
.custom-modal {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    animation: modalFadeIn 0.4s ease;
	box-shadow: #959595 1px 1px 10px;
}
.custom-modal .light_color{    
	font-weight: 500;
    font-size: 40px;
}
.custom-modal .light_color:hover i{color:#860000;}

.custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Smooth animation like your scroll effects */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.insta_modal{background:#fff4f4;}