 
     /*start of home css*/
     :root {
            /* --primary-color: #2c3e50; */
             --primary-color:  #44726f;
             --logoYellowcolor:#ffc400;
             --logoGreencolor:#33a451;
             --logoBluecolor:#4285F4;
              --darkyellow-color:  #f8b90c;
            /* --secondary-color: #e74c3c; */
             --secondary-color: #f6e272;
            /* --accent-color: #3498db; */
              --accent-color: #44726f;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --success-color: #27ae60;
            /* --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
             --gradient-1: linear-gradient(135deg, #44726f 0%, #f6e272 100%); 
/* --gradient-1: linear-gradient(135deg, #44726f 0%, #f8b90c 55%, #f6e272 100%); DARK*/

            /* --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); */
            --gradient-2:#44726f;
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            /* font-family: 'Poppins', sans-serif; */
            font-family: roboto,sans-serif;
            color: var(--dark-color);
            overflow-x: hidden;
            background-color: #f8f9fa;
        }
        
        /* Header Styles */
        .top-bar {
            /* background-color: var(--primary-color); */
            background-color: #34A853;
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .main-header {
            /* background-color: #f8b90c; */
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--secondary-color);
            margin-right: 8px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            /* color: var(--dark-color) !important; */
            color: forestgreen !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
            position: relative;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-nav .nav-link:hover {
            /* color: var(--accent-color) !important; */
            color:
        }
        
        .search-box {
            position: relative;
            max-width: 300px;
        }
        
        .search-box input {
            border-radius: 20px;
            padding-right: 40px;
            border: 1px solid #ddd;
            transition: all 0.3s;
        }
        
        .search-box input:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
        }
        
        .search-box button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--accent-color);
        }
        
        /* Hero Carousel */
       .hero-carousel {
    position: relative;
}

.carousel-item {
    height: 600px;
    position: relative;
}

