* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
BODY BG
========================= */

body{
    margin:0;
    background:
    linear-gradient(
    135deg,
    #efe9ff,
    #fdf7ff,
    #ffe9f7
    );

    font-family:'Poppins',sans-serif;
}

/* =========================
NAVBAR
========================= */

/* =========================
NAVBAR
========================= */

.navbar{

    width:90%;
    margin:5px auto;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:10px 28px;

    border-radius:34px;

    background:
    rgba(255,255,255,0.55);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,0.35);

    box-shadow:
    0 15px 40px rgba(124,58,237,0.08);
}

/* =========================
LOGO
========================= */

.logo-wrap{

    display:flex;
    align-items:center;

    gap:14px;
}

.logo-icon{

    width:62px;
    height:62px;

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    #7c3aed,
    #ec4899
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:26px;
    font-weight:700;

    font-family:
    'Playfair Display',
    serif;

    box-shadow:
    0 12px 30px rgba(168,85,247,0.25);
}

.logo-text{

    font-size:34px;
    font-weight:700;

    color:#111827;

    font-family:
    'Playfair Display',
    serif;
}

/* =========================
MENU
========================= */

.nav-links{

    display:flex;
    align-items:center;

    gap:42px;

    list-style:none;
}

.nav-links li a{

    position:relative;

    text-decoration:none;

    color:#111827;

    font-size:15px;
    font-weight:600;

    transition:0.3s;
}

/* ACTIVE */

.nav-links li a.active{
    color:#7c3aed;
}

/* HOVER */

.nav-links li a:hover{
    color:#7c3aed;
}

/* UNDERLINE */

.nav-links li a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:0%;
    height:2px;

    border-radius:10px;

    background:
    linear-gradient(
    135deg,
    #7c3aed,
    #ec4899
    );

    transition:0.35s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after{

    width:100%;
}

/* =========================
RIGHT SIDE
========================= */

.nav-right{

    display:flex;
    align-items:center;

    gap:16px;
}

/* SEARCH */

.search-box{

    width:52px;
    height:52px;

    border-radius:18px;

    background:
    rgba(124,58,237,0.08);

    color:#7c3aed;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    transition:0.35s;
}

.search-box:hover{

    transform:translateY(-3px);

    background:
    linear-gradient(
    135deg,
    #7c3aed,
    #ec4899
    );

    color:#fff;

    box-shadow:
    0 12px 28px rgba(168,85,247,0.25);
}

/* BUTTON */

.book-btn{

    padding:16px 32px;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #7c3aed,
    #ec4899
    );

    color:#fff;

    text-decoration:none;

    font-size:15px;
    font-weight:600;

    transition:0.35s;

    box-shadow:
    0 14px 32px rgba(168,85,247,0.22);
}

.book-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 18px 36px rgba(168,85,247,0.35);
}

/* =========================
MENU TOGGLE
========================= */

.menu-toggle{

    display:none;

    width:52px;
    height:52px;

    border-radius:18px;

    background:
    rgba(124,58,237,0.08);

    color:#7c3aed;

    align-items:center;
    justify-content:center;

    cursor:pointer;

    transition:0.35s ease;
}

.menu-toggle i{
    font-size:20px;
}

.menu-toggle:hover{

    background:
    linear-gradient(
    135deg,
    #7c3aed,
    #ec4899
    );

    color:#fff;

    transform:translateY(-2px);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px){

    .menu-toggle{
        display:flex;
    }

    .logo-text{
        font-size:24px;
    }

    .nav-links{

        position:absolute;

        top:95px;
        

        width:100%;

        display:flex;

        flex-direction:column;

        gap:28px;

        padding:30px 0;

        border-radius:0 0 24px 24px;

        background:
        rgba(255,255,255,0.96);

        backdrop-filter:blur(20px);

        box-shadow:
        0 20px 40px rgba(0,0,0,0.08);

        z-index:999;

        opacity:0;
        visibility:hidden;

        pointer-events:none;

        transform:
        translateY(-15px);

        transition:0.35s ease;
    }

    .nav-links.active{

        opacity:1;

        visibility:visible;

        pointer-events:auto;

        transform:
        translateY(0);
    }

}

