/* ================= CTA SECTION CSS ================= */

.cta-section {
  background: #111;
  padding: 80px 0;
  color: #fff;
}

/* Equal Height Boxes */
.cta-row {
  display: flex;
  align-items: stretch;
}

.cta-box {
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.25);
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
}

.cta-box:hover {
  border-color: #d4af37;
  transform: translateY(-3px);
}

/* Right Box Gradient */
.cta-box-gold {
  background: linear-gradient(135deg, #1a1a1a, #2a1f0a);
}

/* Text Styles */
.cta-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-subtitle {
  color: #d4af37;
  font-size: 16px;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Inputs */
.cta-input {
  background: transparent !important;
  border: 1px solid #444;
  color: #fff !important;
  border-radius: 0;
  padding: 12px;
}

.cta-input:focus {
  border-color: #d4af37;
  box-shadow: none;
}

.cta-input::placeholder {
  color: #777;
}

/* Buttons */
.cta-btn {
  background: #d4af37;
  color: #000;
  font-weight: 600;
  padding: 12px;
  border-radius: 0;
  border: none;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background: #b8962e;
  color: #000;
}

.cta-btn-outline {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-weight: 600;
  padding: 12px;
  border-radius: 0;
  letter-spacing: 1px;
}

.cta-btn-outline:hover {
  background: #d4af37;
  color: #000;
}

/* Responsive Fix */
@media (max-width: 991px) {
  .cta-row {
    display: block;
  }
}


/*  blogs css */
.read-link {
  color: orange;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

.read-link i {
  margin-left: 6px;
  transition: 0.3s ease;
}

.read-link:hover i {
  transform: translateX(8px); /* icon right move */
}


/*  blogs css end */

/* TESTIMONIAL  */
/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
  background: #0b0b0b;
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
}

/* Testimonial Box */
.testimonial-item {
  max-width: 800px;
  margin: auto;
}

/* Quote Icon */
.quote-icon {
  font-size: 70px;
  color: #d4af37;
  /* margin-bottom: 20px; */
  font-family: serif;
}

/* Text */
.testimonial-text {
  font-size: 22px;
  line-height: 1.7;
  color: #ddd;
  font-style: italic;
  margin-bottom: 30px;
}

/* Name */
.client-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Designation */
.client-designation {
  font-size: 13px;
  letter-spacing: 2px;
  color: #d4af37;
}

/* ===== CUSTOM OWL NAV BUTTONS ===== */
.ot-testimonials-slider-s1 .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.ot-testimonials-slider-s1 .owl-nav button {
  background: transparent !important;
  border: 1px solid #333 !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff !important;
  font-size: 16px;
  pointer-events: all;
  transition: 0.3s;
}

.ot-testimonials-slider-s1 .owl-nav button:hover {
  border-color: #d4af37 !important;
  color: #d4af37 !important;
  transform: scale(1.1);
}

/* Hide Default Dots */
.ot-testimonials-slider-s1 .owl-dots {
  display: none;
}

/* TESTIMONIAL  */

/* about us */
.italic {
    font-style: italic;
}

.img-box {
    display: inline-block;
    overflow: hidden; /* zoom ke time image bahar na jaye */
    border: 1px solid #ccc; /* 1px grey border */
}

.img-box img {
    width: 100%;
    transition: transform 0.3s ease; /* smooth zoom */
}

.img-box:hover img {
    transform: scale(1.02); /* 2% zoom effect */
}

/* about us end */


/* black and white img */
.bw-img img {
    width: 100%;
    transition: all 0.4s ease;
    filter: grayscale(100%); /* black & white */
}

.bw-img:hover img {
    filter: grayscale(0%); /* color on hover */
    transform: scale(1.03); /* slight zoom optional */
}

/* black and white img end  */


/* 1 */
/* SECTION */
.award-section{
    background: #000;
    padding: 25px 0;
}

/* FLEX ROW */
.award-row{
    display: flex;
    align-items: center;
    justify-content: space-between; /* SAME GAP AS IMAGE */
    gap: 30px;
}

/* ITEM */
.award-item{
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    white-space: nowrap;
}

/* ICON */
.award-icon{
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #c9a24a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a24a;
    font-size: 20px;
    transition: 0.3s ease;
}

/* TEXT */
.award-text h6{
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    color: #fff;
}

.award-text span{
    font-size: 11px;
    letter-spacing: 1px;
    color: #fff;
}

/* HOVER */
.award-item:hover .award-icon{
    background: #c9a24a;
    color: #111;
    transform: scale(1.08);
}

/* RESPONSIVE */
@media(max-width: 991px){
    .award-row{
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

/* 1 */

/*  Selected Works */
.luxury-card{
    max-width: 350px;
    margin: auto;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.luxury-img{
    position: relative;
}

.luxury-img img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: 0.6s ease;
}

/* dark gradient overlay */
.luxury-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.05));
}

/* bottom text on image */
.luxury-text{
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #fff;
}

.luxury-text h5{
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.luxury-text p{
    font-size: 14px;
    margin: 6px 0 0;
    opacity: 0.8;
}

/* hover effect */
.luxury-card:hover img{
    transform: scale(1.06);
}

/* Selected Works */

/* The Journey */
.journey-section{
    background: #111;
    color: #fff;
    padding: 80px 0;
}

.journey-subtitle{
    color: #c9a24a;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 10px;
}

.journey-title{
    font-size: 48px;
    font-weight: 600;
    /* font-family: "Playfair Display", serif; */
}

/* box */
.journey-box{
    padding: 20px 10px;
}

/* icon circle */
.journey-icon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1.5px solid #c9a24a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #c9a24a;
    font-size: 24px;
    transition: 0.4s ease;
}

/* title */
.journey-box h5{
    font-size: 20px;
    margin-bottom: 12px;
}

/* text */
.journey-box p{
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    max-width: 240px;
    margin: auto;
}

/* hover effect */
.journey-box:hover .journey-icon{
    background: #c9a24a;
    color: #111;
    transform: scale(1.08);
}

/*  The Journey */

/*  css  */

.bg-orange-text {
    color: #d9a520 !important;
} 

/* 
.bg-orangebtn {
    background-color: #d9a520;
} */


/*  */
.compare-section{
    background: radial-gradient(circle at top, #1a1a1a, #0b0b0b);
    color: #fff;
    padding: 80px 0;
}

/* title */
.compare-title{
    font-size: 52px;
    font-family: "Playfair Display", serif;
    font-weight: 600;
}

.compare-title span{
    /* color: #d12c2c;  */
    font-style: italic;
}

/* description */
.compare-desc{
    max-width: 750px;
    margin: 20px auto 0;
    color: #aaa;
    font-size: 16px;
    line-height: 1.7;
}

/* boxes */
.compare-box{
    height: 100%;
    padding: 35px;
    border-radius: 4px;
    text-align: left;
    transition: 0.4s ease;
}

/* left box */
.left-box{
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
}

.left-box h4{
    color: #b5b5b5;
}

/* right box */
.right-box{
    border: 1px solid rgba(201,162,74,0.4);
    background: linear-gradient(135deg, rgba(201,162,74,0.08), rgba(0,0,0,0.2));
    position: relative;
}

.right-box h4{
    color: #fff;
}

/* list style */
.compare-box ul{
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

.compare-box li{
    margin-bottom: 14px;
    font-size: 15px;
    color: #ccc;
    position: relative;
    padding-left: 26px;
}

/* cross icon left */
.left-box li::before{
    content: "✕";
    color: #d12c2c;
    position: absolute;
    left: 0;
    top: 0;
}

/* check icon right */
.right-box li::before{
    content: "✓";
    color: #c9a24a;
    position: absolute;
    left: 0;
    top: 0;
}

/* hover effect */
.compare-box:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/*  */



.hero-banner{
    position: relative;
    min-height: 100vh;   /* height fix */
   /* background: url("../images/comm/slider1.png") center center/cover no-repeat;*/
    display: flex;
    align-items: center;
}

/* overlay */
.hero-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.9));
    z-index: 1;
}