.carousel-img {
    height: 600px;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}

        
        .carousel-content h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out;
        }
        
        .carousel-content p {
            font-size: 1.4rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-out 0.2s;
            animation-fill-mode: both;
        }
        
        .carousel-content .btn-hero {
            /* background-color: var(--accent-color); */
            background-color: var(--logoGreencolor);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            animation: fadeInUp 1s ease-out 0.4s;
            animation-fill-mode: both;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
        }
        
        .carousel-content .btn-hero:hover {
            background-color: var(--darkyellow-color);
            transform: translateY(-3px);
            box-shadow: var(--darkyellow-color);
            color: white;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 20px;
            backdrop-filter: blur(5px);
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
            background-color: rgba(255, 255, 255, 0.5);
        }
        
        .carousel-indicators .active {
            background-color: white;
        }
        
        /* Quick Search Bar */
        .quick-search {
            background-color: white;
            padding: 30px;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
            margin-top: -40px;
            position: relative;
            z-index: 10;
            border-radius: 15px;
            margin-bottom: 60px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .quick-search-form {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        
        .quick-search-form .form-group {
            flex: 1;
            min-width: 150px;
        }
        
        .quick-search-form .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark-color);
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .quick-search-form .form-group input,
        .quick-search-form .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .quick-search-form .form-group input:focus,
        .quick-search-form .form-group select:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
        }
        
        .btn-search-quick {
            background: var(--gradient-1);
            color: white;
            border: none;
            padding: 12px 35px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            height: fit-content;
            margin-top: 25px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }
        
        .btn-search-quick:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(102, 126, 234, 0.6);
        }
        
        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            /* color: var(--primary-color); */
            color:var(--logoBluecolor);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            /* background: var(--gradient-1); */
               background-color: var(--logoYellowcolor);
            border-radius: 2px;
        }
        
        .section-title p {
            max-width: 600px;
            margin: 20px auto 0;
            color: #666;
        }
        
        /* Swiper Styles */
        .categories-section .swiper {
            width: 100%;
            padding: 20px 0px 20px 20px;
            position: relative;
        }
        .swiper {
            width: 100%;
            padding: 0 0px 20px 20px;
            position: relative;
        }
        
        .categoriesSwiper .swiper-slide {
            background-position: center;
            background-size: cover;
            width: 300px;
            height: 250px;
        }
        .swiper-slide {
            background-position: center;
            background-size: cover;
            width: 300px;
            height: 400px;
        }
        
        .swiper-button-next,
        .swiper-button-prev {
            color: var(--accent-color);
            background-color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: absolute;
            top: 50%;
            left: auto;
            right: auto;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .swiper-button-next {
            right: 10px;
        }
        
        .swiper-button-prev {
            left: 10px;
        }
        
        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 18px;
            font-weight: bold;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--accent-color);
        }
        
        .swiper-pagination {
            bottom: -40px !important;
        }
        
        /* WhatsApp & Call Floating Buttons */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 120px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 28px;
            box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }
        
        .whatsapp-float i {
            margin-top: 2px;
        }
        
        .call-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 190px;
            right: 40px;
            background-color: #007bff;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 28px;
            box-shadow: 2px 2px 6px rgba(0,0,0,0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }
        
        .call-float:hover {
            transform: scale(1.1);
            box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }
        
        .call-float i {
            margin-top: 2px;
        }
        
        @media (max-width: 767px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 80px;
                right: 20px;
                font-size: 24px;
            }
            
            .call-float {
                width: 50px;
                height: 50px;
                bottom: 140px;
                right: 20px;
                font-size: 24px;
            }
        }
         @media (max-width: 576px) {
            .pageWedding-hero-title {
                font-size: 2rem;
            }
            
            .pageWedding-gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .pageWedding-package-card.featured {
                transform: scale(1);
            }
        }
        
        /* Why Choose Us Section */
        .why-choose-us {
            padding: 20px 0;
            background-color: white;
            margin-top: 30px;
        }
        
        .feature-box {
            text-align: center;
            padding: 40px 20px;
            border-radius: 15px;
            background-color: #f8f9fa;
            transition: all 0.3s;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .feature-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            /* background: var(--gradient-1); */
            background-color: var(--logoYellowcolor);
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        
        .feature-box:hover .feature-icon {
            transform: scale(1.1);
            color: var(--darkyellow-color);
        }
        
        .feature-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            /* color: var(--primary-color); */
            color: var(--logoGreencolor);
        }
        
        .feature-description {
            color: #666;
            line-height: 1.6;
        }
        
        /* Travel Inspiration Section */
        .travel-inspiration {
            padding: 20px 0;
            background-color: #f8f9fa;
        }
        
        .inspiration-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 500px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s;
        }
        
        .inspiration-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .inspiration-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s;
        }
        
        .inspiration-card:hover .inspiration-img {
            transform: scale(1.1);
        }
        
        .inspiration-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 40px 20px 20px;
            color: white;
        }
        
        .inspiration-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .inspiration-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Featured Destinations Section */
        .featured-destinations {
            padding: 20px 0;
            background-color: white;
        }
        
        .destination-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 400px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .destination-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .destination-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s;
        }
        
        .destination-card:hover .destination-img {
            transform: scale(1.1);
        }
        
        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 40px 20px 20px;
            color: white;
        }
        
        .destination-name {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .destination-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .destination-packages {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .destination-price {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        .destination-rating {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--primary-color);
            padding: 8px 12px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }
        
        .destination-rating i {
            color: #ffc107;
            margin-right: 5px;
        }
        
        /* Travel Tips Carousel */
        .travel-tips {
            padding: 20px 0;
            background-color: #f8f9fa;
        }
        
        .tip-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
        }
        
        .tip-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .tip-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .tip-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s;
        }
        
        .tip-card:hover .tip-img img {
            transform: scale(1.1);
        }
        
        .tip-content {
            padding: 25px;
        }
        
        .tip-category {
            color: var(--accent-color);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }
        
        .tip-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
            line-height: 1.3;
        }
        
        .tip-description {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .tip-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: #999;
        }
        
        .tip-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
            object-fit: cover;
        }
        
        .tip-read-time {
            background-color: #f0f0f0;
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: 500;
            color: #666;
        }
        
        /* Special Offers Section */
        .special-offers {
            padding: 20px 0;
            background: var(--gradient-1);
            color: white;
        }
        
        .special-offers .section-title h2 {
            color: white;
        }
        
        .special-offers .section-title h2::after {
            background-color: white;
        }
        
        .special-offers .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .offer-card {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .offer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-2);
        }
        
        .offer-card:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .offer-badge {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
            }
        }
        
        .offer-title {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .offer-description {
            margin-bottom: 25px;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .offer-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .offer-price {
            font-size: 2rem;
            font-weight: 700;
        }
        
        .offer-price .original-price {
            font-size: 1.2rem;
            text-decoration: line-through;
            opacity: 0.7;
            margin-left: 10px;
        }
        
        .offer-btn {
            background-color: white;
            color: #764ba2;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }
        
        .offer-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 7px 20px rgba(255, 255, 255, 0.3);
        }
        
        /* Categories Carousel */
        .categories-section {
            padding: 20px 0;
            background-color: white;
        }
        
        .category-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 15px;
            background-color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            /* height: 100%; */
        }
        
        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-3);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 0;
        }
        
        .category-card:hover::before {
            opacity: 0.1;
        }
        
        .category-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .category-icon {
            font-size: 1.5 rem;
            color: var(--accent-color);
            margin-bottom: 0px;
            position: relative;
            z-index: 1;
            transition: all 0.3s;
        }
        
        .category-card:hover .category-icon {
            transform: scale(1.1);
            color: var(--darkyellow-color);
        }
        
        .category-card h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .category-card p {
            color: #666;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }
        
        .category-card .category-count {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary-color);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Testimonials Carousel */
        .testimonials-section {
            padding: 20px 0;
            background-color: #f8f9fa;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-card::before {
            content: '\f10d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 20px;
            left: 20px;
            color: rgba(52, 152, 219, 0.1);
            font-size: 2.5rem;
        }
        
        .testimonial-content {
            margin-bottom: 25px;
            font-style: italic;
            color: #555;
            line-height: 1.6;
            font-size: 1.05rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
            border: 3px solid #f0f0f0;
        }
        
        .author-info h4 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--primary-color);
        }
        
        .author-info p {
            margin: 0;
            font-size: 0.9rem;
            color: #666;
        }
        
        .rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        /* Packages Section */
       
        
        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
            margin-top: -40px;
        }
        
        .filter-btn {
            padding: 10px 25px;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .filter-btn.active, .filter-btn:hover {
            /* background: var(--gradient-1); */
             background-color: var(--logoGreencolor);
            color: white;
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }
        
        .package-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .package-item{
            margin-bottom: 20px;
        }
        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .package-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .package-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s;
        }
        
        .package-card:hover .package-img img {
            transform: scale(1.1);
        }
        
        /* .package-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
        }
         */
        .package-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .package-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .package-location {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .package-location i {
            color: var(--secondary-color);
            margin-right: 5px;
        }
        
        .package-description {
            color: #555;
            font-size: 0.95rem;
            /* margin-bottom: 20px; */
            margin-bottom: -10px;
            flex-grow: 1;
            line-height: 1.6;
        }
       
        .package-features {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .package-feature {
            display: flex;
            align-items: center;
            font-size: 0.85rem;
            color: #666;
        }
        
        .package-feature i {
            margin-right: 5px;
            color: var(--accent-color);
        }
        
        .package-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .package-price {
            font-size: 1 rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .package-price span {
            font-size: 0.9rem;
            font-weight: 400;
            color: #666;
        }
        
        .package-btn {
            /* background: var(--gradient-1); */
            background: var(--logoGreencolor);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }
        
        .package-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(102, 126, 234, 0.6);
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background: var(--gradient-4);
            padding: 70px 0;
            color: white;
            text-align: center;
        }
        
        .newsletter-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .newsletter-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 15px;
        }
        
        .newsletter-form input {
            flex-grow: 1;
            padding: 15px 25px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
        }
        
        .newsletter-form button {
            padding: 15px 30px;
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
        }
        
        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(231, 76, 60, 0.6);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-content {
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .footer-logo i {
            color: var(--secondary-color);
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .footer-description {
            margin-bottom: 25px;
            color: #ddd;
            line-height: 1.6;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s;
            position: relative;
        }
        
        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-links a:hover::before {
            width: 100%;
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            color: var(--secondary-color);
            margin-right: 10px;
            margin-top: 3px;
            font-size: 1.1rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Special Offer Popup */
        .offer-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .offer-popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: white;
            border-radius: 15px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow: auto;
            position: relative;
            transform: scale(0.7);
            transition: transform 0.3s;
        }
        
        .offer-popup.active .popup-content {
            transform: scale(1);
        }
        
        .popup-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .popup-close:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: rotate(90deg);
        }
        
        .popup-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        .popup-body {
            padding: 30px;
        }
        
        .popup-badge {
            display: inline-block;
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .popup-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .popup-description {
            margin-bottom: 25px;
            color: #555;
            line-height: 1.6;
        }
        
        .popup-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .popup-price {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .popup-price .original-price {
            font-size: 1.3rem;
            text-decoration: line-through;
            color: #999;
            margin-left: 10px;
        }
        
        .popup-btn {
            background: var(--gradient-1);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }
        
        .popup-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(102, 126, 234, 0.6);
        }
        
        .popup-features {
            margin-bottom: 25px;
        }
        
        .popup-features h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .popup-features ul {
            list-style: none;
            padding: 0;
        }
        
        .popup-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .popup-features i {
            color: var(--success-color);
            margin-right: 10px;
        }
        
        .popup-countdown {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .popup-countdown h4 {
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .countdown-item {
            background-color: white;
            padding: 10px 15px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            min-width: 70px;
        }
        
        .countdown-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .countdown-label {
            font-size: 0.8rem;
            color: #666;
        }
        
        /* Mobile Responsive Styles */
        @media (max-width: 992px) {
            .carousel-content h1 {
                font-size: 2.5rem;
            }
            
            .quick-search-form {
                flex-direction: column;
            }
            
            .quick-search-form .form-group {
                width: 100%;
            }
            
            .btn-search-quick {
                width: 100%;
                margin-top: 10px;
            }
            
            .swiper-button-next,
            .swiper-button-prev {
                width: 40px;
                height: 40px;
            }
              .packagesDetails-overview-content {
                grid-template-columns: 1fr !important;
            }
            
            .packagesDetails-booking-card {
                position: relative;
                top: 0;
            }
            
            .packagesDetails-inclusions-grid {
                grid-template-columns: 1fr !important;
            }
            
            .packagesDetails-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .packagesDetails-itinerary-grid {
                grid-template-columns: 1fr !important;
            }
              .pageWedding-about-content {
                grid-template-columns: 1fr;
            }
            
            .pageWedding-hero-title {
                font-size: 3rem;
            }
        }
        
       
        
        /* Loading Animation */
        .loader {
            border: 5px solid #f3f3f3;
            border-top: 5px solid var(--accent-color);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
            display: none;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Modal Styles */
        .modal-content {
            border-radius: 15px;
            overflow: hidden;
        }
        
        .modal-header {
            background: var(--gradient-1);
            color: white;
            border: none;
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .form-group-modal {
            margin-bottom: 20px;
        }
        
        .form-group-modal label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-group-modal input, .form-group-modal select, .form-group-modal textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .form-group-modal input:focus, .form-group-modal select:focus, .form-group-modal textarea:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
        }
        
        .form-group-modal textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .btn-submit {
            background: var(--gradient-1);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(102, 126, 234, 0.6);
        }
           /* FAQ Section */
       .faq-section{
    padding:20px 0;
    background:#f8f9fa;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-card{
    border:none;
    margin-bottom:16px;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.faq-btn{
    /* background:var(--accent-color); */
    background-color: var(--logoGreencolor);
    color:#fff;
    font-weight:600;
    font-size:1.05rem;
    padding:20px;
}

.faq-btn:not(.collapsed){
    /* background:#6f9f9b; */
    background-color: var(--logoYellowcolor);
    color:#fff;
}

.accordion-button::after{
    filter:brightness(0) invert(1);
    transition:transform .3s;
}

.accordion-button:not(.collapsed)::after{
    transform:rotate(180deg);
}

.accordion-body{
    background:#fff;
    color:#555;
    line-height:1.7;
    padding:22px;
}
 /*End Faq */


 /*End of Home Css*/

 /*Start of about css*/
  /* About Hero Section */
        .about-hero {
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(44, 62, 80, 0.7) 100%), url('https://picsum.photos/seed/about-hero-travel/1920/600.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            color: white;
        }
        
        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
        
        .about-hero-content {
            text-align: center;
            z-index: 2;
            max-width: 800px;
        }
        
        .about-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }
        
        .about-hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 30px;
        }
        
        .about-hero .btn-contact {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
            animation: fadeInUp 1s ease-out 0.2s;
            animation-fill-mode: both;
        }
        
        .about-hero .btn-contact:hover {
            background-color: var(--darkyellow-color);
            transform: translateY(-3px);
            /* box-shadow: 0 7px 20px rgba(231, 76, 60, 0.6); */
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Who We Are Section */
        .who-we-are {
            padding: 30px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 10px;
        }
        
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            /* color: var(--primary-color); */
            color:var(--logoBluecolor);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            /* background: var(--gradient-1); */
               background-color: var(--logoYellowcolor);
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
            font-size: 1.1rem;
        }
        
        .who-we-are-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .who-we-are-image {
            flex: 1;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .who-we-are-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .who-we-are-image:hover img {
            transform: scale(1.05);
        }
        
        .who-we-are-text {
            flex: 1;
        }
        
        .who-we-are-text h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .who-we-are-text p {
            margin-bottom: 20px;
            line-height: 1.6;
            color: #555;
        }
        
        .who-we-are-text .feature-list {
            list-style: none;
            padding: 0;
            margin-top: 30px;
        }
        
        .who-we-are-text .feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        
        .who-we-are-text .feature-list i {
            color: var(--accent-color);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        /* Our Story Section */
        .our-story {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: var(--accent-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .timeline-container {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        
        .timeline-container::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: white;
            border: 4px solid var(--accent-color);
            top: 20px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-left {
            left: 0;
        }
        
        .timeline-right {
            left: 50%;
        }
        
        .timeline-left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid white;
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent white;
        }
        
        .timeline-right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid white;
            border-width: 10px 10px 10px 0;
            border-color: transparent white transparent transparent;
        }
        
        .timeline-right::after {
            left: -10px;
        }
        
        .timeline-content {
            padding: 25px 30px;
            background-color: white;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .timeline-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .timeline-content .year {
            display: inline-block;
            background: var(--gradient-1);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .timeline-content p {
            line-height: 1.6;
            color: #555;
        }
        
        /* Mission Vision Values Section */
        .mission-vision {
            padding: 30px 0;
            background-color: white;
        }
        
        .mvv-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .mvv-card {
            background-color: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .mvv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .mvv-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--accent-color);
        }
        
        .mvv-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .mvv-card p {
            line-height: 1.6;
            color: #555;
        }
        
        /* Values List */
        .values-list {
            margin-top: 30px;
            text-align: left;
        }
        
        .values-list .value-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .values-list .value-item i {
            color: var(--accent-color);
            margin-right: 10px;
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .member-image {
            height: 280px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.05);
        }
        
        .member-info {
            padding: 25px;
            text-align: center;
        }
        
        .member-info h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .member-info .position {
            color: var(--accent-color);
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .member-info p {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .member-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background-color: rgba(52, 152, 219, 0.1);
            border-radius: 50%;
            color: var(--accent-color);
            transition: all 0.3s;
        }
        
        .member-social a:hover {
            background-color: var(--accent-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Why Choose Us Section */
        .why-choose {
            padding: 80px 0;
            background-color: white;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-1);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .feature-icon {
            font-size: 3rem;
            /* color: var(--accent-color); */
            color:var(--logoGreencolor);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .feature-card p {
            line-height: 1.6;
            color: #555;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: var(--logoBluecolor);
            color: white;
            text-align: center;
        }
        
        .cta-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-primary-custom {
            background-color: white;
            color: var(--primary-color);
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
            color: var(--primary-color);
        }
        
        .btn-outline-custom {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-outline-custom:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* End of About Css */

        /* Start of Contact Css */
 /* Contact Page Hero Section */
        .contact-hero {
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(44, 62, 80, 0.7) 100%), url('https://picsum.photos/seed/contact-hero-travel/1920/600.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            color: white;
        }
        
        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
        
        .contact-hero-content {
            text-align: center;
            z-index: 2;
            max-width: 800px;
        }
        
        .contact-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }
        
        .contact-hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-hero .btn-contact {
            background-color: var(--darkyellow-color);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
            animation: fadeInUp 1s ease-out 0.2s;
            animation-fill-mode: both;
        }
        
        .contact-hero .btn-contact:hover {
            background-color:var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: var(--secondary-color);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Contact Info Cards */
        .contact-info-section {
            padding: 40px 0;
            background-color: white;
        }
        
        .info-card {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--logoYellowcolor);
        }
        
        .info-icon {
            font-size: 3rem;
            /* color: var(--accent-color); */
            color:var(--logoGreencolor);
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        
        .info-card:hover .info-icon {
            transform: scale(1.1);
            color: var(--logoYellowcolor);
        }
        
        .info-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            /* color: var(--primary-color); */
            color: var(--logoBluecolor);
        }
        
        .info-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .info-content .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.95rem;
            color: #555;
        }
        
        .info-content .contact-item i {
            color: var(--accent-color);
            margin-right: 10px;
            width: 20px;
        }
        
        .info-content .contact-item a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .info-content .contact-item a:hover {
            color: #2980b9;
        }
        
        /* Contact Form Section */
        .contact-form-section {
            padding: 40px 0;
            background-color: #f8f9fa;
        }
        
        .contact-form-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .contact-form-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-2);
        }
        
        .contact-form-content {
            padding: 10px;
        }
    
         .contact-form-content h2{
            font-size: 24px;
            font-weight: 500;
        }
        .contact-form-row {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .form-group {
            flex: 1;
            position: relative;
            margin-top: 12px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0px;
            font-weight: 500;
            color: var(--primary-color);
            font-size: 0.95rem;
        }
        
        .form-group label span {
            color: var(--secondary-color);
        }
        
        .form-control {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.3s;
            background-color: #f8f9fa;
        }
        
        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
            background-color: white;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-hint {
            font-size: 0.85rem;
            color: #999;
            margin-top: 5px;
        }
        
        .submit-btn {
            /* background: var(--gradient-1); */
            background-color: var(--logoGreencolor);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            width: 100%;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(102, 126, 234, 0.6);
        }
        
        /* Map Section */
        .map-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .map-container {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            height: 500px;
        }
        
        .map-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-3);
        }
        
        .map-wrapper {
            display: flex;
            height: 100%;
        }
        
        .map-info {
            flex: 1;
            padding: 40px;
            background-color: var(--primary-color);
            color: white;
        }
        
        .map-info h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .map-info p {
            margin-bottom: 15px;
            opacity: 0.9;
        }
        
        .map-info .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }
        
        .map-info .contact-item i {
            margin-right: 10px;
            width: 20px;
        }
        
        .map-info .contact-item a {
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .map-info .contact-item a:hover {
            color: #f0f0f0;
        }
        
        .map-frame {
            flex: 2;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
        }
        
        .map-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
         /* End of Contact Css */

          /* Start of Package Css */

          /* Package Hero Section */
       
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Filter Section */
        .filter-section {
            padding: 40px 0;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .filter-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 10px 25px;
            border: 2px solid var(--accent-color);
            background-color: white;
            color: var(--accent-color);
            border-radius: 25px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.95rem;
        }
        
        .filter-btn:hover, .filter-btn.active {
            /* background-color: var(--accent-color); */
            background-color: var(--logoGreencolor);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        /* Packages Section */
        .packages-section {
            padding: 10px 0;
            /* background-color: #f8f9fa; */
            /* background-color: #FFFFE6; */
            background-color: #EAF7EE;
            margin-top: 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
             color:var(--logoBluecolor);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            /* background: var(--gradient-1); */
            background-color: var(--logoYellowcolor);
        }
        .categories-section .section-title{
            margin-bottom: 15px;
        }
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #666;
            font-size: 1.1rem;
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        /* Package Card */
        .package-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        
        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .package-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--darkyellow-color);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.85rem;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .package-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .package-card:hover .package-image img {
            transform: scale(1.1);
        }
        
        .package-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .package-card:hover .package-overlay {
            opacity: 1;
        }
        
        .package-content {
            padding: 30px;
        }
        
        .package-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 15px;
        }
        
        .package-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .package-location {
            color: var(--accent-color);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .package-location i {
            font-size: 0.9rem;
        }
        
        .package-price {
            text-align: right;
        }
        
        .price-amount {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .price-period {
            font-size: 0.85rem;
            color: #999;
        }
        
        .package-duration {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding: 10px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .duration-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: #666;
        }
        
        .duration-item i {
            color: var(--accent-color);
        }
        
        .package-highlights {
            margin-bottom: 25px;
        }
        
        .highlight-list {
            list-style: none;
            padding: 0;
        }
        
        .highlight-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 0.95rem;
            color: #555;
        }
        
        .highlight-list i {
            color: var(--success-color);
            font-size: 0.9rem;
        }
        
        .package-footer {
            display: flex;
            gap: 15px;
        }
        
        .btn-package {
            flex: 1;
            padding: 10px 5px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            text-align: center;
            display: inline-block;
        }
        
        .btn-primary-package {
            background: var(--gradient-1);
            color: white;
        }
        
        .btn-primary-package:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
            color: white;
        }
        
        .btn-outline-package {
            background-color: transparent;
            color: var(--logoGreencolor);
            border: 2px solid var(--logoYellowcolor);
        }
        
        .btn-outline-package:hover {
            background-color: var(--logoYellowcolor);
            color: white;
            transform: translateY(-2px);
        }
        
        /* View More Button */
        .view-more-container {
            text-align: center;
            margin-top: 40px;
        }
        
        .btn-view-more {
            background: var(--gradient-3);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
        }
        
        .btn-view-more:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(79, 172, 254, 0.6);
            color: white;
        }
        
        /* Quick View Modal */
        .modal-content {
            border-radius: 15px;
            overflow: hidden;
        }
        
        .modal-header {
            background: var(--gradient-1);
            color: white;
            border: none;
        }
        
        .modal-header .btn-close {
            filter: brightness(0) invert(1);
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .quick-view-content h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .quick-view-content .price-display {
            font-size: 2rem;
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .quick-view-content .package-details {
            margin-bottom: 20px;
        }
        
        .quick-view-content .package-details h5 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .quick-view-content .package-details ul {
            list-style: none;
            padding: 0;
        }
        
        .quick-view-content .package-details li {
            padding: 5px 0;
            color: #555;
        }
        
        .quick-view-content .package-details li i {
            color: var(--success-color);
            margin-right: 10px;
        }
        /* End of package Css */

         /* start of package-details Css */
            /* Package Detail Hero Section */
       
.packagesDetails-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 100%;
    opacity: 0.9;
    margin-top: 20px;
}

/* Meta */
.packagesDetails-hero-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.packagesDetails-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.packagesDetails-meta-item i {
    color: var(--accent-color, #ffc107);
    font-size: 1.3rem;
}

        /* Package Overview Section */
        .packagesDetails-overview {
            padding: 60px 0;
            background-color: white;
        }
        
        .packagesDetails-overview-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        
        .packagesDetails-overview-left h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            /* color: var(--primary-color); */
            color: var(--logoBluecolor);
            margin-bottom: 20px;
        }
        
        .packagesDetails-overview-left p {
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }
        
        .packagesDetails-highlights-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .packagesDetails-highlight-item {
            display: flex;
            align-items: start;
            gap: 15px;
        }
        
        .packagesDetails-highlight-item i {
            color: var(--success-color);
            font-size: 1.2rem;
            margin-top: 3px;
        }
        
        .packagesDetails-highlight-item span {
            color: #555;
            line-height: 1.5;
        }
        
        /* Booking Card */
        .packagesDetails-booking-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
            position: sticky;
            top: 20px;
        }
        
        .packagesDetails-price-display {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .packagesDetails-price-label {
            font-size: 0.9rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .packagesDetails-price-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin: 10px 0;
        }
        
        .packagesDetails-price-period {
            color: #666;
            font-size: 0.95rem;
        }
        
        .packagesDetails-booking-info {
            margin-bottom: 25px;
        }
        
        .packagesDetails-info-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .packagesDetails-info-row:last-child {
            border-bottom: none;
        }
        
        .packagesDetails-info-label {
            color: #666;
            font-size: 0.95rem;
        }
        
        .packagesDetails-info-value {
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .packagesDetails-booking-form {
            margin-top: 25px;
        }
        
        .packagesDetails-form-group {
            margin-bottom: 20px;
        }
        
        .packagesDetails-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary-color);
            font-size: 0.95rem;
        }
        
        .packagesDetails-form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        
        .packagesDetails-form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
            outline: none;
        }
        
        .packagesDetails-btn-book {
            width: 100%;
            background: var(--gradient-1);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }
        
        .packagesDetails-btn-book:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 20px rgba(102, 126, 234, 0.6);
        }
        
        .packagesDetails-trust-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        .packagesDetails-trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.85rem;
            color: #666;
        }
        
        .packagesDetails-trust-badge i {
            font-size: 1.5rem;
            color: var(--success-color);
            margin-bottom: 5px;
        }
        
        /* Slider Section */
        .packagesDetails-slider-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .packagesDetails-slider-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .packagesDetails-slider-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .packagesDetails-slider-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            /* color: var(--primary-color); */
            color:var(--logoBluecolor);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .packagesDetails-slider-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient-1);
        }
        
        .packagesDetails-slider-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            /* height: 100%; */
        }
        
        .packagesDetails-slider-card h3 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .packagesDetails-slider-card h3 i {
            color: var(--accent-color);
        }
        
        .packagesDetails-slider-card p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .packagesDetails-slider-card ul {
            list-style: none;
            padding: 0;
        }
        
        .packagesDetails-slider-card li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: #555;
        }
        
        .packagesDetails-slider-card li i {
            color: var(--success-color);
        }
        
        /* Itinerary Section */
        .packagesDetails-itinerary-section {
            padding: 30px 0;
            background-color: white;
        }
        
        .packagesDetails-section-title {
            text-align: center;
            /* margin-bottom: 50px; */
        }
        
        .packagesDetails-section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            /* color: var(--primary-color); */
            color: var(--logoBluecolor);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .packagesDetails-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            /* background: var(--gradient-1); */
            background-color: var(--logoYellowcolor);
        }
        
        .packagesDetails-itinerary-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .packagesDetails-day-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
        }
        
        .packagesDetails-day-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        
        .packagesDetails-day-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .packagesDetails-day-number {
            width: 60px;
            height: 60px;
            /* background: var(--gradient-1); */
            background-color: var(--logoBluecolor);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .packagesDetails-day-title h3 {
            font-size: 18px;
            /* color: var(--primary-color); */
            color: var(--logoGreencolor);
            margin-bottom: 5px;
            font-weight: bold;
        }
        .packagesDetails-day-title {
         max-width: 80%;
        }
        .packagesDetails-day-title p {
            color: #666;
            margin: 0;
        }
        
        .packagesDetails-day-content {
            padding-left: 10px;
        }
        
        .packagesDetails-day-content ul {
            list-style: none;
            padding: 0;
        }
        
        .packagesDetails-day-content li {
            display: flex;
            align-items: start;
            gap: 15px;
            margin-bottom: 15px;
            line-height: 1.6;
            color: #555;
        }
        
        .packagesDetails-day-content li i {
            color: var(--accent-color);
            margin-top: 3px;
        }
        
        /* Inclusions Section */
        .packagesDetails-inclusions-section {
            padding: 30px 0;
            background-color: #f8f9fa;
        }
        
        .packagesDetails-inclusions-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .packagesDetails-inclusion-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .packagesDetails-inclusion-box h3 {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
        }
        
        .packagesDetails-inclusion-box.included h3 i {
            color: var(--success-color);
        }
        
        .packagesDetails-inclusion-box.excluded h3 i {
            color: var(--secondary-color);
        }
        
        .packagesDetails-inclusion-list {
            list-style: none;
            padding: 0;
        }
        
        .packagesDetails-inclusion-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: #555;
        }
        
        .packagesDetails-inclusion-list li i {
            font-size: 1.1rem;
        }
        
        .included li i {
            color: var(--success-color);
        }
        
        .excluded li i {
            color: var(--secondary-color);
        }
        
        /* Gallery Section */
        .packagesDetails-gallery-section {
            padding: 30px 0;
            background-color: white;
        }
        
        .packagesDetails-gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        
        .packagesDetails-gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .packagesDetails-gallery-item:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .packagesDetails-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .packagesDetails-gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .packagesDetails-gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .packagesDetails-gallery-item:hover .packagesDetails-gallery-overlay {
            opacity: 1;
        }
        
        .packagesDetails-gallery-overlay i {
            color: white;
            font-size: 2rem;
        }
        
        /* Gallery Modal/Lightbox */
        .packagesDetails-gallery-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            overflow: hidden;
        }
        
        .packagesDetails-gallery-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .packagesDetails-modal-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }
        
        .packagesDetails-modal-image {
            width: 100%;
            height: 600px;
            border-radius: 5px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
        }
        
        .packagesDetails-modal-close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            z-index: 1001;
        }
        
        .packagesDetails-modal-close:hover {
            color: #bbb;
        }
        
        .packagesDetails-modal-prev,
        .packagesDetails-modal-next {
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -50px;
            color: white;
            font-weight: bold;
            font-size: 24px;
            transition: 0.3s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0, 0, 0, 0.5);
            cursor: pointer;
        }
        
        .packagesDetails-modal-next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }
        
        .packagesDetails-modal-prev:hover,
        .packagesDetails-modal-next:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
        
        .packagesDetails-modal-caption {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 700px;
            text-align: center;
            color: #ccc;
            padding: 10px 0;
            height: 30px;
        }
        
        /* Reviews Section */
        .packagesDetails-reviews-section {
            padding: 30px 0;
            background-color: #f8f9fa;
        }
        
        .packagesDetails-reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .packagesDetails-review-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .packagesDetails-review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }
        
        .packagesDetails-review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .packagesDetails-reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .packagesDetails-reviewer-info h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .packagesDetails-review-date {
            color: #999;
            font-size: 0.9rem;
        }
        
        .packagesDetails-review-rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .packagesDetails-review-text {
            color: #555;
            line-height: 1.6;
            font-style: italic;
        }
        
        /* Related Packages */
        .packagesDetails-related-section {
            padding: 60px 0;
            background-color: white;
        }
        
        .packagesDetails-related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .packagesDetails-related-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .packagesDetails-related-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .packagesDetails-related-image {
            height: 200px;
            overflow: hidden;
        }
        
        .packagesDetails-related-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .packagesDetails-related-card:hover .packagesDetails-related-image img {
            transform: scale(1.1);
        }
        
        .packagesDetails-related-content {
            padding: 25px;
        }
        
        .packagesDetails-related-content h3 {
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .packagesDetails-related-content p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .packagesDetails-related-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .packagesDetails-price-tag {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        
        .packagesDetails-btn-related {
            background: var(--gradient-1);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .packagesDetails-btn-related:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
            color: white;
        }
          /* End of package-details Css */

          /*start of wedding css*/
           /* Sticky Header - Desktop Only */
        .pageWedding-sticky-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            /* background-color: rgba(255, 255, 255, 0.95); */
            background-color: lavender;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }
        
        .pageWedding-sticky-header.visible {
            transform: translateY(0);
        }
        
        .pageWedding-nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 25px 30px;
        }
        
        .pageWedding-logo {
            display: none; /* Hide logo in sticky header for desktop */
        }
        
        .pageWedding-nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .pageWedding-nav-item {
          margin: 0 15px;
    background: white;
    padding: 5px 10px;
    border-radius: 10px;
}
        
        .pageWedding-nav-link {
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
            position: relative;
            transition: color 0.3s;
        }
        
        .pageWedding-nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--wedding-accent);
            transition: width 0.3s;
        }
        
        .pageWedding-nav-link:hover {
            color: var(--wedding-accent);
        }
        
        .pageWedding-nav-link:hover::after {
            width: 100%;
        }
        
        /* Mobile Bottom Navigation */
        .pageWedding-mobile-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
            z-index: 999;
            padding: 10px 0;
        }
        
        .pageWedding-mobile-nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .pageWedding-mobile-menu-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 5px 15px;
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .pageWedding-mobile-menu-btn:hover {
            background-color: rgba(243, 156, 156, 0.1);
        }
        
        .pageWedding-mobile-menu-btn span {
            font-size: 0.7rem;
            margin-top: 3px;
        }
        
        /* Mobile Bottom Menu Panel */
        .pageWedding-bottom-menu {
            position: fixed;
            bottom: -100%;
            left: 0;
            width: 100%;
            height: 70vh;
            background-color: white;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow-y: auto;
        }
        
        .pageWedding-bottom-menu.active {
            bottom: 0;
        }
        
        .pageWedding-bottom-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #eee;
            background-color: #f8f9fa;
        }
        
        .pageWedding-bottom-menu-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .pageWedding-bottom-menu-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #999;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .pageWedding-bottom-menu-close:hover {
            color: var(--primary-color);
        }
        
        .pageWedding-bottom-menu-content {
            padding: 20px;
        }
        
        .pageWedding-bottom-menu-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .pageWedding-bottom-menu-nav li {
            margin-bottom: 10px;
        }
        
        .pageWedding-bottom-menu-nav a {
            color: var(--primary-color);
            font-weight: 500;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            padding: 15px 20px;
            border-radius: 10px;
            transition: all 0.3s;
            background-color: #f8f9fa;
        }
        
        .pageWedding-bottom-menu-nav a:hover {
            background-color: var(--wedding-accent);
            color: white;
            transform: translateX(5px);
        }
        
        /* Hero Slider Section */
        .pageWedding-hero-btn{
           background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);  
        }
        
      
        /* About Section */
        .pageWedding-about {
            padding: 80px 0;
            background-color: white;
        }
        
        .pageWedding-section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .pageWedding-section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .pageWedding-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gradient-2);
        }
        
        .pageWedding-about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .pageWedding-about-text h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .pageWedding-about-text p {
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }
        
        .pageWedding-about-features {
            margin-top: 30px;
        }
        
        .pageWedding-about-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .pageWedding-about-feature i {
            color: var(--wedding-accent);
            font-size: 1.5rem;
            margin-right: 15px;
            width: 30px;
        }
        
        .pageWedding-about-feature span {
            font-size: 1.1rem;
            color: #555;
        }
        
        .pageWedding-about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pageWedding-about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .pageWedding-about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Destinations Section */
        .pageWedding-destinations {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .pageWedding-destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pageWedding-destination-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
        }
        
        .pageWedding-destination-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .pageWedding-destination-image {
            height: 200px;
            overflow: hidden;
        }
        
        .pageWedding-destination-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .pageWedding-destination-card:hover .pageWedding-destination-image img {
            transform: scale(1.1);
        }
        
        .pageWedding-destination-content {
            padding: 25px;
        }
        
        .pageWedding-destination-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .pageWedding-destination-content p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .pageWedding-destination-btn {
            color: var(--wedding-accent);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .pageWedding-destination-btn:hover {
            color: var(--secondary-color);
        }
        
        .pageWedding-destination-btn i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .pageWedding-destination-btn:hover i {
            transform: translateX(5px);
        }
        
        /* Packages Section */
        .pageWedding-packages {
            padding: 80px 0;
            background-color: white;
        }
        
        .pageWedding-packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .pageWedding-package-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .pageWedding-package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .pageWedding-package-card.featured {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(243, 156, 156, 0.3);
        }
        
        .pageWedding-package-image {
            height: 250px;
            overflow: hidden;
        }
        
        .pageWedding-package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .pageWedding-package-card:hover .pageWedding-package-image img {
            transform: scale(1.1);
        }
        
        .pageWedding-package-header {
            background: var(--gradient-2);
            color: white;
            /* padding: 10px 10px; */
            text-align: center;
        }
        
       
        
        .pageWedding-package-title {
            font-size: 1.5rem;
            font-weight: 600;
            /* margin-bottom: 10px; */
        }
        
        .pageWedding-package-price {
            font-size: 2rem;
            font-weight: 700;
            /* margin-bottom: 5px; */
        }
        
        .pageWedding-package-period {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .pageWedding-package-content {
            padding: 10px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .pageWedding-package-features {
            list-style: none;
            padding: 0;
            margin-bottom: 10px;
            flex-grow: 1;
        }
        
        .pageWedding-package-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 5px;
            color: #555;
        }
        
        .pageWedding-package-features i {
            color: var(--wedding-accent);
        }
        
       
        
        /* Services Section */
        .pageWedding-services {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .pageWedding-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .pageWedding-service-card {
            background-color: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
            text-align: center;
        }
        
        .pageWedding-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .pageWedding-service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .pageWedding-service-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .pageWedding-service-card p {
            line-height: 1.6;
            color: #555;
        }
        .pageWedding-service-card:hover .pageWedding-service-icon {
            font-size: 3rem;
            color: var(--darkyellow-color);
            margin-bottom: 20px;
        }
        /* Gallery Section */
        .pageWedding-gallery {
            padding: 80px 0;
            background-color: white;
        }
        
        .pageWedding-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .pageWedding-gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .pageWedding-gallery-item:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .pageWedding-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .pageWedding-gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .pageWedding-gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .pageWedding-gallery-item:hover .pageWedding-gallery-overlay {
            opacity: 1;
        }
        
        .pageWedding-gallery-overlay i {
            color: white;
            font-size: 2rem;
        }
        
        /* Gallery Modal/Lightbox */
        .pageWedding-gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
}

.pageWedding-gallery-modal.active {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
}

/* Modal Content */
.pageWedding-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

/* Image */
.pageWedding-modal-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
}

/* Close Button */
.pageWedding-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1100;
}