@media(max-width:768px){

    .navbar{

        width:92%;

        padding:15px 18px;
    }

    .book-btn{
        display:none;
    }

    .logo-icon{

        width:52px;
        height:52px;

        font-size:22px;
    }

}
@media(max-width:992px){

    .navbar{

        position:relative;

        z-index:9999;
    }

    .nav-right{

        margin-left:auto;
    }

    .nav-links{

        top:85px;

        left:50%;

        transform:
        translateX(-50%) translateY(-15px);

        width:92%;

        border-radius:28px;

        padding:25px 0;
    }

    .nav-links.active{

        transform:
        translateX(-50%) translateY(0);
    }

}
.hero {
  position: relative;
  height: 447px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.6)),
    url('images/pchero.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 140px; /* 🔥 bigger = smoother curve */

  background:
    /* 💙 THICK BLUE LINE */
    radial-gradient(
      140% 120% at 50% 0%,
      transparent 68%,
      #5a84ea 71%,   /* thickness start */
      #5a84ea 73%,   /* thickness end */
      transparent 75%
    ),

    /* 🌑 CURVE SHAPE */
    radial-gradient(
      140% 120% at 50% 0%,
      transparent 73%,
      #f3f3f3 74%
    );
}
/* KEEP TEXT ABOVE */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h4 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 23px;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-content .h11 {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.hero-content .h11 span{
    background: linear-gradient(135deg,#7c3aed,#ec4899);
    padding: 12px 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(168,85,247,0.35);
}

.hero-content p {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  margin-top: 15px;
  font-size: 23px;
}
.profile-book-btn,
.btn,
.btn-primary{
    background: linear-gradient(135deg,#7c3aed,#ec4899);
    border: none;
    transition: 0.35s ease;
}

.profile-book-btn:hover,
.btn:hover,
.btn-primary:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(168,85,247,0.35);
}

.profile-card{
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}
.breadcrumb {
  margin-top: 25px;
  color: #fff;
  font-size: 14px;
}

/* CURVE */


.curve path {
  fill: transparent;
}





/* =====================
   RESPONSIVE
===================== */

@media (max-width: 768px) {

  .navbar {
    padding: 12px 20px;
  }



  .logo {
    font-size: 21px;
  }

  .hero {
    height: 420px;
    padding: 20px;
    overflow: hidden; 
  }

  .hero-content .h11 {
    font-size: 43px;
    line-height: 1.2;
  }

  .hero-content .h11 span {
    padding: 6px 12px;
    margin-left: 8px;
  }

  .hero-content h4 {
    font-size: 16px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .curve,
  .curve-line {
    height: 70px;
     bottom: -1px;
  }
}

@media (max-width: 480px) {
  .hero-content .h11 {
    font-size: 42px;
  }

  .hero {
    height: 520px;
  }
}
@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.6)),
      url('images/karhero.jpg'); /* 👈 CHANGE IMAGE */

    background-size: cover;
    background-position: center;
  }
}

.about-box {
  background: #f3f3f3;
  padding: 20px 20px;
  text-align: center;
  border-bottom: 6px solid #5a84ea;
  border-bottom-left-radius: 60px;
}

/* CONTAINER FOR BETTER WIDTH CONTROL */
.about-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADING */
.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #111;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  line-height: 1.3;
}

/* BLUE LINE */
.about-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #5a84ea;
  border-radius: 10px;
}

/* TEXT */
.about-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 16.5px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: left;
}

/* ADD NICE LEFT BORDER STYLE */
.about-sub {
  padding-left: 15px;
  border-left: 3px solid #5a84ea20;
}

/* HOVER EFFECT (SUBTLE PREMIUM TOUCH) */
.about-box:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .about-heading {
    font-size: 26px;
  }

  .about-sub {
    font-size: 14.5px;
  }
}

.card-section {
  padding: 20px 20px;
  background: #ffffff;
}

