p {
    font-size: 15px !important;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 25px !important;
    background-attachment: none;
}
:root {
  /* Brand Colors */
  --primary-color: #D4AF37;        /* Gold - main brand color */
  --secondary-color: #B8860B;      /* Dark Goldenrod - accent */
  --accent-color: #8B6914;         /* Royal Gold - for buttons, shadows */
  --highlight-color: #B22222;      /* Firebrick - for emphasis */
  --success: #28a745;              /* Green - status/success */

  /* Backgrounds & Base Colors */
  --dark-color: #1A1A1A;           /* Rich black */
  --light-color: #F5F5F5;          /* Soft background */
  --white: #FFFFFF;
  --text-color: #dfdfdf;

  /* Bootstrap Compatibility (optional if mixing with Bootstrap) */
  --primary: var(--primary-color);
  --secondary: var(--secondary-color);
  --light: var(--light-color);
  --dark: var(--dark-color);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;

  /* UI Effects */
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

        body {
            font-family: var(--font-body);
            color: var(--text-color);
            background-color: var(--light-color);
            line-height: 1.7;
            background-image: url('https://images.unsplash.com/photo-1587474260584-136574528ed5');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            background-color: rgba(0, 0, 0, .95);
            overflow-x: hidden !important;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: var(--primary-color);
            font-weight: 400 !important;
        }

        .navbar {
            background-color: rgba(26, 26, 26, 0.9) !important;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
        }

        .navbar-brand img {
            height: 50px;
            transition: var(--transition);
            object-fit: contain;
        }

        .navbar-brand img:hover {
            transform: scale(1.05);
        }

        .nav-link {
            color: var(--light-color) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }


        .hero-section h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-section p.lead {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--primary-color);
            font-weight: 400;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--dark-color);
            font-weight: 300;
            padding: 8px 25px;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-outline-light:hover {
            color: var(--dark-color);
        }

        .section-title {
            position: relative;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            margin: 15px auto 0;
        }

        .highlight-card {
            background: black !important;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            height: 100%;
            transition: var(--transition);
            box-shadow: var(--box-shadow);
            border-top: 4px solid var(--primary-color);
        }

        .highlight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .highlight-card i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .highlight-card h5 {
            color: var(--dark-color);
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }

        .highlight-card p {
            font-size: 0.9rem;
        }

        .itinerary-day {
            background-color: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-bottom: 25px;
            overflow: hidden;
            transition: var(--transition);
        }

        .itinerary-day:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .day-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 15px 20px;
            font-weight: 500;
            font-size: 1.1rem;
        }

        .day-content {
            padding: 20px;
        }

        .day-content p {
            font-size: 0.95rem;
        }

        .highlight-box {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--primary-color);
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .highlight-box h5 {
            color: var(--secondary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            font-size: 1rem;
        }

        .highlight-box h5 i {
            margin-right: 8px;
        }

        .highlight-box ul {
            font-size: 0.9rem;
        }

        .highlight-box li {
            margin-bottom: 5px;
        }

        .itinerary-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }

        .itinerary-img:hover {
            transform: scale(1.03);
        }

        .included-list, .excluded-list {
            list-style-type: none;
            padding-left: 0;
            font-weight: 300;
            font-size: 0.9rem;
        }

        .included-list li, .excluded-list li {
            padding: 6px 0;
            padding-left: 25px;
            position: relative;
        }

       .included-list li:before {
    content: "\f00c"; /* check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* solid */
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.excluded-list li:before {
    content: "\f00d"; /* times */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* solid */
    color: var(--highlight-color);
    position: absolute;
    left: 0;
}


        .price-box {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 25px;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: var(--box-shadow);
        }

        .price-box h3 {
            font-size: 1.3rem;
        }

        .price-box .display-4 {
            font-weight: 500;
            color: var(--white);
            font-size: 2.5rem;
        }

        .price-box p {
            font-size: 0.95rem;
        }

        .card {
            border: none;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .card-header {
            font-family: var(--font-heading);
            font-weight: 500;
            font-size: 1.1rem;
        }

        footer {
            background-color: rgba(26, 26, 26, 0.95);
            color: var(--white);
            padding: 50px 0 20px;
            backdrop-filter: blur(5px);
        }

        footer h5 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 500;
            font-size: 1.2rem;
        }

        footer p, footer li {
            font-size: 0.9rem;
        }

        footer a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        footer a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .social-icons a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            margin-right: 8px;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .social-icons a:hover {
            background-color: var(--primary-color);
            color: var(--dark-color);
            transform: translateY(-3px);
        }

        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            text-align: center;
            font-size: 24px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .bg-light-custom {
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(5px);
        }

        @media (max-width: 768px) {

            .hero-section h1 {
                font-size: 1.8rem;
            }

            .hero-section p.lead {
                font-size: 1rem;
            }

            .itinerary-img {
                height: 180px;
                margin-bottom: 15px;
            }

            .price-box .display-4 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 1.5rem;
            }
        }
        .navbar-toggler{
            border-color: white;
        }
       .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
