/* style.css */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

/* ==================== HEADER ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(60, 50, 83, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.25);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 29px;
  font-weight: 900;
  color: #ffd700;
  text-decoration: none;
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffd700;
}

.contact-btn {
  background: linear-gradient(45deg, #9f1239, #e11d48);
  color: white;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(225, 29, 72, 0.4);
}

/* Mobile Hamburger */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* ==================== FULL WIDTH BANNER CSS ==================== */

.hero-banner {
    width: 100%;
    height: 100vh;
    min-height: 650px;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Dark Overlay */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75));
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 5px 25px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

.banner-content .subtitle {
    font-size: 1.65rem;
    color: #ffd700;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 500;
}

.banner-content p {
    font-size: 1.28rem;
    margin-bottom: 45px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 42px;
    font-size: 1.15rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    min-width: 180px;
}

.cta-primary {
    background: #ffd700;
    color: #fff;
}

.cta-primary:hover {
    background: #ffed4e;
    transform: scale(1.05);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 3px solid #ffd700;
}

.cta-secondary:hover {
    background: #ffd700;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 600px;
    }
    
    .banner-content h1 {
        font-size: 3.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        min-width: 220px;
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(8, 8, 8, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    gap: 35px;
    transition: all 0.4s ease;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* About Section - Modern & Clean Design */

.about-section {
    padding: 100px 0;
    background: #23143a;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.6rem;
    line-height: 1.25;
    font-weight: 800;
    color: #1f1f1f;
    margin-bottom: 50px;
    padding: 0 10px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.content-left {
    flex: 1;
    min-width: 300px;
}

.content-left p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #fff;
    margin-bottom: 22px;
}

.content-left strong {
    color: #fff;
}

.content-right {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Buttons */
.about-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.btn-gold {
    background: #ffd700;
    color: #555;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: #e5c45a;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.whatsapp-btn {
    background: #349e1a;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    background: #20ba5a;
}

/* Responsive */
@media (max-width: 992px) {
    .content-wrapper {
        gap: 40px;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    .content-wrapper {
        flex-direction: column;
    }
    .content-right {
        order: -1;
    }
    .about-buttons {
        justify-content: center;
    }
}

<style>
    * { margin: 0; padding: 0; box-sizing: border-box; }

    .staff-section { 
      padding: 80px 15px; 
      background: #23143a; 
    }

    .section-title { 
      text-align: center; 
      font-size: 2.5rem; 
      margin-bottom: 40px; 
      color: #1f1f1f; 
    }

    .filter-bar-container { 
      text-align: center; 
      margin-bottom: 40px; 
    }

    .filter-pill-btn { 
      padding: 12px 25px; 
      background: white; 
      border: 2px solid #ddd; 
      border-radius: 50px; 
      font-weight: 600; 
      margin: 5px; 
    }

    .row { 
      display: flex; 
      flex-wrap: wrap; 
      gap: 20px; 
      justify-content: center; 
    }

    .col-lg-6 { 
      flex: 0 0 48%; 
      max-width: 48%; 
    }

    .staff-card-horizontal {
      background: #7f6f98;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      height: 100%;
    }

    .staff-row { display: flex; }

    .staff-img-side { 
      width: 40%; 
      position: relative; 
    }

    .staff-img-side img { 
      width: 100%; 
      height: 100%; 
      object-fit: cover; 
    }

    .staff-body-side { 
      width: 60%; 
      padding: 20px; 
    }

    .staff-name { 
      font-size: 1.45rem; 
      font-weight: bold; 
      margin-bottom: 8px; 
    }

    .staff-expert { 
      color: #fff; 
      font-weight: bold; 
      margin-bottom: 12px; 
    }

    .staff-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 15px;
      margin: 15px 0;
      font-size: 0.98rem;
    }

    .staff-info-grid span {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .staff-actions { 
      margin-top: 15px; 
      display: flex; 
      gap: 10px; 
    }

    .btn { 
      padding: 12px 20px; 
      border-radius: 8px; 
      text-decoration: none; 
      font-weight: 600; 
      flex: 1; 
      text-align: center; 
    }

    .btn-contact { 
      background: #c8102e; 
      color: white; 
    }

    .btn-view { 
      border: 2px solid #333; 
      color: #333; 
    }

    /* Responsive - 2 Cards per row on desktop */
    @media (max-width: 992px) {
      .col-lg-6 { 
        flex: 0 0 100%; 
        max-width: 100%; 
      }
      .staff-row { 
        flex-direction: column; 
      }
      .staff-img-side, .staff-body-side { 
        width: 100%; 
      }
    }
  </style>
  
  
  <style>
    .services-section {
      padding: 100px 15px;
      background: #0f0f0f;
      color: white;
    }

    .section-title {
      text-align: center;
      font-size: 2.7rem;
      margin-bottom: 70px;
      color: #ffd700;
      font-weight: 800;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .service-box {
      background: #5b4c71;
      border-radius: 16px;
      padding: 35px 20px;
      text-align: center;
      transition: all 0.4s ease;
      border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .service-box:hover {
      transform: translateY(-12px);
      background: #3b2f4d;
      border-color: #ffd700;
    }

    .service-icon {
      font-size: 3.6rem;
      margin-bottom: 20px;
      color: #ffd700;
    }

    .service-name {
      font-size: 1.22rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: white;
    }

    .service-desc {
      font-size: 0.95rem;
      color: #fff;
      line-height: 1.5;
    }

    /* Responsive */
    @media (max-width: 1200px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }
  </style>
  
  
 <style>
    .content-section {
      padding: 100px 15px;
      background: #f8f9fa;
      text-align: center;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section-heading {
      font-size: 2.8rem;
      font-weight: 800;
      color: #ffd700;           /* Yellow Color */
      margin-bottom: 30px;
      line-height: 1.2;
      text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    }

    .section-paragraph {
      font-size: 1.2rem;
      line-height: 1.8;
      color: #fff;
      max-width: 850px;
      margin: 0 auto;
      font-weight: 400;
    }

    .highlight {
      color: #fff;
      font-weight: 700;
    }
  </style>
  
  <style>
    .gallery-section {
      padding: 80px 15px;
      background: #f8f9fa;
    }

    .section-title {
      text-align: center;
      font-size: 2.6rem;
      margin-bottom: 50px;
      color: #1f1f1f;
      font-weight: 800;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .profile-card {
      background: #7f6f98;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      transition: all 0.4s ease;
    }

    .profile-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .profile-image {
      position: relative;
      height: 380px;
    }

    .profile-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .available-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: #3e4942;
      color: #00ff51;
      font-size: 0.85rem;
      padding: 5px 12px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .profile-info {
      padding: 20px;
    }

    .profile-name {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .profile-category {
      color: #fff;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .rating {
      color: #ffd700;
      margin-bottom: 12px;
    }

    .profile-details {
      display: flex;
      justify-content: space-between;
      font-size: 0.95rem;
      color: #000;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 8px;
    }

    .detail-item {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .actions {
      display: flex;
      gap: 12px;
    }

    .btn {
      flex: 1;
      padding: 12px;
      border-radius: 8px;
      text-align: center;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
    }

    .btn-contact {
      background: #349e1a;
      color: white;
    }

    .btn-view {
      background: #f02048;
      border: 1px solid #f02048;
      color: white;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 992px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 576px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .profile-image { height: 320px; }
    }
  </style>
  
  
 <style>
    .rates-section {
      padding: 90px 15px;
      background: #f8f9fa;
    }

    .section-title {
      text-align: center;
      font-size: 2.6rem;
      margin-bottom: 60px;
      color: #ffd700;           /* Yellow Color */
      font-weight: 800;
    }

    .rates-table {
      max-width: 1100px;
      margin: 0 auto;
      overflow-x: auto;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      background: #7f6f98;
      min-width: 700px;
    }

    th, td {
      padding: 18px 15px;
      text-align: center;
      border-bottom: 1px solid #eee;
    }

    th {
      background: #ffd700;
      color: #fff;
      font-size: 1.1rem;
      font-weight: 700;
    }

    tr:nth-child(even) {
      background: #7f6f98;
    }

    .package-name {
      font-size: 1.4rem;
      font-weight: 700;
      color: #c8102e;
    }

    .price {
      font-size: 1.5rem;
      font-weight: 800;
      color: #1f1f1f;
    }

    .highlight {
      background: #ad4d4d9e6 !important;
      font-weight: 700;
    }

    .btn-book {
      background: #c8102e;
      color: white;
      padding: 10px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      margin-top: 10px;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .section-title {
        font-size: 2.1rem;
      }
      th, td {
        padding: 14px 10px;
        font-size: 0.95rem;
      }
      .price {
        font-size: 1.3rem;
      }
    }
  </style>
  
  
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #f8f9fa;
            padding: 40px 20px;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            background: #7f6f98;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .faq-heading {
            text-align: center;
            padding: 30px 20px;
            background: #ffd700;
            color: white;
            font-size: 2rem;
        }

        .faq-item {
            border-bottom: 1px solid #e5e7eb;
        }

        .faq-question {
            width: 100%;
            padding: 20px 25px;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: #705699;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            color: #fff;
            line-height: 1.6;
        }

        .faq-answer.show {
            padding: 0 25px 25px 25px;
            max-height: 300px;
        }

        .arrow {
            transition: transform 0.3s;
            font-size: 1.4rem;
        }

        .faq-question.active .arrow {
            transform: rotate(180deg);
        }
    </style>
	
	
	
	<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #23143a;
            padding: 40px 20px;
        }

        .testimonials-section {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-heading h2 {
            font-size: 2.8rem;
            color: #1e2937;
            margin-bottom: 12px;
        }

        .section-heading p {
            font-size: 1.3rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        .testimonial-carousel {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 40px 30px;
            background: #7f6f98;
            text-align: center;
        }

        .testimonial-card img {
            width: 85px;
            height: 85px;
            border-radius: 50%;
            margin-bottom: 15px;
            object-fit: cover;
            border: 4px solid #e0e7ff;
        }

        .stars {
            color: #facc15;
            font-size: 1.8rem;
            margin-bottom: 15px;
            letter-spacing: 5px;
        }

        .testimonial-text {
            font-size: 1.2rem;
            line-height: 1.7;
            color: #fff;
            margin-bottom: 25px;
            font-style: italic;
        }

        .client-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1e2937;
        }

        .client-role {
            color: #fff;
            margin-top: 5px;
        }

        /* Navigation Buttons */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            z-index: 10;
            transition: all 0.3s;
        }

        .nav-btn:hover {
            background: #4f46e5;
            color: white;
        }

        .prev-btn { left: 20px; }
        .next-btn { right: 20px; }

        /* Dots */
        .dots {
            text-align: center;
            margin-top: 25px;
        }

        .dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: #cbd5e1;
            border-radius: 50%;
            margin: 0 6px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #4f46e5;
            transform: scale(1.3);
        }

        @media (max-width: 768px) {
            .section-heading h2 {
                font-size: 2.2rem;
            }
            .testimonial-card {
                padding: 30px 20px;
            }
        }
    </style>
	
	<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .footer {
            background: linear-gradient(135deg, #23143a, #23143a);
            color: #fff;
            padding: 60px 20px 30px;
            font-family: 'Segoe UI', Arial, sans-serif;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-col h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: #ffd700;
        }

        /* Map Style */
        .map-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            height: 220px;
        }

        .footer-bottom {
            border-top: 1px solid #fff;
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
            color: #fff;
            font-size: 0.95rem;
        }

        .social-icons a {
            color: #cbd5e1;
            font-size: 1.6rem;
            margin-right: 15px;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            color: #ff0404;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .map-container {
                height: 200px;
            }
        }
    </style>
	
	
  
  

  