.card-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.4s ease;
  cursor: pointer;
}


.card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}




/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* MOBILE */
@media (max-width: 900px) {
  .card-container {
    grid-template-columns: 1fr;
  }
}

/* IMAGE BASE */
.card-img {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

/* DARK OVERLAY */
.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

/* TOP TEXT */
.top-content {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: #fff;
}

.top-content h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.top-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* CENTER STEPS */
.center-steps {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* STEP STYLE */
.step {
  position: relative;
  background: #7b2648;
  color: #111;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin: 10px 0;
  font-weight: 500;
}

/* DOT */
.step::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

/* LINE CONNECTOR */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 12px;
  background: #fff;
}

/* REMOVE FIRST DOT EXTRA SPACE */
.step:first-child::before {
  display: none;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px);
  transition: 0.4s ease;
}

/* FORCE TEXT TO BOTTOM */
.bottom-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;

  padding: 18px;
  color: #fff;

  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.bottom-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.bottom-content p {
  font-size: 13px;
  opacity: 0.9;
}
/* FORCE IMAGE FULL */
.card-img {
  height: 320px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

/* DARK OVERLAY */
.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
}

/* BOTTOM TEXT (FIXED) */
.bottom-content {
  position: relative;
  z-index: 2;
  padding: 18px;
  width: 100%;
  color: #fff;
}

.bottom-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.bottom-content p {
  font-size: 13px;
  opacity: 0.9;
}

/* CENTER STEPS (MODERN STYLE) */
.center-steps {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* MODERN TIMELINE STEPS */
.step {
  position: relative;
  color: #fff;
  font-size: 13px;
  margin: 18px 0;
  padding-left: 30px;
  font-weight: 500;
}

/* GLOW DOT */
.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  background: #5a84ea;
  border-radius: 50%;
  box-shadow: 0 0 12px #5a84ea;
}

/* LINE */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;
  width: 2px;
  height: 22px;
  background: rgba(255,255,255,0.4);
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px);
  transition: 0.4s ease;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

/* CARD */
.profile-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.profile-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.profile-card img {
  width: 100%;
  height: 295px;
  object-fit: cover;
  object-position: inherit;
}

/* CONTENT */
.card-content {
  padding: 14px;
}

.card-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.card-content p {
  font-size: 13px;
  color: #111827;
  margin: 6px 0 12px;
}

/* BUTTON */
.card-content a {
  display: block;
  text-align: center;
  padding: 8px;
  background: #111827;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
}

/* 📱 MOBILE (2 per row) */
@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .profile-card img {
    height: 260px; /* mobile height */
  }
}
.section-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #111827;
  text-align: center;
}


.luxury-section {
  position: relative;
  padding: 20px 20px;
  color: #fff;
  overflow: hidden;

  /* Background */
  background: url('images/bggks.jpeg') center/cover no-repeat;
}

/* Dark overlay for readability */
.luxury-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

/* Content */
.luxury-content {
  position: relative;
  max-width: 1100px;
  margin: auto;
  z-index: 2;
}

/* Headings */
.luxury-content h2{

    font-size:38px;
    margin-top: 15px;
    line-height:1.2;

    font-family:
    'Playfair Display',
    serif;

    background:
    linear-gradient(
    135deg,
    #c4b5fd,
    #f9a8d4
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:28px;
}

.luxury-content h3 {
  font-size: 22px;
  margin: 30px 0 15px;
  font-weight: 500;
  color: #a8bef3;
}
.luxury-content{
   max-width:1100px;
   margin:auto;
}

.luxury-content p{

   max-width:1200px;

   font-size:19px;

   line-height:2;

   color:#d1d5db;
}

.luxury-section::after{

    content:"";

    position:absolute;

    width:400px;
    height:400px;

    background:
    rgba(168,85,247,0.18);

    filter:blur(120px);

    top:-100px;
    right:-100px;
}
/* Paragraph */
.luxury-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #e5e7eb;
}

.content-section {
  position: relative;
}

