*{
    margin: 0;
    padding: 0 ;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* outline: 1px solid red; */
}

/* Headings */
h1, h2, h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

/* Paragraph */
p, li {
  font-family: 'Poppins', sans-serif;
  line-height: 1.8;
  
}

html {
  scroll-behavior: smooth;
}
html, body{
  overflow-x: hidden;
  width: 100vw;
  margin: 0;
  padding: 0;
}
 body {
    overflow-x: hidden; 
    overflow-y: auto;  
    height: auto;
    
}
.section-container{
    width: 100vw;
    background-color: #fff;
}
.main-section{
   width: 100%;
}

.container {
   max-width: 1800px;
    margin: 0 auto ;   
    padding: 0 20px;

}
img{
    max-width: 100%;
    height: auto;
}
header{
    width: 100%;
    position: relative;
}
/* NAVBAR */

.navbar{
    position: absolute;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 20px;
    z-index: 2;
    background-color:transparent !important;
    color: #fff;
    width: 100%;
    height: fit-content;
    
}
.other-page{
  width: 102%;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; 
  background-image: url(../images/dinind_interior.jpg);
}
.nav-left{
  position: relative;
  top: -130px;
  width: 300px;
  height: 40px;
  
}
.nav-left img{
  width: 100%;
  /* height: 100%; */
}


.nav-links {
    display:flex;
    align-items: center;
    justify-content: center;
    list-style-type:none;
    flex-direction: row;
    gap:30px;
}

.nav-links li{
    cursor:pointer;
    position: relative;
}
.nav-links li a{
    position: relative;
    text-decoration: none;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
}
.nav-links{
  display: flex;
  gap: 30px;
  list-style: none;
  margin-top: 20px;
}

.nav-links li a {
  position: relative;
  text-decoration: none;
  color: black;
  font-size: 18px;
}

/* underline */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  transition: all 0.4s ease;
  transform: translateX(-50%);
  height: 2px;
  background: #F2C200;
}

/* hover effect */
.nav-links li a:hover::after{
  width: 100%;
}
.nav-links li a.active::after{
  width: 100%;
}

/* Hide submenu */
.nav-links li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 220px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Show submenu on hover */
.nav-links li:hover > ul {
    display: block;
}

/* Submenu items */
.nav-links li ul li {
    display: block;
}

/* Submenu links */
.nav-links li ul li a {
    display: block;
    padding: 10px 15px;
    color: #000 !important;
    text-decoration: none;
}

/* Hover effect */
.nav-links li ul li a:hover {
    background: #f5f5f5;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

.quote-btn{
  background:#1b2233;
  color:#fff;
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:8px;
}

.quote-btn span{
    background:#F2C200  ;
    padding:6px 10px;
    border-radius:50%;
}

.navbar.scrolled {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    z-index: 9999;
    
}


/* text color change */
.navbar.scrolled .nav-links li a {
    color: black !important;
    
}

.navbar.scrolled .nav-left h2 {
    color: black;
}

/* HERO */

/* Button always on top */
.enquiry-btn {
  position: fixed;
  z-index: 999999;

}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  width: 100vw;   /* force full screen */
  margin-left: calc(-50vw + 50%);
}


/* videos */
.bg-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out;
}

.bg-video.active {
  opacity: 1;
}

/* dark overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
  z-index: 1;
}

/* text content */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: left;
  top: 40%;
  left: 100px;
  transform: translateY(-50%);
  
}
.hero-tag {
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 20px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-content h1 {
  font-size: 50px;
  z-index: -4;
}
.hero-content h1 span{
    color: #F2C200;
    position: relative;
    left: 260px;
    font-style: oblique;
}
.hero-content p{
    font-size: 25px;
}
/* From Uiverse.io by cssbuttons-io */ 
.button {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #4f4f4f;
  border-radius: 4px;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  font-size: 19px;
  cursor: pointer;
  color: white;
  z-index: 1;
  background-color: #F2C200;
}

.button:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: #F2C200;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button:hover {
  color: #F2C200;
  border: 1px solid #F2C200;
}

.button:hover:before {
  top: -35%;
  background-color: #fff;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button:hover:after {
  top: -45%;
  background-color: #fff;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.hero-left{
color:#fff;
position:relative;
z-index:2;
}

.hero-left h1{
font-size:70px;
font-weight:500;
line-height:1.1;
}

.contact-btn{
    position: absolute;
display:inline-flex;
align-items:center;
gap:10px;
margin-top:20px;
background:#fff;
color:#000;
padding:12px 20px;
border-radius:30px;
text-decoration:none;

}

.contact-btn span{
background:#ff6a00;
color:#fff;
padding:6px 10px;
border-radius:50%;
}


/* FORM */

.hero-form{
background:#fff;
padding:30px;
border-radius:15px;
width:350px;
position:relative;
z-index:2;
}

.hero-form h3{
text-align:center;
margin-bottom:20px;
}

.hero-form input,
.hero-form select,
.hero-form textarea{
width:100%;
padding:10px;
border:none;
border-bottom:1px solid #ccc;
margin-bottom:12px;
}

.form-row{
display:flex;
gap:10px;
}

.hero-form button{
width:100%;
background:#ff6a00;
color:#fff;
border:none;
padding:14px;
border-radius:25px;
font-weight:bold;
cursor:pointer;
}