img {
  object-fit: cover; /* ya contain, as per design */
  image-rendering: auto;
  image-rendering: crisp-edges; /* fallback for some browsers */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  filter: contrast(105%) brightness(1.05); /* optional enhancement */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* optional visual enhancement */
}



/* tour packages css will be started here */

  /* Package Card */
  .package-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    border: none;
  }

  .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
  }

  .package-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .package-header {
    padding: 15px 20px;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
  }

  .package-body {
    padding: 20px;
  }

  .package-duration {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 5px;
  }

  .package-price {
    font-size: 1.5rem;
    color: var(--success);
    font-weight: bold;
    margin: 15px 0;
  }

  .package-price small {
    font-size: 1rem;
    color: var(--secondary);
  }

  .package-highlights {
    margin: 15px 0;
  }

  .package-highlights li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
  }

  .package-highlights li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
  }

  /* Icon Cards */
  .feature-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
  }

  .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 300;
    padding: 8px 25px;
  }

  .btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
  }

  /* Places Section */
  .places-section {
    padding: 60px 0;
  }

  .places-section h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
  }

  .places-section ul {
    list-style: none;
    padding-left: 0;
  }

  .places-section li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
  }

  .places-section li:before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
  }
/* contact us css will be started here */


    .contact-section { padding: 70px 0; }
    .info-icon {
      font-size: 1.3rem;
      color: #9b6603;
      margin-right: 10px;
    }
    .form-control:focus {
      border-color: #ff6b00;
      box-shadow: 0 0 0 0.2rem rgba(255,107,0,.25);
    }
    .card.shadow-sm {
      border: none;
      border-radius: 12px;
    }


    /* about us page css will be started here */
        .about-section { padding: 60px 0; }
    .icon-box {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
    }
    .icon-box i {
      font-size: 2rem;
      color: var(--dark-color);
      margin-right: 15px;
    }
    .team-card img {
      border-radius: 50%;
      width: 120px;
      height: 120px;
      object-fit: cover;
      margin-bottom: 15px;
    }
    :root {
        --bs-body-bg: #121212;
        --bs-body-color: #e0e0e0;
        --bs-dark: #1a1a1a;
        --bs-light: #2d2d2d;
        --bs-primary: #ffc107;
        --bs-secondary: #6c757d;
        --bs-warning: #ffc107;
    }



    .hero-section {
        height: 90vh;
        overflow: hidden;
    }

    .hero-image-wrapper {
        position: relative;
        height: 100vh;
        min-height: 600px;
    }

    .hero-image-wrapper img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)) !important;
        z-index: 1;
    }

    .carousel-caption {
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        color: #fff;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 400;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
        color: goldenrod !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    /* Slider Dots Style */
    .carousel-indicators [data-bs-target] {
        background-color: #fff;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        opacity: 0.7;
    }

    .carousel-indicators .active {
        background-color: #ffc107;
        opacity: 1;
    }


    .ram-image-wrapper {
        max-height: 550px;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        box-shadow:
            0 0 30px rgba(255, 200, 0, 0.4),
            0 0 50px rgba(255, 223, 0, 0.3),
            inset 0 0 20px rgba(255, 223, 0, 0.6);
        height: 100%;
        border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .ram-glow-overlay {
        background: radial-gradient(circle at center,
                rgba(255, 223, 0, 0.2),
                rgba(255, 255, 255, 0.1) 70%,
                transparent 100%);
        z-index: 1;
        pointer-events: none;
        filter: blur(25px);
        position: absolute;
        top: 0;
        left: 0;
    }

    .ram-image {
        object-fit: cover;
        border-radius: 12px;
        position: relative;
        z-index: 2;
        opacity: 0.9;
        filter:
            brightness(1.1) contrast(1.1) saturate(1.3) drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
        transition: transform 0.5s ease;
        width: 100%;
        height: 100%;
    }

    .ram-image-wrapper:hover .ram-image {
        transform: scale(1.03);
    }

    /* Dark Theme Adjustments */
    .card {
        background-color: var(--bs-dark);
        border: 1px solid #333;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .highlight-card {
        background-color: var(--bs-dark) !important;
        border: 1px solid #444;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .bg-light {
        background-color: var(--bs-dark) !important;
    }

    .bg-light-custom {
        background-color: #1e1e1e !important;
    }

    .text-muted {
        color: #aaa !important;
    }

    .text-secondary {
        color: #bbb !important;
    }

    .btn-outline-secondary {
        border-color: #666;
        color: #bbb;
    }

    .btn-outline-secondary:hover {
        background-color: #333;
        border-color: #777;
    }

    .price-box {
        background-color: #1a1a1a;
        padding: 2rem;
        border-radius: 8px;
        border: 1px solid #444;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        height: 100%;
    }

    .form-control, .form-select {
        background-color: #2d2d2d;
        border: 1px solid #444;
        color: #e0e0e0;
    }

    .form-control:focus, .form-select:focus {
        background-color: #333;
        color: #fff;
        border-color: #ffc107;
        box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
    }

    .card-header {
        border-bottom: 1px solid #444;
    }

    .included-list, .excluded-list {
        list-style-type: none;
        padding-left: 0;
    }

    .included-list li:before {
        content: "✓";
        color: #28a745;
        margin-right: 8px;
    }

    .excluded-list li:before {
        content: "✗";
        color: #dc3545;
        margin-right: 8px;
    }

    .section-title {
        color: #ffc107;
        position: relative;
        padding-bottom: 15px;
    }

    .section-title:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, #ffc107, transparent);
    }

    hr {
        border-color: #444;
    }

    .swiper-pagination-bullet {
        background: #666;
    }

    .swiper-pagination-bullet-active {
        background: #ffc107;
    }

    /* Custom Travel Request Section */
    #custom-travel-request .bg-white {
        background-color: var(--bs-dark) !important;
        border: 1px solid #444;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    #custom-travel-request .text-muted {
        color: #bbb !important;
    }

    /* Modal Styling */
    .modal-content {
        background-color: var(--bs-dark);
        border: 1px solid #444;
    }

    .modal-header {
        border-bottom: 1px solid #444;
    }

    .btn-close-white {
        filter: invert(1);
    }
    @media (max-width: 768px) {
        *{
            font-size: 14px;
        }
        .hero-title {
            Font-size: 2.2rem;
        }

        .hero-subtitle {
            font-size: .9rem;
        }

        .hero-buttons .btn {
            display: block;
            width: 100%;
            margin-bottom: 1rem;
        }

        .hero-content {
            text-align: center;
        }
        .section-title{
            font-size: 1.5em;
            font-weight: 500 !important;
        }
        p{
            font-size: 15px !important;
        }
        .lead{
            font-size: 14.5px !important;
        }
        .text-muted{
            font-size: 14px !important;
        }
        li{
            font-size: 14px !important;
        }
    }
        .golden-glow-alive {
  position: relative;
  background-color: rgba(10, 10, 10, 0.6);
  background-image: linear-gradient(145deg, rgba(255, 215, 0, 0.03), rgba(255, 193, 7, 0.02));
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow:
    0 0 10px rgba(255, 215, 0, 0.12),
    0 0 20px rgba(255, 193, 7, 0.1),
    inset 0 0 5px rgba(255, 215, 0, 0.06);
  backdrop-filter: blur(2px);
  animation: divinePulse 5s ease-in-out infinite;
  transition: all 0.4s ease;
}