.pageWedding-modal-close:hover {
    color: #bbb;
}

/* Prev & Next Buttons */
.pageWedding-modal-prev,
.pageWedding-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    border-radius: 5px;
    user-select: none;
    z-index: 1100;
}

.pageWedding-modal-prev {
    left: 20px;
}

.pageWedding-modal-next {
    right: 20px;
}

.pageWedding-modal-prev:hover,
.pageWedding-modal-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
        
        /* Why Choose Us Section */
        .pageWedding-why-choose {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .pageWedding-why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pageWedding-why-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
        }
        
        .pageWedding-why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .pageWedding-why-icon {
            font-size: 2.5rem;
            color: var(--wedding-accent);
            margin-bottom: 20px;
        }
        
        .pageWedding-why-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .pageWedding-why-card p {
            line-height: 1.6;
            color: #555;
        }
        
        /* Testimonials Section */
        .pageWedding-testimonials {
            padding: 80px 0;
            background-color: white;
        }
        
        .pageWedding-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .pageWedding-testimonial-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }
        
        .pageWedding-testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .pageWedding-testimonial-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .pageWedding-testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .pageWedding-testimonial-info h4 {
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .pageWedding-testimonial-date {
            color: #999;
            font-size: 0.9rem;
        }
        
        .pageWedding-testimonial-rating {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .pageWedding-testimonial-text {
            color: #555;
            line-height: 1.6;
            font-style: italic;
        }
        
        /* FAQ Section */
        .pageWedding-faq {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .pageWedding-faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .pageWedding-faq-item {
            background-color: white;
            border-radius: 10px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .pageWedding-faq-question {
            padding: 20px 25px;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }
        
        .pageWedding-faq-question:hover {
            background-color: rgba(243, 156, 156, 0.1);
        }
        
        .pageWedding-faq-question i {
            transition: transform 0.3s;
        }
        
        .pageWedding-faq-item.active .pageWedding-faq-question i {
            transform: rotate(180deg);
        }
        
        .pageWedding-faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .pageWedding-faq-item.active .pageWedding-faq-answer {
            padding: 0 25px 20px;
            max-height: 500px;
        }
        
        .pageWedding-faq-answer p {
            color: #555;
            line-height: 1.6;
        }
        
        /* Enquiry Button */
        .pageWedding-enquiry-btn {
            position: fixed;
            right: 30px;
            bottom: 30px;
            background: var(--gradient-2);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 25px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(243, 156, 156, 0.4);
            z-index: 998;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .pageWedding-enquiry-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(243, 156, 156, 0.6);
        }
        
        /* Contact Form Modal */
        .pageWedding-contact-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1001;
            overflow: auto;
        }
        
        .pageWedding-contact-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .pageWedding-contact-modal-content {
            background-color: white;
            border-radius: 15px;
            width: 90%;
            max-width: 500px;
            padding: 40px;
            position: relative;
            animation: modalFadeIn 0.3s;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .pageWedding-modal-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #999;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .pageWedding-modal-close-btn:hover {
            color: var(--primary-color);
        }
        
        .pageWedding-contact-form h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .pageWedding-form-group {
            margin-bottom: 20px;
        }
        
        .pageWedding-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary-color);
        }
        
        .pageWedding-form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.3s;
        }
        
        .pageWedding-form-control:focus {
            border-color: var(--wedding-accent);
            box-shadow: 0 0 0 0.2rem rgba(243, 156, 156, 0.25);
            outline: none;
        }
        
        .pageWedding-form-submit {
            background: var(--gradient-2);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }
        
        .pageWedding-form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 20px rgba(243, 156, 156, 0.6);
        }