/* Button */
.enquiry-btn {
    position: fixed;
    right: -40px;
    top: 40%;
    background: #F2C200;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    z-index: 99999;
    transform: rotate(270deg);

}

/* Form panel */
.enquiry-form {
    position: fixed;
    top: 80px;
    right: -350px;   /* hidden */
    width: 350px;
    height: fit-content;
    background: rgba(0,0,0,0.9);
    padding: 30px;
    color: white;
    transition: right 0.4s ease;  /* animation */
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 15px;
    backdrop-filter: blur(10px);
     z-index: 999999;
    
}
.enquiry-form h2{
    font-size: 20px;
    font-style:italic;
}

/* Active (show form) */
.enquiry-form.active {
    right: 0;
}

/* Inputs */
.enquiry-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
    padding: 10px;
    color: white;
    border-radius: 10px;
}

/* Submit */
.submit-btn {
    background: #F2C200;
    border: none;
    padding: 10px;
    color: white;
    cursor: pointer;
}

/* Close button */
.close-btn {
    align-self: flex-end;
    background: #F2C200;
    border: none;
    padding: 5px 20px;
    cursor: pointer;
    
   
}

/* about us */
/* About Layout */

.about {
  display: flex;
  gap: 0px;
  align-items: center;
  justify-content: space-between;
  height: fit-content;
  padding: 20px 4%;
  
}

/* Left content */
.about-text {
  flex: 1
}

.about-text h2, .left h1 {
  font-size: 15px;
  margin-bottom: 15px;
  background-color: #f8f8f8;
  border: 1px solid #2c2c2c;
  width: fit-content;
  border-radius: 50px;
  padding: 10px 20px ;
  backdrop-filter: blur(10px);
  opacity: 2px;
}
.about-text h2 i, .left i{
  font-size: 12px;
  margin-right: 5px;
}

.about-text p {
  margin-bottom: 15px;
  color: #2f3747;
  font-size: 25px;
}

.about-text ul {
  margin-bottom: 40px;
  list-style: none;
}


/* From Uiverse.io by alexroumi */ 
.about-btn {
 
 padding: 15px 25px;
 border: unset;
 border-radius: 15px;
 color: #F2C200;
 z-index: 1;
 position: relative;
 font-weight: 1000;
 font-size: 17px;
 -webkit-box-shadow: 4px 8px 19px -3px #F2C200;
 box-shadow: 4px 8px 19px -3px #F2C200;
 transition: all 250ms;
 overflow: hidden;
 text-decoration: none;

}

.about-btn::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 height: 100%;
 width: 0;
 border-radius: 15px;
 background-color: #F2C200;
 z-index: -1;
 -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 transition: all 250ms
}

.about-btn:hover {
 color: #e8e8e8;
}

.about-btn:hover::before {
 width: 100%;
}

/* Right stats */
.about-stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* 🔥 2 cards per row */
  gap: 20px;
  /* margin-right: 60px; */
}

/* Cards */
.stat-card {
  position: relative;
  background: #f8f8f8;
  padding:25px ;
  border-radius: 10px;
  transition: 0.3s;
}

.stat-card h3 {
  font-size: 28px;
  color: #2c2c2c;
  text-align:justify;
}
.stat-card h3, .stat-card p, .stat-card h5{
  display: flex;
  align-items: flex-end;
}

.stat-card p {
  margin-top: 5px;
  font-size: 14px;
  color: gray;
}
.stat-card i{
  font-size: 20px;
  position: absolute;
  right: 10px;
  border-radius: 10px;
  background-color: #f8f8f8;
  padding: 6px 0px;
  width: 40px;
  opacity: 0.5px;
  backdrop-filter: blur(10px);
  top: 10px;

  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

/* Hover effect */
.stat-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  
}

/* services */
/* GRID */
.services{
  padding: 20px 3%;
}
.service-heading{
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background-color: #ffffffe6;
  width: fit-content;
  margin: 40px 0px ;
  gap: 20px;
  

  
}
.service-heading h1{
  font-size: 25px;
}
.service-heading .line {
  width: 280px;
  height: 2px;
  background: black;
}
.services h1::before{
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  color: #000;
  left: 50%;
  bottom: -5px;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-auto-rows: 160px;
  gap: 15px;
  height: 50%;
}

/* CARD COMMON */
.card, .blog-card {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
}

/* IMAGE */
.card img, .blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  z-index: -1;
}

/* HEADING (BOTTOM FIRST) */
.card h3 {
  position: absolute;
  top: 50%;
  left: 30%;
  color: white;
  font-size: 50px;
  z-index: 999;
  text-transform: uppercase;
  /* transition: 0.4s; */
  
}