.golden-glow-alive::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px;
  right: -8px; bottom: -8px;
  border-radius: 16px;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.06), transparent 70%);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  animation: divinePulse 5s ease-in-out infinite;
}

@keyframes divinePulse {
  0%, 100% {
    box-shadow:
      0 0 10px rgba(255, 215, 0, 0.12),
      0 0 20px rgba(255, 193, 7, 0.1),
      inset 0 0 5px rgba(255, 215, 0, 0.06);
  }
  50% {
    box-shadow:
      0 0 15px rgba(255, 215, 0, 0.18),
      0 0 30px rgba(255, 193, 7, 0.15),
      inset 0 0 8px rgba(255, 215, 0, 0.08);
  }
}

/* Apply to any scrollable container or entire body */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111; /* dark background */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, gold, goldenrod);
  border-radius: 8px;
  box-shadow: inset 0 0 4px rgba(255, 215, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffcc00, #ffaa00);
}
.custom-hero-btn {
    font-size: 1.1rem;
    padding: 0.6rem 2rem;
    border-radius: 8px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.custom-hero-btn:hover {
    transform: scale(1.05);
}

.hero-buttons {
    margin-top: 1rem;
}

@media (max-width: 575.98px) {
    .hero-buttons a {
        flex: 0 0 auto;
        width: auto !important;
    }
}

.hero-image-wrapper {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.carousel-caption {
    height: 100%;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-image-wrapper {
        height: 60vh;
    }
}

.ram-image-wrapper {
    position: relative;
}

.ram-glow-overlay {
    position: absolute;
    background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.ram-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.highlight- {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    border: 1px solid #333;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ffc107;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.package-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 215, 0, 0.5) !important;
}

.golden-glow-alive {
    position: relative;
    overflow: hidden;
}

.golden-glow-alive:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 215, 0, 0) 0%,
        rgba(255, 215, 0, 0) 45%,
        rgba(255, 215, 0, 0.1) 50%,
        rgba(255, 215, 0, 0) 55%,
        rgba(255, 215, 0, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -50%;
        top: -50%;
    }
    100% {
        left: 150%;
        top: 150%;
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffc107 !important;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: #999 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #ffc107 !important;
    transform: scale(1.2);
}
.animated-glow-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    color: black;
    font-weight: bold;
    background-color: #ffc107;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
    animation: pulseGlow 2s infinite;
}

.animated-glow-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-20deg);
    z-index: 0;
    transition: 0.5s;
}