.content-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* adjust 0.4–0.6 */
  z-index: 0;
}

.content-section .container {
  position: relative;
  z-index: 1;
}

/* MOBILE ONLY */

@media (max-width:768px){

  .luxury-content h2{

      font-size:25px;

      line-height:1.35;

      margin-top:12px;

      margin-bottom:20px;

      text-align:left;
  }

}


/* SECTION BG */
.pricing-section {
  padding: 12px 10px;
  background: linear-gradient(to bottom, #f8fafc, #eef2ff);
}

/* TITLE */
.section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
  color: #111827;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #6366f1;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* TOGGLE */
.pricing-toggle {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-toggle button {
  padding: 8px 20px;
  border: none;
  margin: 0 5px;
  border-radius: 20px;
  background: #e5e7eb;
  cursor: pointer;
  transition: 0.3s;
}

.pricing-toggle .active {
  background: #6366f1;
  color: #fff;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD (GLASS EFFECT) */
.pricing-card {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.65);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* MOST BOOKED CARD */
.pricing-card.most {
  border: 2px solid #6366f1;
}

/* BADGE */
.badge {
  position: absolute;
  top: -10px;
  right: 15px;
  background: #6366f1;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* TITLE */
.pricing-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* PRICE */
.price {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.price span {
  font-size: 13px;
  color: #6b7280;
}

/* LIST */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ICONS */
.pricing-card ul li::before {
  content: "✔";
  color: #10b981;
  font-size: 12px;
}

.pricing-card ul li.not {
  color: #9ca3af;
}

.pricing-card ul li.not::before {
  content: "✖";
  color: #ef4444;
}

/* BUTTON */
.btn {
  margin-top: 15px;
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  background: rgb(90 132 234);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #4f46e5;
}

/* FADE-IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dual-section {
  padding: 20px 20px;
  position: relative;
  background: url('images/bggks.jpeg') center/cover no-repeat;
}

.dual-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}

/* FULL WIDTH TEXT */
.full-content {
  max-width: 900px;
  margin-bottom: 60px;
}

.full-content h2 {
  color: #93c5fd;
  font-size: 27px;
  margin-bottom: 15px;
}

.full-content p {
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* SPLIT */
.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.split-image img {
  width: 100%;
  max-height: 420px;   /* control height */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}




/* RIGHT CONTENT */
.split-content h3 {
  color: #93c5fd;
  font-size: 22px;
  margin-bottom: 15px;
}

.split-content p {
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 15px;
}
.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch; /* IMPORTANT */
}
/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background: #6366f1;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .split-container {
    grid-template-columns: 1fr;
  }
}

.category-section {
  padding: 80px 20px;
  position: relative;
  background: url('images/bggks.jpeg') center/cover no-repeat;
}

.category-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.category-section .container {
  position: relative;
  z-index: 2;
}

/* GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

/* IMAGE */
.category-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.5s ease;
}

/* OVERLAY */
.category-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  transition: 0.3s;
}

/* LABEL */
.label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #9d174d;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
}

/* HOVER EFFECT */
.category-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.category-card:hover .overlay {
  background: rgba(0,0,0,0.2);
}

/* MOBILE */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card img {
    height: 280px;
  }
}