/* OVERLAY */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: 0.4s;
  z-index: 1;
}
.blog-card{
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.blog-card::before{
  content: "";
  position: absolute;
  inset: 0;
  transition: 0.4s;
  z-index: 1;
}

/* 🔥 HOVER EFFECT */
.card:hover img, .blog-card:hover img{
  transform: scale(1.1);
}

.card:hover::before {
  background: rgba(255,255,255,0.6);
}

/* TEXT MOVE CENTER */
.card:hover h3 {
 color: #2c2c2c;
 
  
}

/* GRID POSITIONS */

/* LEFT */
.c1 { grid-column: 1; grid-row: 1 / span 2; }
.c2 { grid-column: 1; grid-row: 3 / span 3; }

/* CENTER BIG */
.c4 {
  grid-column: 2;
  grid-row: 1 / span 2;
}

/* CENTER SMALL */
.c5 {
  grid-column: 2;
  grid-row: 3 / span 3;
}

/* RIGHT TALL */
.c6 {
  grid-column: 3;
  grid-row: 1 / span 5;
}

.products-services{
  padding: 20px 5%;
}
.product-heading span{
  font-size: 15px;
  color: #F2C200;
  font-weight: 700;
}
.product-heading h1{
  font-size: 30px;
  font-weight: 700;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.product-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.product-card{
  width: 400px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background-color: #f8f8f8;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  
}
.product-card:hover{
   transform: translateY(-6px);
}
.product-card img{
  width: 20%;
  margin-bottom: 20px;
}
.product-card h3{
  font-size: 30px;
}
.product-card p{
  font-size: 15px;
  color: gray;
}

/* portfolio */
.portfolio {
  text-align: center;
  padding: 50px 5%;
}

.filter-btn {
  position: relative;
  padding: 10px 20px;
  margin: 10px;
  border: none;
  color: #000;
  cursor: pointer;
  background-color: transparent;
  transition: 0.3s;
  text-transform: capitalize;
  font-size: 20px;
}
.filter-btn {
  background: none;
  border: none;
  font-size: 18px;
  margin: 10px;
  cursor: pointer;
  position: relative;
}

/* Hover underline */
.filter-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: orange;
  transition: 0.3s;
}

.filter-btn:hover::after {
  width: 100%;
}

/* Active (clicked) underline */
.filter-btn.active::after {
  width: 100%;
}

/* Gallery Grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  grid-auto-rows: 300px;
}

/* Image Box */
.item {
  position: relative;
  overflow: hidden;
  display: none;
  will-change: transform;
}

.item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s;
}

/* Hover Zoom Effect */
.item:hover img {
  transform: scale(1.1);
}

/* Overlay Effect */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s;
  font-size: 20px;
}

.item:hover .overlay {
  opacity: 1;
}

/* cards choosing */
.why-choose {
  display: flex;
  gap: 20px;
  padding: 60px;
  align-items: center;
}

/* LEFT */
.left {
  flex: 1;
}

.left h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.left ul {
  list-style: none;
  padding: 0;
}

.left ul li {
  margin: 15px 0;
  font-size: 18px;
}
.left ul li i{
  background-color: #efeeee;
  border-radius: 50%;
  border: 1px solid #2c2c2c;
  font-size: 12px;
  padding: 1px;
  width: 20px;
  transition: transform 1s all ease-in-out;
 
}
.left ul li:hover{
  color: #F2C200;
  transform: translateX(10px);
}

/* RIGHT */
.right {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* CARD */
.image-card {
  width: 500px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.image-card img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
}

/* process */
.process-section{
   padding: 60px 5%;
   background-color: #cccc;
}
.process{
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  height: fit-content;
  padding: 20px;
}


.process h2 {
  text-align: center;
  margin-bottom: 50px;
}

.step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  margin-bottom: 80px;
  flex-direction: row;
}

.step.reverse {
  flex-direction: row-reverse;
}

/* LEFT SIDE */
.image-side {
  position: relative;
  width: 50%;
}

/* BIG IMAGE */
.main-img {
  width: 80%;
  border-radius: 20px;
  height: 100%;
}

/* SMALL OVERLAY IMAGE */
.overlay-img {
  position: absolute;
  bottom: -40px;
  right: 30px;
  width: 60%;
  border-radius: 15px;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* RIGHT SIDE CONTENT */
.content {
  width: 45%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: 200px;
  padding: 20px;
}
.content span{
  background-color: #F2C200;
  color: white;
  padding: 10px;
  border-radius: 50%;
}

.content h3 {
  font-size: 24px;
  margin: 20px auto;
  
}

.content p {
  color: #555;
}

/* testiomals */

.review-section { 
    padding: 100px 0; 
    overflow: hidden; 

    width: 100%;

}
.review-container { 
    max-width: 1300px; 
    margin: 0 auto; 
    position: relative; 
}

.review-title { 
    text-align: right; 
    margin-bottom: 20px; 
    padding-right: 50px; 
}
.review-title h2 { 
    font-size: 38px; 
    color: #111; 
}

.frame { 
    position: relative; 
    display: flex; 
    align-items: flex-end; 
}

/* Left Side Image */
.photo-box { 
    width: 40%; 
    height: 450px; 
    position: relative; 
    z-index: 1; 
}
.photo-box img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    border-radius: 5px; 
}

/* Controls */
.controls { 
    position: absolute; 
    bottom: 20px; 
    left: 20px; 
    display: flex; 
    gap: 10px;
 }
.arrow { 
    width: 45px; 
    height: 45px; 
    background: #fff; 
    border: 1px solid #ddd; 
    cursor: pointer; 
    font-size: 25px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold;
    
}

/* Black Slider Window - Wide enough for 2 cards */
.slider-box {
    position: absolute;
    right: 50px;
    bottom: -100px;
    width: 70%; /* Overlaps roughly half the image */
    padding: 60px 40px;
    z-index: 2;
    overflow: hidden; /* Important for sliding */
}