.animated-glow-button:hover::before {
    left: 130%;
}

.animated-glow-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.8), 0 0 35px rgba(255, 193, 7, 0.5);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
    }
}

.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.card-header {
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}

.card-body {
    padding: 1.5rem;
}

.list-unstyled li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.list-unstyled li:last-child {
    border-bottom: none;
}
.bg-light-custom {
    background-color: #f8f9fa;
}

.price-box {
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}
    /* ===============================
     DARK THEME + GOLD-YELLOW GLOW
     =============================== */
    :root {
        --bg: #08080b;
        --text: #f8f8f8;
        --gold: #ffd700;
        --yellow: #fff25f;
        --glow-gold: 0 0 14px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 195, 0, 0.4);
        --glow-strong: 0 0 22px rgba(255, 240, 120, 0.85), 0 0 50px rgba(255, 220, 40, 0.55);
    }

    body {
        background: var(--bg);
        color: var(--text);
        font-family: "Poppins", sans-serif;
    }

    /* ===============================
     MARQUEE SECTION
     =============================== */
    .coupon-marquee-section {
        background: radial-gradient(circle at 10% 50%, rgba(255, 220, 80, 0.15), transparent 60%),
            radial-gradient(circle at 90% 50%, rgba(255, 230, 100, 0.1), transparent 55%),
            #000;
        padding: 14px 0;
        border-top: 1px solid rgba(255, 220, 50, 0.35);
        border-bottom: 1px solid rgba(255, 220, 50, 0.35);
        box-shadow: var(--glow-gold);
        position: relative;
        overflow: hidden;
        z-index: 10;
    }

    .coupon-marquee-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,
                rgba(255, 200, 0, 0.1) 0%,
                rgba(255, 255, 100, 0.05) 25%,
                rgba(255, 200, 0, 0.1) 50%,
                rgba(255, 255, 100, 0.05) 75%,
                rgba(255, 200, 0, 0.1) 100%);
        animation: shine 6s linear infinite;
        pointer-events: none;
    }

    @keyframes shine {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(50%);
        }
    }

    .coupon-marquee {
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .marquee-track {
        display: flex;
        gap: 28px;
        /* Distance between coupon items */
        animation: scrollMarquee 30s linear infinite;
        white-space: nowrap;
        will-change: transform;
        height: 160px;
        padding: 10px 0;
    }

    @keyframes scrollMarquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .coupon-item {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(0, 0, 0, 0.6);
        padding: 15px 22px;
        border-radius: 30px;
        border: 1px solid rgba(255, 220, 50, 0.6);
        box-shadow: var(--glow-strong);
        backdrop-filter: blur(6px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        min-width: 320px;
        height: 120px;
        position: relative;
    }

    .coupon-item::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -10px;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background: var(--bg);
        border-radius: 50%;
        z-index: 1;
    }

    .coupon-item::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        background: var(--bg);
        border-radius: 50%;
        z-index: 1;
    }

    .coupon-item:hover {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 0 25px rgba(255, 240, 150, 0.9), 0 0 55px rgba(255, 210, 70, 0.7);
    }

    .coupon-code {
        font-size: 22px;
        font-weight: 800;
        color: var(--yellow);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
        letter-spacing: 1px;
    }

    .coupon-desc {
        color: var(--yellow);
        font-size: 16px;
        font-weight: 700;
    }

    .coupon-extra {
        color: #ccc;
        font-size: 13px;
        margin-top: 4px;
    }

    .coupon-valid {
        color: #ffa500;
        font-size: 12px;
        margin-top: 2px;
        font-style: italic;
    }

    /* Copy notification */
    .copy-notification {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #000;
        color: var(--yellow);
        padding: 12px 20px;
        border-radius: 12px;
        box-shadow: var(--glow-strong);
        border: 1px solid rgba(255, 220, 50, 0.4);
        font-weight: 600;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 9999;
    }

    .copy-notification.show {
        opacity: 1;
        transform: translateY(0);
    }

    /* Coupon Modal */
    .coupon-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.85);
        z-index: 99999;
        backdrop-filter: blur(5px);
    }

    .coupon-modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
        padding: 30px;
        border-radius: 15px;
        border: 2px solid var(--gold);
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
        max-width: 500px;
        width: 90%;
        text-align: center;
        animation: modalAppear 0.5s ease-out;
    }

    @keyframes modalAppear {
        0% {
            opacity: 0;
            transform: translate(-50%, -60%);
        }

        100% {
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }

    .coupon-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 215, 0, 0.3);
        padding-bottom: 15px;
    }

    .coupon-modal-title {
        color: var(--yellow);
        font-size: 24px;
        font-weight: 700;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        margin: 0;
    }

    .close-modal {
        background: none;
        border: none;
        color: var(--text);
        font-size: 24px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .close-modal:hover {
        color: var(--yellow);
    }

    .modal-coupon-item {
        background: rgba(0, 0, 0, 0.6);
        padding: 20px;
        border-radius: 15px;
        border: 1px solid rgba(255, 220, 50, 0.6);
        box-shadow: var(--glow-strong);
        margin-bottom: 20px;
    }

    .modal-coupon-code {
        font-size: 28px;
        font-weight: 800;
        color: var(--yellow);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
        letter-spacing: 2px;
        margin: 10px 0;
    }

    .modal-coupon-desc {
        color: var(--text);
        font-size: 18px;
        margin: 15px 0;
    }

    .modal-coupon-valid {
        color: #ffa500;
        font-size: 14px;
        margin-top: 10px;
    }

    .copy-btn {
        background: linear-gradient(135deg, #ffd700, #ffaa00);
        color: #000;
        border: none;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 10px;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    }

    .copy-btn:hover {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
        transform: translateY(-3px);
    }

    /* ===============================
     OTHER STYLES (unchanged)
     =============================== */
    .section-title {
        color: var(--yellow);
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        right: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        box-shadow: 0 0 8px var(--gold);
    }

    .lead {
        color: #ddd;
    }

    /* ... (rest of your existing styles) ... */

    @media (max-width: 768px) {
        .section-title {
            font-size: 1.5rem !important;
        }

        .coupon-item {
            min-width: 280px;
            padding: 12px 18px;
            height: auto;
        }

        .coupon-code {
            font-size: 18px;
        }

        .coupon-modal-content {
            width: 95%;
            padding: 20px;
        }

        .modal-coupon-code {
            font-size: 22px;
        }
    }
     /* ===============================
     GLOBAL STYLING FOR DARK THEME
     =============================== */
  .section-title {
    color: var(--yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    position: relative;
    display: inline-block;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 8px var(--gold);
  }

  .lead {
    color: #ddd;
  }

  /* ===============================
     HERO SECTION DARK STYLING
     =============================== */
  .hero-section .carousel-caption {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 30px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  }

  .hero-title {
    color: var(--yellow);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  }

  .hero-subtitle {
    color: #f0f0f0;
  }

  .custom-hero-btn {
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .btn-primary.custom-hero-btn {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border: none;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  }

  .btn-primary.custom-hero-btn:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    transform: translateY(-3px);
  }

  .btn-outline-light.custom-hero-btn {
    border-color: var(--gold);
    color: var(--yellow);
    background: transparent;
  }

  .btn-outline-light.custom-hero-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  }

  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  }

  /* ===============================
     ABOUT SECTION DARK STYLING
     =============================== */
  .ram-image-wrapper {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(black, black) padding-box,
                linear-gradient(45deg, #ffd700, #ffaa00, #ffd700) border-box;
    animation: borderGlow 3s infinite alternate;
  }

  @keyframes borderGlow {
    0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    100% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.8), 0 0 50px rgba(255, 215, 0, 0.4); }
  }

  .ram-glow-overlay {
    position: absolute;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    animation: pulseGlow 4s infinite alternate;
    z-index: 2;
    pointer-events: none;
  }

  @keyframes pulseGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
  }

  .ram-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .ram-image-wrapper:hover .ram-image {
    transform: scale(1.03);
  }

  .highlight- {
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
  }

  .highlight-:hover {
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
  }

  /* ===============================
     PACKAGES SECTION DARK STYLING
     =============================== */
  .bg-light {
    background: linear-gradient(to bottom, #0f0f13, #08080b) !important;
  }

  .golden-glow-alive {
    position: relative;
    border: 1px solid transparent;
    background: linear-gradient(#111, #111) padding-box,
                linear-gradient(45deg, #ffd700, #ffaa00, #ffd700) border-box;
    animation: borderPulse 3s infinite alternate;
  }

  @keyframes borderPulse {
    0% { box-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.3); }
  }

  .package-card {
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
  }

  .package-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    animation: shineEffect 3s infinite;
    pointer-events: none;
  }

  @keyframes shineEffect {
    0% { transform: rotate(45deg) translate(-50%, -50%); }
    100% { transform: rotate(45deg) translate(50%, 50%); }
  }

  .package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4) !important;
  }

  .package-card:hover::before {
    animation: shineEffect 1s infinite;
  }

  .swiper-pagination-bullet {
    background: #aaa !important;
    opacity: 0.7;
  }

  .swiper-pagination-bullet-active {
    background: var(--gold) !important;
    box-shadow: 0 0 10px var(--gold);
    opacity: 1;
  }

  .swiper-button-next, .swiper-button-prev {
    color: var(--gold) !important;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }

  /* ===============================
     ABOUT HOME SECTION DARK STYLING
     =============================== */
  #about-home .rounded {
    border: 2px solid transparent;
    background: linear-gradient(black, black) padding-box,
                linear-gradient(45deg, #ffd700, #ffaa00, #ffd700) border-box;
    animation: borderGlow 3s infinite alternate;
  }

  /* ===============================
     INCLUSIONS SECTION DARK STYLING
     =============================== */
  .card {
    background: #111 !important;
    color: #eee;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
  }

  .card-header {
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  }

  .card:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
  }

  /* ===============================
     PRICING & BOOKING DARK STYLING
     =============================== */
  .bg-light-custom {
    background: linear-gradient(to bottom, #0a0a0d, #050507) !important;
  }

  .price-box {
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
  }

  .price-box:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
  }

  .border-golden {
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    transition: all 0.3s ease;
  }

  .border-golden:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  }

  .form-control {
    background: #111 !important;
    color: #eee !important;
  }

  .form-control:focus {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  }
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem !important;
    }
}
  /* ===============================
     FOOTER DARK STYLING
     =============================== */
  footer {
    background: linear-gradient(to top, #080808, #000) !important;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
  }