.location-section {
  padding: 20px 20px;
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
              url('images/lobg.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}


/* TITLE */
.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #111827;
}

/* FILTER */
.filter-tabs {
  text-align: center;
  margin-bottom: 40px;
}

.filter-tabs button {
  padding: 8px 18px;
  margin: 5px;
  border-radius: 20px;
  border: none;
  background: #5071b3;
  cursor: pointer;
}

.filter-tabs .active {
  background: #6366f1;
  color: #fff;
}

/* GRID */
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.location-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* IMAGE */
.location-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* OVERLAY */
.location-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* TEXT */
.location-card .content {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #fff;
}

.location-card h3 {
  margin: 0;
  font-size: 16px;
}

.location-card span {
  font-size: 12px;
  color: #d1d5db;
}

/* HOVER */
.location-card:hover img {
  transform: scale(1.08);
  transition: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.location-card.hide {
  display: none;
}
.location-content {
  max-width: 1200px;
  margin-bottom: 40px;
}

.location-content h2 {
  font-size: 26px;
  color: #111827;
  margin-bottom: 15px;
}

.location-content p {
  color: #fff;
  line-height: 1.8;
  margin-bottom: 15px;
}

.parallax-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* PARALLAX */
  background: url('images/ksbggg.jpeg') center/cover no-repeat;
  background-attachment: fixed;
}

/* DARK OVERLAY */
.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

/* CONTENT */
.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

/* TEXT */
.parallax-content h2 {
  color: #93c5fd;
  font-size: 30px;
  margin-bottom: 15px;
}

.parallax-content p {
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background: #6366f1;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #4f46e5;
}.parallax-section {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* PARALLAX */
  background: url('images/bgks.jpeg') center/cover no-repeat;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .parallax-section {
    height: 140vh;
  }
}

/* DARK OVERLAY */
.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

/* CONTENT */
.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 20px;
}

/* TEXT */
.parallax-content h2 {
  color: #93c5fd;
  font-size: 30px;
  margin-bottom: 15px;
}

.parallax-content p {
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background: #6366f1;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #4f46e5;
}
.faq-section {
  padding: 20px 20px;
  background: url('images/bggks.jpeg') center/cover no-repeat;
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
}

.faq-section .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.section-title {
  text-align: center;
  color: #93c5fd;
  font-size: 28px;
  margin-bottom: 50px;
}

/* WRAPPER */
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

/* QUESTIONS */
.faq-item {
  padding: 15px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: #e5e7eb;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item:hover {
  background: rgba(255,255,255,0.1);
}

/* ACTIVE QUESTION */
.faq-item.active {
  background: #6366f1;
  color: #fff;
}

/* ANSWERS */
.faq-answer {
  display: none;
  color: #d1d5db;
  line-height: 1.8;
  animation: fade 0.4s ease;
}

.faq-answer.active {
  display: block;
}

/* ANIMATION */
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
  }
}

.pro-footer {
  background: #020617;
  color: #e5e7eb;
  padding: 20px 12px 30px;
  position: relative;
  overflow: hidden;
}

/* TOP GLOW LINE */
.footer-glow {
  height: 2px;
  background: linear-gradient(to right, transparent, #6366f1, transparent);
  margin-bottom: 40px;
}

/* GRID */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* BRAND */
.footer-col h2 {
  color: #93c5fd;
  margin-bottom: 10px;
}

.footer-col p {
  color: #9ca3af;
  line-height: 1.6;
}

/* CTA */
.footer-cta {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-cta:hover {
  transform: translateY(-3px);
}

/* TITLES */
.footer-col h4 {
  margin-bottom: 15px;
  color: #fff;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #9ca3af;
  text-decoration: none;
  position: relative;
}

/* UNDERLINE ANIMATION */
.footer-col a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #6366f1;
  left: 0;
  bottom: -2px;
  transition: 0.3s;
}

.footer-col a:hover::after {
  width: 100%;
}

/* SOCIAL */
.footer-social {
  text-align: center;
  margin: 40px 0 20px;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #6366f1;
  transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-icons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.call-btn {
  background: #007bff;
}

.whatsapp-btn {
  background: #25D366;
}

/* PROFILE ACTION */

.profile-action{
    position: relative;
}

.profile-book-btn{
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: #111827;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.profile-book-btn:hover{
    opacity: 0.9;
}

/* POPUP */

.action-box{
    position: absolute;
    bottom: 58px;
    left: 0;
    width: 100%;
    background: #111;
    border-radius: 14px;
    padding: 10px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: 0.3s;
    z-index: 50;
}

.profile-action.active .action-box{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ITEMS */

.action-item{
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 14px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.action-item i{
    font-size: 16px;
}

.whatsapp-action{
    background: #25D366;
    margin-bottom: 8px;
}

.call-action{
    background: #222;
}

.action-item:hover{
    transform: translateX(4px);
}