.track { 
    display: flex;
     transition: 0.5s ease-in-out;
     /* gap: 20px; */
    }

/* Each card takes half the width of the black box */
.review-card {
    min-width: 52%; 
    height: 300px;
    padding: 0 20px;
    box-sizing: border-box;
    color: #fff;
    background: #1a1a1a;
    border-left: 20px solid #fff;
    border-top: 15px solid #fff;


}

.quote { 
    font-size: 50px; 
    color: #fff; 
    display: block; 
    margin-bottom: 10px; 
}
.review-card p { 
    font-size: 18px; 
    line-height: 1.6; 
    color: #ddd; 
    margin-bottom: 30px; 
}

.profile { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
}
.profile img { 
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
}
.user-meta strong { 
    font-size: 15px; 
}
.user-meta span { 
    font-size: 12px; 
    color: #888; 
}
/* cta */

.cta {
  background: url('../images/bedroom2.jpg') center/cover no-repeat;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 20px;
  margin: 40px;
}

/* DARK OVERLAY */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  border-radius: 20px;
}

/* CONTENT */
.cta-content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 2;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.cta-content p {
  margin-bottom: 20px;
}

/* BUTTONS */
.cta-buttons a {
  text-decoration: none;
  padding: 12px 20px;
  margin: 5px;
  border-radius: 8px;
  display: inline-block;
}

/* PRIMARY */
.btn-primary {
  background: #ff6600;
  color: white;
}

/* SECONDARY */
.btn-secondary {
  border: 1px solid white;
  color: white;
}

/* HOVER */
.btn-primary:hover {
  background: #e65c00;
}

.btn-secondary:hover {
  background: white;
  color: black;
}
/* footer */

.footer{

  width: 100vw;   /* force full screen */
  margin-left: calc(-50vw + 50%);
}

.site-footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    
    
}

.footer-card {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    
}
.footer-card span{
  font-size: 20px;
}

/* Purple Top Bar */
.footer-top{
    background-color: #6351ce;
    padding: 20px 0;
    width: 100%;
}


.footer-top .footer-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* From Uiverse.io by wilsondesouza */ 
ul {
  list-style: none;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  /* color: #4d4d4d; */
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content .linkedin{
  color: #0274b3;
}
.example-2 .icon-content .face{
  color: #3b5998;
}
.example-2 .icon-content .insta{
  color: #c135b4;
}
.example-2 .icon-content .youtube{
  color: #ff0000;
}

.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="linkedin"] .filled,
.example-2 .icon-content a[data-social="linkedin"] ~ .tooltip {
  background-color: #0274b3;
}

.example-2 .icon-content a[data-social="facebook"] .filled,
.example-2 .icon-content a[data-social="facebook"] ~ .tooltip {
  background-color: #3b5998;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}


/* Main Dark Footer */
.footer-main {
    background-color: #1c2331;
    padding: 60px 0;
    
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.cols-img{
  height: fit-content;
  
}
.col-image{
  width: 200px;
  margin-bottom: 20px;
  border-radius: 100%;

}
.col-image img{
  width: 100%;
  height: 70px;
  object-fit: cover;
  
}
.underline {
    width: 60px;
    height: 2px;
    background-color: #F2C200;
    margin-bottom: 25px;
}

.col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ced4da;
    flex-wrap: wrap;
    width: 300px;
}


/* Links and Lists */
.links, .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links li, .contact-info li {
    margin-bottom: 12px;
    font-size: 14px;
}

.links a {
    color: #ced4da;
    text-decoration: none;
    transition: 0.3s;
}

.links a:hover {
    color: white;
    text-decoration: underline;
}

.contact-info span {
    margin-right: 10px;
    color: #ced4da;
}


/* links for every pages */
.breadcrumb {
    font-size: 17px;
    margin: 0px 20px;
    color: #777;
    background: white;
}

.breadcrumb a {
    text-decoration: none;
    color: #555;
}

.breadcrumb a:hover {
    color: #000;
}
/* services page */
.services-section{
  padding: 0px 0px;
}

:root {
    --light-green: #d9e6b4; /* The signature light green from the image */
    --dark-text: #1a1a1a;
    --navy-btn: #0a3d4a;
}

.main-services {
    width: 110%;
    min-height: 35vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #fff;
}

.services-hero-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Left side with the green background and text */
.services-content {
    flex: 1.3;
    background-color: var(--light-green);
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 0;
   border-top-right-radius: 200px;
}

.brand-name {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.services-content h1 {
    font-size: 72px;
    font-family: 'Playfair Display', serif; /* Use a Serif font for that luxury look */
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
    letter-spacing:3px;
    position: relative;
    z-index: 3;
}

.services-content p {
    max-width: 450px;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #444;
}


/* From Uiverse.io by vikiWayne */ 
.services-btn {
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  color: #2c9caf;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid #2c9caf;
  text-decoration: none;
  width: fit-content;
}

.services-btn:hover {
  color: #ffffff;
  transform: scale(1.1);
  outline: 2px solid #70bdca;
  box-shadow: 4px 5px 17px -4px #268391;
}

.services-btn::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #2c9caf;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}

.services-btn:hover::before {
  width: 250%;
}


/* Right side with the image */
.hero-visual {
    flex: 1;
    position: relative;
    padding: 50px;
}

.image-mask {
    width: 150%; /* Pushes image left to overlap the green */
    height: 450px;
    margin-left: -40%; 
    border-radius: 0px 0 0 200px; /* Curves the image to match the text area */
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s all ease-in-out;
}

.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-mask img:hover{
  transform: scale(1.08);
  
}

/* The small arch detail at the bottom left */
.decorative-arch {
    position: absolute;
    bottom: -50px;
    left:-20%;
    width: 250px;
    height: 300px;
    border-radius: 150px 150px 0 0;
    overflow: hidden;
    border: 10px solid #fff;
    z-index: 3;
}

.decorative-arch img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-services { flex-direction: column; }
    .services-content { 
      border-radius: 0 0 200px 0;
      padding: 60px 30px; 
    }
    .services-content h1 { font-size: 40px; }
    .image-mask { width: 100%; margin-left: 0; border-radius: 0; }
    .decorative-arch { display: none; }
}

.service-header h3{
  text-align: center;
  margin-bottom: 30px;
}
.service-wrapper {
    max-width: 1200px;
    margin: 0px auto;
    padding: 20px;
}
.service-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e0eaf3;
    border-radius: 40px; 
    margin-bottom: 40px;
    overflow: hidden;
    padding: 20px 40px;
    gap: 40px;
}