/* content */
.hero-content{
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* subtitle */
.hero-subtitle{
    color: #c9a24a;
    letter-spacing: 4px;
    font-size: 18px;
    margin-bottom: 15px;
}

/* heading */
.hero-title{
    font-size: 80px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    line-height: 1.2;
}

/* highlight word */
.hero-title span{
    color: #c9a24a;
    font-style: italic;
}

/* paragraph fix */
.hero-desc{
    margin-top: 20px;
    font-size: 17px;
    color: #e0e0e0;
    line-height: 1.7;
    max-width: 700px;      /* text width fix */
    margin-left: auto;
    margin-right: auto;
}



/* responsive fix */
@media(max-width: 768px){
    .hero-title{
        font-size: 40px;
    }
    .hero-desc{
        font-size: 15px;
    }
    
    .hero-banner {
        min-height: 38vh;
    }
    .hero-subtitle {
    font-size: 12px;
}
}



/* Header */
/* header always visible */
#site-header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

/* header layout */
.header-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background: rgba(0,0,0,0.6); /* mobile visible */
}

/* logo responsive */
.logo img{
    height: 50px;
    max-width: 100%;
}

/* button responsive */
.header-btn{
    display: block !important; /* force show */
}

.btn-gold{
    padding: 10px 22px;
    border: 2px solid #c9a24a;
    color: #c9a24a;
    text-decoration: none;
    font-size: 13px;
}

/* mobile fix */
@media(max-width: 768px){
    .header-row{
        padding: 8px 15px;
    }

    .logo img{
        height: 40px;
    }

    .btn-gold{
        font-size: 12px;
        padding: 7px 14px;
    }
}


/* Header end  */

.owl-nav i {
   line-height: 2; 
}


.stroke {
  position: relative;
  display: inline-block;
}

.stroke::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;

  width: 100%;
  height: 12px;

  background-image: url("../images/line/1.png");
  background-repeat: no-repeat;
  background-size: 100% 100%; /* 👈 THIS IS THE FIX */
}

