/* GLOBAL */
/* body {
   font-family: 'Poppins', sans-serif;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;

   margin: 0;
  padding: 0;
}
 */



html,
body{
   font-family: 'Poppins', sans-serif;
    overflow-x:hidden;
    width:100%;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


/* HEADINGS (LUXURY LOOK) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;

   margin: 0;
  padding: 0;
}



.about-hero{
    width:100%;
    overflow:hidden;
}

.about-hero .content{
    width:100%;
    max-width:900px;
    margin:auto;
    padding:20px;
}



.about-section img,
.exp-card img{
    width:100%;
    max-width:100%;
    display:block;
}

@media(max-width:768px){

    .container{
        padding-left:15px !important;
        padding-right:15px !important;
    }

    .about-hero h1{
        font-size:30px;
    }

    .about-hero p{
        font-size:16px;
    }
}




/* HERO */
.about-hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.about-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        135deg,
        rgba(0,0,0,.75),
        rgba(0,0,0,.45)
    );
}

.about-hero .content{
    position: relative;
    z-index: 2;
    max-width: 950px;
    text-align: center;
    padding: 40px;
}

.hero-subtitle{
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    color: #f4c542;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-hero h1{
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.about-hero p{
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,.92);
    max-width: 750px;
    margin: auto;
}

.hero-buttons{
    margin-top: 35px;
}

.btn-gold{
    background: linear-gradient(
        135deg,
        #d4af37,
        #f4c542
    );
    color: #000;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s ease;
    box-shadow: 0 15px 35px rgba(212,175,55,.35);
}

.btn-gold:hover{
    transform: translateY(-5px);
    color: #000;
}

@media(max-width:1200px){

    .about-hero h1{
        font-size: 34px;
    }
}

@media(max-width:992px){

    .about-hero{
        min-height: 100vh;
    }

    .about-hero h1{
        font-size: 34px;
    }

    .about-hero p{
        font-size: 18px;
    }
}

@media(max-width:768px){

    .about-hero{
        min-height: 100vh;
    }

    .about-hero .content{
        padding: 20px;
    }

    .about-hero h1{
        font-size: 30px;
    }

    .about-hero p{
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-subtitle{
        font-size: 11px;
        letter-spacing: 2px;
    }

    .btn-gold{
        width: 100%;
        max-width: 260px;
    }
}


/* OUR STORY */

.about-section{
    padding:100px 0;
    background:#fff;
}

.section-tag{
    display:inline-block;
    color:#c9a227;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
    background:rgba(201,162,39,.1);
    padding:8px 20px;
    border-radius:50px;
}

.about-title{
    font-size:40px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:25px;
    color:#111;
}

.about-text{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:35px;
    font-size:18px;
}

.about-image-wrapper{
    position:relative;
}

.main-image{
    width:100%;
    border-radius:25px;
    object-fit:cover;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.experience-badge{
    position:absolute;
    right:-20px;
    bottom:40px;
    background:#111;
    color:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    min-width:180px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.experience-badge h3{
    color:#d4af37;
    font-size:42px;
    margin-bottom:5px;
}

.experience-badge span{
    font-size:14px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px;
    background:#f8f8f8;
    border-radius:12px;
    transition:.3s;
}

.feature-item:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.feature-item i{
    color:#d4af37;
    font-size:20px;
}

.feature-item span{
    font-weight:500;
}

.btn-luxury{
    background:linear-gradient(135deg,#d4af37,#f1c40f);
    color:#000;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
    border:none;
    transition:.3s;
}

.btn-luxury:hover{
    transform:translateY(-4px);
    color:#000;
}

@media(max-width:768px){

    .about-title{
        font-size:34px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .experience-badge{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
        width:100%;
    }
}



.stats-premium {
  background: linear-gradient(135deg, #000, #111);
  padding: 80px 0;
  margin-top: 50px;
}

.stat-box {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 40px 20px;
  transition: 0.4s;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
}

.stat-box h2 {
  font-size: 40px;
  font-weight: 600;
  background: linear-gradient(45deg, #d4af37, #f1c40f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box p {
  color: #ccc;
  margin-top: 10px;
}

.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border-color: #d4af37;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f1c40f);
  margin: 10px auto;
}



/* .about-hero h1 {
  font-family: 'Playfair Display';
  font-size: 50px;
} */


/* LUXURY STRIP */
.luxury-strip {
  background: #000;
  color: #fff;
  padding: 80px 0;
}

.luxury-strip h2 {
  color: gold;
}

/* EXPERIENCES */
.exp-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.exp-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s;
}

.exp-card:hover img {
  transform: scale(1.1);
}

.exp-card h5 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

/* WHY US */
.why-card {
  background: #111;
  color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-10px);
}

.why-card i {
  font-size: 30px;
  color: gold;
}



/* VIDEO SECTION */
.video-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

/* VIDEO */
.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* CONTENT */
.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  padding: 0 15px;
}

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

  .video-section {
    height: 220px; /* छोटा height */
  }

  .video-content h2 {
    font-size: 22px; /* छोटा heading */
  }

  .video-content p {
    font-size: 14px;
  }

  /* PLAY BUTTON */
  .play-btn {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }

}
/* .video-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.video-section .content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
} */

/* CTA */
.cta {
  background: linear-gradient(135deg, #000, #1a1a1a);
  color: #fff;
  padding: 80px 0;
}

.btn-gold {
  background: gold;
  color: #000;
  padding: 10px 20px;
}