/* Alternating Layout */
.service-card.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-number {
    display: inline-block;
    background: #e1f0ff;
    color: #F2C200;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
}

.service-text h2 {
    font-size: 28px;
    color: #222;
    margin: 0 0 10px 0;
}

.accent-line {
    width: 50px;
    height: 3px;
    background-color: #F2C200;
    margin-bottom: 20px;
}

.service-text p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 25px; 
}
.service-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e0eaf3;
    border-radius: 40px; 
    margin-bottom: 40px;
    overflow: hidden;
    padding: 40px;
    gap: 40px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.service-image {
    flex: 1;
    overflow: hidden;
    border-radius: 25px;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}



.service-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.1);
    
}


.service-card:hover .service-image img {
    transform: scale(1.08);
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-card, .service-card.reverse {
        flex-direction: column;
        padding: 30px;
        border-radius: 30px;
    }
    
    .service-image img {
        height: 250px;
      
    }

    .service-text h2 {
        font-size: 22px;
    }
}

/* advanced services */
.services-gallery {
  display: flex;
  height: 350px;
  overflow: hidden;
}

/* CARD */
.services-card-image {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* ADD IMAGES */
.services-card-image:nth-child(1){ background-image: url('../images/3D-interior.jpg'); }
.services-card-image:nth-child(2){ background-image: url('../images/space-planing-interior.jpg'); }
.services-card-image:nth-child(3){ background-image: url('../images/lighting-interior.jpg'); }
.services-card-image:nth-child(4){ background-image: url('../images/false-celling.jpg'); }
.services-card-image:nth-child(5){ background-image: url('../images/wall-decore.jpg'); }
.services-card-image:nth-child(6){ background-image: url('../images/flooring.jpg'); }
.services-card-image:nth-child(7){ background-image: url('../images/renovation-interior.jpg'); }

/* BLUE OVERLAY */
.services-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 150, 0.6);
  transition: 0.5s;
}

/* TEXT */
.services-card-image h3 {
  position: relative;
  color: white;
  transform: rotate(-90deg); 
  transition: 0.5s;
  z-index: 2;
  top: 40px;
}
.services-card-image:hover h3{
  top: 0px;
}
.services-card-image p {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s;
  color: #fff;
  text-align: center;
  padding: 10px;

}

.services-card-image:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* 🔥 HOVER EFFECT */
.services-gallery:hover .services-card-image {
  flex: 1;
}

.services-gallery .services-card-image:hover {
  flex: 3; /* expand */
}

/* TEXT CHANGE ON HOVER */
.services-gallery .services-card-image:hover h3 {
  transform: rotate(0); 
  font-size: 22px;
}


.services-gallery .services-card-image:hover::before {
  background: rgba(0, 60, 150, 0.3);
}

/* commercial services */
.commercial-container{
  padding: 60px 0px;
}
.commercial-heading h2{
  font-size: 30px;
}
.commercial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 60px;
}

/* CARD */
.com-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.com-card img {
  width: 100%;
  height: 300px;
  /* object-fit: cover; */
  transition: 0.5s;
}

/* OVERLAY */
.overlay {
  position: absolute;
  /* inset: 0; */
  background: rgba(0,0,0,0.6);
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  opacity: 0;
  transition: 0.5s;
}

/* TEXT */
.overlay h3 {
  margin-bottom: 10px;
}

.overlay p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* BUTTON */
.overlay a {
  padding: 10px;
  background: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
}

/* HOVER EFFECT 🔥 */
.com-card:hover img {
  transform: scale(1.1);
}

.com-card:hover .overlay {
  opacity: 1;
}

.btn-text{
  text-align: end;
  margin-right: 40px;
  margin-top: 20px;
}
.class-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #F2C200;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    position: relative;
    transition: 0.3s;
    /* display: flex;
    align-items: flex-end;
    justify-content: flex-end; */
    
}