#packagesDetailsSlider .carousel-item{
    height: auto;
}
.contact-image img{
    width: 100%;
    height: 600px;   /* increase desktop height here */
    object-fit: cover;
}
.form-hint{
    display: none;
}


.logo-img {
    height: 50px;   /* adjust as needed */
    width: auto;
}

.travel-partner-section {
 margin-bottom: 30px;
    padding: 30px 0;
    background: #EAF7EE;
    text-align: center;
}

.travel-partner-section .section-title{
    margin-bottom: 30px;
}

.partner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo {
  max-width: 120px;
  /* filter: grayscale(100%); */
  transition: 0.3s ease;
}


.partner-logo:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.privacy-policy {
    width: 100%;
    font-family: Arial, sans-serif;
}

.policy-header {
    background-color: var(--logoYellowcolor); /* You can change color */
    padding: 20px 10px;
    text-align: center;
}

.policy-header h1 {
    color: #fff;
    margin: 0;
    font-size: 40px;
    font-weight: bold;
}

.policy-content {
    padding: 40px 20px;
    /* max-width: 800px; */
    margin: auto;
    line-height: 1.8;
    font-size: 16px;
    color: #333;
}
        /*End of wedding css*/
           @media (max-width: 768px) {
               .packagesDetails-slider-title h2,
               .packagesDetails-overview-left h2,
               .packagesDetails-section-title h2,
               .pageWedding-section-title h2
               {
            font-size: 2rem;
        }
        .packagesDetails-slider-card h3,
        .packagesDetails-inclusion-box h3{
             font-size: 1.5rem;
        }
              .packagesDetails-day-number {
            width: 35px;
            height: 35px;
            font-size: 1rem;
          
        }
            .carousel-content {
        top: 60%;               /* Push slightly lower */
        width: 90%;             /* Prevent overflow */
        padding: 0 15px;
    }

    .carousel-content h1 {
        font-size: 2rem;        /* Reduce heading size */
    }

    .carousel-content p {
        font-size: 1rem;        /* Smaller paragraph */
    }
            .pageWedding-about-content{
                display: block;
            }
             .pageWedding-hero-btn,.carousel-content .btn-hero{
    padding: 5px 15px;
    font-size: 16px;
        }
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .about-hero p {
                font-size: 1.1rem;
            }
            
            .who-we-are-content {
                flex-direction: column;
                gap: 30px;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-container {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-container::before {
                left: 60px;
                border: medium solid white;
                border-width: 10px 10px 10px 0;
                border-color: transparent white transparent transparent;
            }
            
            .timeline-left::after, .timeline-right::after {
                left: 21px;
            }
            
            .timeline-right {
                left: 0%;
            }
            
            .mvv-container {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
              .carousel-content h1 {
                font-size: 2rem;
            }
            
            .carousel-item {
                height: 500px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
             .package-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .package-price {
        font-size: 14px;
        white-space: nowrap;
    }

    .package-btn,
    .btn-package {
        width: 30%;
        padding: 5px 5px;
        font-size: 12px;

    }
            
           
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form button {
                width: 100%;
            }
            
            .offer-details {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .offer-btn {
                width: 100%;
            }
            
            .popup-content {
                width: 95%;
                margin: 20px;
            }
            
            .popup-img {
                height: 250px;
            }

             
            
          
            
            .packages-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .filter-container {
                padding: 0 20px;
            }
            
            .package-header {
                flex-direction: column;
                gap: 15px;
            }
            
            .package-price {
                text-align: left;
            }
            
            .package-card .package-footer {
                flex-direction: row;
            }

           
            
            .packagesDetails-hero-meta {
                gap: 15px;
            }
            
            .packagesDetails-meta-item {
                font-size: 1rem;
            }
            
            .packagesDetails-highlights-grid {
                grid-template-columns: 1fr;
            }
            
            .packagesDetails-day-content {
                padding-left: 0;
            }
            
            .packagesDetails-gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .packagesDetails-related-grid {
                grid-template-columns: 1fr;
            }
            
            .packagesDetails-modal-close {
                right: 20px;
            }
             .pageWedding-sticky-header {
                display: none;
            }
            
            /* Show mobile bottom navigation */
            .pageWedding-mobile-nav {
                display: block;
            }
            
            /* Adjust enquiry button position for mobile */
            .pageWedding-enquiry-btn {
                bottom: 70px; /* Position above the mobile nav */
            }
            
            .pageWedding-hero-title {
                font-size: 2.5rem;
            }
            
            .pageWedding-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .pageWedding-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
           
            .contact-image img{
    
    height: 400px;   /* increase desktop height here */
    object-fit: cover;
}
        }
        