.class-btn::after {
    content: " →";
    transition: 0.3s;
}

.class-btn:hover::after {
    margin-left: 5px;
}

/* contact right side icons */

.contact-panel {
  position: fixed;
  right: 0;
  top: 80%;
  transform: translateY(-50%);
  z-index: 999;
  background-color: #F2C200;
}

/* ITEMS */
.panel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  overflow: hidden;
  transition: 0.4s;
  padding: 20px;
  
  


}

/* ICON */
.panel-item i {
  width: 50px;
  text-align: center;
  font-size: 16px;
  background-color: #fff;
  padding: 10px;
  border-radius: 50px;
  transform: transform all 0.2s ease;

}

/* HOVER EFFECT 🔥 */
.panel-item  i:hover{
 opacity: 1;
 transform: scale(1.1);
 /* color: #fff; */
 
}


/* COLORS */
.panel-item:nth-child(1) {
  color: #007bff;
}
.panel-item:nth-child(2) {
  color: #25D366;
}
.panel-item:nth-child(3) {
  color: #ff4d4d;
}

/* contact page */
.contact-container{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10% 0% 5% 5%;
  gap: 40px;
  height: fit-content;
  flex-wrap: wrap;
 
}
.contact-form{
  width: 500px;
  height: fit-content;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.contact-form input, textarea{
  width: 100%;
  margin: 10px auto;
  padding: 5px;
  font-size: 13px;
  outline: none;
  border: 1px solid gray;

}
.contact-form label{
  font-size: 15px;

}
.contact-form textarea{
  height: 100px;
}

.contact-item{
  width: 500px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  height: 140px;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
}
.contact-item:nth-child(1){
  height: 210px;
}
.contact-item h5{
  font-size: 18px;
  
}
.contact-item a{
  text-decoration: none;
  color: #000;
  margin-top: 20px;
}
.contact-item h5 i{
  color: #F2C200;
}


.animation-map{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 10%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 20px;
  
}
.animation-image{
  width: 400px;
  
}
.animation-image img{
  width: 100%;
  
}
.contact-iframe{
   width: 500px;
   border: 1px solid #000;
   height: 300px;
}
.contact-iframe iframe{
  width: 100%;
  height: 100%;
}

/* living page */
.living-hero, .kitchen-hero, .bedroom-hero, .dinning-hero, .pooja-hero, .commerial-hero,
.home-interior-hero, .turnkey-interior-hero, .corporate-interior-hero, .hospital-interior-hero,
.Minimalist-interior-hero, .residential-interior-hero, .villa-interior-hero, .restaurant-interior-hero,
.retail-interior-hero, .college-interior-hero {
    height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 100vw;
    text-align: center;
    width: 100vw; 
    margin-left: calc(-50vw + 50%);
     background-size: cover;
    background-position: cover;
    background-repeat: no-repeat;
    inset: 0;
    
}
.home-interior-hero{
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url(../images/home-img.avif) ;
}

.turnkey-interior-hero{
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url(../images/turnkey-interior.jpg) ; 
}   
.corporate-interior-hero{
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5)), url(../images/office-interior.jpg) 
}
.hospital-interior-hero{
     background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/hospital-interior.jpg) ;
}
.Minimalist-interior-hero{
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/mimalist.avif) ;
}
.residential-interior-hero{
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/living3.jpg) ;
}
.villa-interior-hero{
     background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/villa-interior.jpg) ;
    
}
.retail-interior-hero{
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/retails-inteior.jpg) ;
}
.restaurant-interior-hero{
background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/restaurant.jpg) ;

}
.college-interior-hero{
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)), url(../images/college.jpg) ;
}
.living-hero{
  background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/living2.jpg) ;
}
.kitchen-hero{
  background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/kichen_interior.jpg) ;
}
.bedroom-hero{
    background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/bedroom2.jpg) ;
}
.dinning-hero{
   background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/diining1.jpg) ;
}

         
.pooja-hero{
  background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/FF\ -\ POOJA\ ROOM\ 1.jpg.jpeg) ;
}
.commerial-hero{
     background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/hospital-interior.jpg) ;
}
.blog-section{
  background-image:linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url(../images/Luxury-living-room2.jpg) ;
}
/* Content */
.living-hero-content h1, .kitchen-hero-content h1{
    font-size: 48px;
    margin-bottom: 15px;
}

.living-hero-content p, .kitchen-hero-content p{
    font-size: 18px;
    margin-bottom: 20px;
}



/* Button */
.living-hero-btn {
    padding: 10px 25px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.living-hero-btn:hover {
    background: #ddd;
}

.living-container{
  padding: 0px 5%;
}
.living-content {
    width: 100%;
    margin: auto;
    padding: 20px;
    line-height: 1.7;
    color: #444;
    
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #000;
}

.content h3 {
    margin-top: 30px;
    font-size: 22px;
    color: #000;
}

.features {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.features li {
    margin: 8px 0;
}

.living-wrapper {
    width: 100%;
    padding: 40px 5%;
}

/* Card Layout */
.living-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    height: 400px;
}
.living-card.reverse{
  flex-direction: row-reverse;
}

/* Left Content */
.card-text {
    flex: 1;
}

.card-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.card-text p {
    color: #555;
    line-height: 1.6;
}

/* Right Images */
.card-img {
    flex: 1;
    position: relative;
    height: 300px;
}

/* Image styles */
.card-img img {
    width: 300px;
    height: 300px;
    /* object-fit: cover; */
    border-radius: 10px;
    position: absolute;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Overlapping effect */
.img1 {
    top: 50px;
    left: 0;
    z-index: 1;
}

.img2 {
    top: -50px;
    left: 200px;
}


/* dining room */
.dining-section {
    padding: 0px 5%;
}

/* Card Layout */
.dining-card {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

/* Image */
.dining-img img {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Content Box */
.dining-content-box {
    background: #1f5d2b;
    color: #fff;
    padding: 30px;
    width: 400px;
    margin-left: -30px; /* overlap effect */
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Text */
.dining-content-box h3 {
    margin-bottom: 10px;
}

.dining-content-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Button */
.dining-content-box a {
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid #fff;
}

/* Alternate layout */
.dining-card:nth-child(even) {
    flex-direction: row-reverse;
}

.dining-card:nth-child(even) .dining-content-box {
    margin-left: 0;
    margin-right: -20px;
}

/* Responsive */
@media (max-width: 768px) {
    .dining-card {
        flex-direction: column;
    }

    .dining-content-box {
        margin: 20px 0 0;
        width: 100%;
    }

    .dining-img img {
        width: 100%;
    }
}

/* get a quoat */
.contact-section{
   display: flex;
    width: 100%;
    margin-bottom: 20px;
    margin: auto;
    height: 580px;
    padding: 0px 5%;
    border-radius: 20px;
}
.contact-image {
    width: 60%;
    
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}
.interior-form{
    width: 40%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 40px;
    text-align: center;
    
}
.interior-form h3{
  margin-bottom: 10px;
}
.interior-form input, .interior-form textarea{
   width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    border: none;
    outline: none;
    font-size: 13px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}
.interior-form button{
    width: 100%;
    padding: 10px;
    background: #F2C200;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* full interior services page */
.finising-interior{
  padding-top: 120px;
}

.simple-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px 5%;
}

/* Card */
.simple-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 20px;
    transition: 0.3s;
}

/* Image */
.simple-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Heading */
.simple-card h3 {
    margin: 15px;
    color: #b68b2c; /* dark golden */
}

/* Text */
.simple-card p {
    margin: 0 15px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Hover */
.simple-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .simple-cards {
        grid-template-columns: 1fr;
    }
}

/* copyright */
.copyright{
    text-align: center;
    background-color:#000;
    color: #fff;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100vw;
    margin-top: 0px !important;width:
     100vw;   /* force full screen */
  margin-left: calc(-50vw + 50%);
}
.copyright a{
    color: #ffff;
    text-decoration: none;
    text-transform: uppercase;

}


/* about page */
.about-section{
  padding: 110px 5%;
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.8fr;
  grid-gap: 30px;
  align-items: start;
} 
.about-title-block{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 95%;
  max-width: 300px;
}
.main-headline{
  font-size: 10rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -3px;
}
.intro-heading, .sub-headline{
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.intro-body, .philosophy-body{
    font-size: 0.95rem;
    color: #444;
    max-width: 280px;
}
.about-hero-image{
  width: 600px;

}
.rounded-image{
  margin-top: 160px;
  margin-left: -10px;
  width: 100%;
  height: 350px;
  object-fit: cover; /* Important to keep images from distorting */
  border-radius: 20px; /* A soft, modern corner, like the example */
  display: block;
}
.philosophy-block{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 400px;
  height: 95%;
}
.philosophy-image-wrapper{
  width: 300px;
  height: 250px;
}
.philosophy-image-wrapper img{
  width: 100%;
  height: 100%;
  border-radius: 20px;
}


.ceo-section {
    padding: 60px 5%;
    background: #f5f5f5;
}

.ceo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    height: fit-content;
    padding: 20px;
    border-radius: 20px;
}

/* LEFT TEXT */
.ceo-text h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 5px;
    font-weight: 600;
}

.ceo-text span {
    color: #F2C200; /* green highlight */
}

.ceo-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}
.ceo-text h6{
  font-size: 15px;
  color: #F2C200;
  text-transform: uppercase;
  font-weight: 700;
}

.ceo-text h6::after{
  position: relative;

  color: #F2C200;
  width: 60px;
  height: 30px;
}

/* BUTTONS */
.ceo-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.ceo-btn {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

 
.outline {
  border: none;
  display: block;
  position: relative;
  padding: 0.7em 1.4em;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: #F2C200;
  z-index: 1;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
}

.outline span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  border: 4px solid #F2C200;
}

.outline span::before {
  content: "";
  display: block;
  position: absolute;
  width: 8%;
  height: 500%;
  /* background: var(--lightgray); */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.5s;
}

.outline:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: #F2C200;
}

.outline:hover {
  color: white;
}

.outline:active span::before {
  background: #F2C200;
}
/* RIGHT IMAGE */
.ceo-image, .profile-ceo-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.ceo-image img {
    width: 320px;
    position: relative;
    z-index: 2;
}

/* team card */
.team-section {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 50px 5%;
    justify-content: center;
}

/* CARD */
.team-card {
    position: relative;
    width: 400px;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

/* Image */
.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dull overlay */
.team-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* Bottom Info */
.card-info {
    position: absolute;
    bottom: 8px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-shadow:  rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.card-info h3 {
    margin: 0;
}

.card-info span {
    font-size: 15px;
    background-color: #eee;
    padding: 5px 12px;
    color: #000;
}

/* Button */
.card-info button {
    background: transparent;
    /* border: 1px solid #fff; */
    color: #fff;
    padding: 5px 12px;
    cursor: pointer;
    border: none;
    font-size: 15px;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
   
}


/* Model Active */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.2);
    justify-content: center;
    align-items: center;
    
}

/* Show modal */
.modal.active {
    display: flex;
}

/* Box */
.modal-box {
    background: #fff;
    width: 900px;
    min-height: 350px;
    border-radius: 10px;
    position: relative;
    top: 50px;
    overflow: hidden;
    display: flex;
}
/* Close */
.close {
  position: relative;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 35px;
    cursor: pointer;
    
}
.modal-content {
    display: flex;
    flex-direction: row; /* FORCE SIDE BY SIDE */
    width: 1000px;
    /* background: #eee; */
    height: 500px;
}

/* LEFT IMAGE */
.modal-img {
    flex: 1; /* fixed 40% */
    width: 40px;
}

.modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

/* RIGHT TEXT */
.modal-text {
    flex: 1;
    padding: 60px 20px;
    width: 600px;
    
}

.modal-text h2 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 2rem;
}

.modal-text p {
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* ceo-container */
.ceo-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 400px;
}
.ceo-text b{
  font-size: 30px;
  margin: 30px auto;
}
.profile-content{
  margin: 4% 10%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px;
  
}
.profile-content h2{
    font-weight: 700;
}
.vm-content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
}
.vm-box {
  padding: 25px;
  border-radius: 8px;
  background: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.vm-box h2{
    margin-bottom: 10px;
    color: #333;

}
.vm-box p{
    color: gray;
    font-size: 18px;
line-height: 1.6;
}
.profile-about-stats{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;


}
.profile-card{
  width: 350px;
  height: 200px;
  background-color: #fff;
}

.client-approach {
    padding: 60px 5%;
    background: #f9f9f9;
    text-align: center;
}

/* Title */
.section-title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

/* Grid */
.approach-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.approach-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* Hover */
.approach-card:hover {
    transform: translateY(-5px);
}

/* Heading */
.approach-card h3 {
    color: #b68b2c; /* golden */
    margin-bottom: 10px;
}

/* Text */
.approach-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.blog-section{
   height: 110vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: left;
    width: 100vw;   /* force full screen */
    margin-left: calc(-50vw + 50%);
}

.blog-content {
  position: relative;
  color: #fff;
  padding: 20px 8%;
  width: 1000px;
}

.blog-content h1 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;;
}

.blog-content p {
  font-size: 1rem;
  line-height: 1.6;
}
.card-img-top {
  height: 180px;
  object-fit: cover;
}
.d-inline{
  text-decoration: none;
  font-size: 15px;
  color: #000;
  padding: 5px 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border: 1px solid #ccc;
  border-radius: 50px;

}

.fliter-btn button{
  width: 100px;
}
.linkContainer {
  margin-left: 20px;
}
.linkContainer a{
  display: block;
  text-decoration: none;
  margin-top: 10px;
  color: #000;
}

.blog-card img {
    pointer-events: none;
}

.blogContainer{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 100vw;
    text-align: center;
    margin-left: calc(-50vw + 50%);

}
.linkContainer a{
  position: relative;
  cursor: pointer;
  
}
/* .linkContainer a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  transition: all 0.4s ease;
  transform: translate(-50%);
  height: 2px;
  background: #F2C200;
  
} */
.linkContainer a:hover{
  transition: all 0.5s ease-in-out;
  transform: translateX(20%);
  color: #F2C200;
}
.details-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.details-content h1 {
    color: #fff;
    font-size: 36px;
}

.blog-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content-box {
   width: 100%;
    max-width: 850px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 30px;
}

.main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

#content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 24px 0 10px;
    color: #222;
}

#content p {
    font-size: 16px;
    line-height: 1.8;
    color: #f4f3f3;
    margin-bottom: 16px;
}
.seo-content h1{
  margin-top: 30px;
  margin-bottom: 0px;
}
.seo-content span{
  font-size: 18px;
  color: #ccc9c9;
  font-weight: 700;
}
.seo-content p{
  font-size: 20px;
}

/* Container */
.lr-container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

.lr-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.lr-highlight {
  font-size: 18px;
  font-weight: 500;
  color: #444;
  margin-bottom: 15px;
}

/* Bottom Content Section */
.lr-content {
  padding: 0px 20px;
  background: #ffffff;
}

/* Headings */
.lr-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #222;
  margin-bottom: 12px;
  position: relative;
}

.lr-content h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #c19a6b;
  position: absolute;
  left: 0;
  bottom: -5px;
}

/* Paragraph */
.lr-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 15px;
}

/* List Styling */
.lr-list {
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 20px;
}

.lr-list li {
  list-style: none;
  background: #f7f7f7;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-left: 4px solid #c19a6b;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .lr-intro h1 {
    font-size: 26px;
  }

  .lr-content h2 {
    font-size: 20px;
  }

  .lr-highlight {
    font-size: 16px;
  }
}