

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #2e7d32;
            --secondary: #ff9800;
            --dark: #1b5e20;
            --light: #f1f8e9;
            --text: #333;
            --white: #ffffff;
        }

        body {
            background-color: #f9f9f9;
            color: var(--text);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: var(--primary);
            color: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

a {
  text-decoration: none;
}

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        
		
 .logo {
            font-size: 30px;
            font-weight: 700;
            color: white;
            text-decoration: none;
			display: flex;
        }


 .logo-img {
            width : 50px;
			margin-right: 10px;
        }

@media (max-width: 768px) {
  .logo-img {
            width : 40px;
			margin-right: 10px;
           }
		                    }
		
		
		
        .logo h1 {
            font-size: 24px;
            margin-left: 10px;
        }

        .logo i {
            font-size: 28px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 20px;
        }

        nav ul li a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--secondary);
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }

        .hero h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #e68900;
            transform: translateY(-3px);
        }

        /* Section Styles */
        section {
            padding: 50px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            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: 3px;
            background-color: var(--secondary);
        }

        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Pricing Section */
        .pricing-tables {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pricing-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .pricing-header {
            background-color: var(--primary);
            color: var(--white);
            padding: 20px;
            text-align: center;
        }

        .pricing-header h3 {
            font-size: 24px;
        }

        .pricing-body {
            padding: 30px;
        }

        .price {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin-bottom: 20px;
        }

        .price span {
            font-size: 16px;
            font-weight: normal;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .pricing-features li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: var(--secondary);
            margin-right: 10px;
        }

        /* Tours Section */
        .tours-grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .tour-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .tour-image {
            height: 200px;
            overflow: hidden;
        }

        .tour-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .tour-card:hover .tour-image img {
            transform: scale(1.1);
        }

        .tour-info {
            padding: 20px;
        }

        .tour-info h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .contact-info {
            background-color: var(--primary);
            color: var(--white);
            padding: 30px;
            border-radius: 10px;
        }

        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-item i {
            margin-right: 15px;
            font-size: 20px;
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }

        .contact-form {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Quick Actions */
        .quick-actions {
            background-color: var(--light);
            padding: 40px 0;
            text-align: center;
        }

        .action-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: var(--white);
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            min-width: 200px;
        }

        .action-btn i {
            margin-right: 10px;
            font-size: 20px;
        }

        .action-btn:hover {
            background-color: var(--dark);
            transform: translateY(-3px);
        }

        .action-btn.whatsapp {
            background-color: #25D366;
        }

        .action-btn.whatsapp:hover {
            background-color: #128C7E;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 5px;
}
            
            nav {
                margin-top: 20px;
                width: 100%;
            }
            
            nav ul {
                flex-direction: column;
                width: 100%;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .hero h2 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .action-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
@media (max-width: 768px) {
  .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo {
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}
}
        @media (max-width: 576px) {
            .mobile-menu {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            nav {
                display: none;
            }
            
            nav.active {
                display: block;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .hero h2 {
                font-size: 28px;
            }
            
            section {
                padding: 60px 0;
            }
        }
		
		
		
		
		
		  .search-section h3 {
            margin-bottom: 1.5rem;
            color: var(--primary);
            text-align: center;
        }

        .search-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary);
        }

        .form-control {
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 2px rgba(45, 80, 22, 0.2);
        }

        /* Tours Section */
        

       

        .tour-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .tour-content {
            padding: 1.5rem;
        }

        .tour-content h3 {
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .tour-meta {
            display: flex;
            justify-content: space-between;
            margin: 1rem 0;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .tour-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .tour-price {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        /* Booking Section */
        .booking-section {
            background: var(--light);
        }

        .booking-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .booking-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .booking-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .booking-image:hover img {
            transform: scale(1.05);
        }

        .booking-form {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .booking-form h3 {
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        /* Testimonials */
        .testimonials {
            background: var(--primary);
            color: white;
        }

        .testimonials .section-title {
            color: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
        }

        .author-info h4 {
            margin-bottom: 0.2rem;
        }

        .author-info p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

		
		
		 /* Hero Section */
        .page-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }

        .page-hero h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .page-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Content */
        .about-content {
            padding: 80px 0;
        }

        .about-section {
            margin-bottom: 80px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            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: 3px;
            background-color: var(--secondary);
        }

        .section-title p {
            max-width: 700px;
            margin: 20px auto 0;
            color: #666;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .about-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .about-card:hover {
            transform: translateY(-10px);
        }

        .about-card-img {
            height: 200px;
            overflow: hidden;
        }

        .about-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .about-card:hover .about-card-img img {
            transform: scale(1.1);
        }

        .about-card-content {
            padding: 25px;
        }

        .about-card-content h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* History Timeline */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 40px auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 3px;
            background-color: var(--primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -1.5px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-content {
            padding: 20px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .timeline-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--white);
            border: 3px solid var(--primary);
            border-radius: 50%;
            top: 15px;
            z-index: 1;
        }

        .timeline-item:nth-child(odd)::after {
            right: -10px;
        }

        .timeline-item:nth-child(even)::after {
            left: -10px;
        }

        /* Team Section */
        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .team-member {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .team-img {
            height: 250px;
            overflow: hidden;
        }

        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-info {
            padding: 20px;
        }

        .team-info h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .team-info .role {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .team-info .contact {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .team-info .contact a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--light);
            border-radius: 50%;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s;
        }

        .team-info .contact a:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        /* Stats Section */
        .stats-section {
            background-color: var(--primary);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .stat-text {
            font-size: 18px;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item::after {
                left: 21px;
            }
            
            .timeline-item:nth-child(odd)::after,
            .timeline-item:nth-child(even)::after {
                left: 21px;
            }
        }

      

        @media (max-width: 576px) {
            .mobile-menu {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            nav {
                display: none;
            }
            
            nav.active {
                display: block;
            }
            
            .page-hero {
                padding: 80px 0;
            }
            
            .page-hero h2 {
                font-size: 28px;
            }
            
            .about-content {
                padding: 60px 0;
            }
            
            .about-section {
                margin-bottom: 60px;
            }
        }
		
		
		 /* Pricing Content */
        .pricing-content {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            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: 3px;
            background-color: var(--secondary);
        }

        .section-title p {
            max-width: 700px;
            margin: 20px auto 0;
            color: #666;
        }

        /* Pricing Tabs */
        .pricing-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tab-btn {
            background-color: var(--white);
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .tab-btn.active {
            background-color: var(--primary);
            color: var(--white);
        }

        .tab-btn:hover:not(.active) {
            background-color: rgba(46, 125, 50, 0.1);
        }

        /* Pricing Cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .pricing-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .pricing-card.popular {
            border: 2px solid var(--secondary);
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background-color: var(--secondary);
            color: var(--white);
            padding: 5px 30px;
            transform: rotate(45deg);
            font-weight: 600;
            font-size: 14px;
        }

        .pricing-header {
            background-color: var(--primary);
            color: var(--white);
            padding: 30px;
            text-align: center;
        }

        .pricing-header h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .pricing-header .days {
            font-size: 16px;
            opacity: 0.9;
        }

        .pricing-body {
            padding: 30px;
        }

        .price {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin-bottom: 20px;
        }

        .price span {
            font-size: 16px;
            font-weight: normal;
            color: #666;
        }

        .per-person {
            text-align: center;
            color: #666;
            margin-bottom: 25px;
            font-size: 18px;
        }

        .per-person strong {
            color: var(--primary);
            font-size: 22px;
        }

        .features {
            list-style: none;
            margin-bottom: 30px;
        }

        .features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .features li:last-child {
            border-bottom: none;
        }

        .features li i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 18px;
        }

        .pricing-footer {
            text-align: center;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--white);
            padding: 14px 35px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .btn:hover {
            background-color: #e68900;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        /* Additional Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: flex-start;
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            background-color: var(--light);
            color: var(--primary);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            font-size: 24px;
        }

        .service-content h3 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        /* Comparison Table */
        .comparison-section {
            margin-top: 80px;
            background-color: var(--light);
            padding: 60px 0;
        }

        .comparison-table {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        thead {
            background-color: var(--primary);
            color: var(--white);
        }

        th {
            padding: 20px;
            text-align: left;
            font-weight: 600;
        }

        th:first-child {
            width: 30%;
        }

        tbody tr {
            border-bottom: 1px solid #eee;
        }

        tbody tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        td {
            padding: 20px;
        }

        .highlight {
            background-color: rgba(255, 152, 0, 0.1) !important;
            font-weight: 600;
        }

        /* FAQ Section */
        .faq-section {
            margin-top: 80px;
        }

        .faq-container {
            max-width: 800px;
            margin: 40px auto 0;
        }

        .faq-item {
            background-color: var(--white);
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
        }

        .faq-question i {
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 50px 0 20px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .pricing-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

 
        @media (max-width: 576px) {
            .mobile-menu {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            nav {
                display: none;
            }
            
            nav.active {
                display: block;
            }
            
            .page-hero {
                padding: 80px 0;
            }
            
            .page-hero h2 {
                font-size: 28px;
            }
            
            .pricing-content {
                padding: 60px 0;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .tab-btn {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .service-card {
                flex-direction: column;
                text-align: center;
            }
            
            .service-icon {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }
		
		
		
		
		 /* Tours Content */
        .tours-content {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            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: 3px;
            background-color: var(--secondary);
        }

        .section-title p {
            max-width: 700px;
            margin: 20px auto 0;
            color: #666;
        }

        /* Tour Categories */
        .tour-categories {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .category-btn {
            background-color: var(--white);
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .category-btn.active {
            background-color: var(--primary);
            color: var(--white);
        }

        .category-btn:hover:not(.active) {
            background-color: rgba(46, 125, 50, 0.1);
        }

        /* Tours Grid */
        .tours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .tour-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .tour-card:hover {
            transform: translateY(-10px);
        }

        .tour-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .tour-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .tour-card:hover .tour-image img {
            transform: scale(1.1);
        }

        .tour-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .tour-info {
            padding: 25px;
        }

        .tour-info h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .tour-location {
            color: #666;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .tour-location i {
            margin-right: 8px;
            color: var(--secondary);
        }

        .tour-description {
            margin-bottom: 20px;
            color: #555;
        }

        .tour-features {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .feature {
            display: flex;
            align-items: center;
            color: #666;
        }

        .feature i {
            margin-right: 5px;
            color: var(--secondary);
        }

        .tour-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .tour-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }

        .tour-price span {
            font-size: 14px;
            font-weight: normal;
            color: #666;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        .btn:hover {
            background-color: #e68900;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        /* Tour Packages */
        .tour-packages {
            background-color: var(--light);
            padding: 80px 0;
            margin-top: 40px;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .package-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .package-card:hover {
            transform: translateY(-10px);
        }

        .package-header {
            background-color: var(--primary);
            color: var(--white);
            padding: 25px;
            text-align: center;
        }

        .package-header h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .package-body {
            padding: 25px;
        }

        .package-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .package-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features li i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 18px;
        }

        /* Itinerary Section */
        .itinerary-section {
            margin-top: 80px;
        }

        .itinerary-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .itinerary-btn {
            background-color: var(--white);
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .itinerary-btn.active {
            background-color: var(--primary);
            color: var(--white);
        }

        .itinerary-btn:hover:not(.active) {
            background-color: rgba(46, 125, 50, 0.1);
        }

        .itinerary-content {
            background-color: var(--white);
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .day-itinerary {
            margin-bottom: 30px;
            padding-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

        .day-itinerary:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .day-title {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .day-title i {
            margin-right: 10px;
            color: var(--secondary);
        }

        .itinerary-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .itinerary-item {
            display: flex;
            align-items: flex-start;
        }

        .item-time {
            background-color: var(--light);
            color: var(--primary);
            padding: 8px 15px;
            border-radius: 5px;
            font-weight: 600;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .item-details h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #333;
        }

        /* Testimonials */
        .testimonials-section {
            margin-top: 80px;
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 40px auto 0;
            position: relative;
        }

        .swiper {
            width: 100%;
            height: 100%;
            padding: 20px 0 40px;
        }

        .testimonial-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .author-info p {
            color: #666;
            font-size: 14px;
        }

        .swiper-pagination-bullet-active {
            background-color: var(--secondary) !important;
        }

        /* Booking CTA */
        .booking-cta {
            background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.9)), url('https://images.unsplash.com/photo-1546182990-dffeafbe841d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            margin-top: 80px;
            border-radius: 10px;
        }

        .booking-cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .booking-cta p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .btn-light {
            background-color: var(--white);
            color: var(--primary);
        }

        .btn-light:hover {
            background-color: var(--light);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 50px 0 20px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .tours-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .packages-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
           
           
            
            
            .itinerary-content {
                padding: 25px;
            }
            
            .booking-cta h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 576px) {
            .mobile-menu {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            nav {
                display: none;
            }
            
            nav.active {
                display: block;
            }
            
            .page-hero {
                padding: 80px 0;
            }
            
            .page-hero h2 {
                font-size: 28px;
            }
            
            .tours-content {
                padding: 60px 0;
            }
            
            .tours-grid {
                grid-template-columns: 1fr;
            }
            
            .category-btn, .itinerary-btn {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .tour-features {
                flex-direction: column;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-buttons .btn {
                width: 100%;
                max-width: 300px;
            }
        }
		
		
		
		
	   /* Hotels Content */
        .hotels-content {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            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: 3px;
            background-color: var(--secondary);
        }

        .section-title p {
            max-width: 700px;
            margin: 20px auto 0;
            color: #666;
        }

        /* Hotel Categories */
        .hotel-categories {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .category-btn {
            background-color: var(--white);
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .category-btn.active {
            background-color: var(--primary);
            color: var(--white);
        }

        .category-btn:hover:not(.active) {
            background-color: rgba(46, 125, 50, 0.1);
        }

        /* Hotels Grid */
        .hotels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .hotel-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .hotel-card:hover {
            transform: translateY(-10px);
        }

        .hotel-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .hotel-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .hotel-card:hover .hotel-image img {
            transform: scale(1.1);
        }

        .hotel-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .hotel-info {
            padding: 25px;
        }

        .hotel-info h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .hotel-location {
            color: #666;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .hotel-location i {
            margin-right: 8px;
            color: var(--secondary);
        }

        .hotel-description {
            margin-bottom: 20px;
            color: #555;
        }

        .hotel-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .feature-tag {
            background-color: var(--light);
            color: var(--primary);
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
        }

        .hotel-rating {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .rating-stars {
            color: #ffc107;
            margin-right: 10px;
        }

        .rating-value {
            font-weight: 600;
            color: #333;
        }

        .hotel-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hotel-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }

        .hotel-price span {
            font-size: 14px;
            font-weight: normal;
            color: #666;
            display: block;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        .btn:hover {
            background-color: #e68900;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        /* Resort Packages */
        .resort-packages {
            background-color: var(--light);
            padding: 80px 0;
            margin-top: 40px;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .package-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .package-card:hover {
            transform: translateY(-10px);
        }

        .package-header {
            background-color: var(--primary);
            color: var(--white);
            padding: 25px;
            text-align: center;
        }

        .package-header h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .package-body {
            padding: 25px;
        }

        .package-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .package-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .package-features li:last-child {
            border-bottom: none;
        }

        .package-features li i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 18px;
        }

        /* Amenities Section */
        .amenities-section {
            margin-top: 80px;
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .amenity-item {
            background-color: var(--white);
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .amenity-item:hover {
            transform: translateY(-5px);
        }

        .amenity-icon {
            background-color: var(--light);
            color: var(--primary);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 24px;
        }

        .amenity-item h4 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 5px;
        }

        /* Location Map */
        .location-section {
            margin-top: 80px;
            background-color: var(--light);
            padding: 60px 0;
        }

        .location-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: center;
        }

        .location-info h3 {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .location-details {
            list-style: none;
        }

        .location-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .location-details li i {
            color: var(--secondary);
            margin-right: 10px;
            margin-top: 5px;
        }

        .map-placeholder {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .map-placeholder i {
            font-size: 60px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* Testimonials */
        .testimonials-section {
            margin-top: 80px;
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 40px auto 0;
            position: relative;
        }

        .swiper {
            width: 100%;
            height: 100%;
            padding: 20px 0 40px;
        }

        .testimonial-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .author-info p {
            color: #666;
            font-size: 14px;
        }

        .author-stay {
            color: var(--secondary);
            font-weight: 600;
        }

        .swiper-pagination-bullet-active {
            background-color: var(--secondary) !important;
        }

        /* Booking Section */
        .booking-section {
           
            background-color: var(--white);
            border-radius: 10px;
            padding: 50px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .booking-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 15px;
        }

        .booking-cta {
            text-align: center;
            margin-top: 30px;
        }

        .btn-large {
            padding: 15px 40px;
            font-size: 18px;
        }

        
        

       

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hotels-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .packages-grid {
                grid-template-columns: 1fr;
            }
            
            .amenities-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }

        @media (max-width: 768px) {
            
            
            
           
            .booking-section {
                padding: 30px;
            }
            
            .booking-form {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .mobile-menu {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            
            nav {
                display: none;
            }
            
            nav.active {
                display: block;
            }
            
            .page-hero {
                padding: 80px 0;
            }
            
            .page-hero h2 {
                font-size: 28px;
            }
            
            .hotels-content {
                padding: 60px 0;
            }
            
            .hotels-grid {
                grid-template-columns: 1fr;
            }
            
            .category-btn {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .hotel-footer {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
         }	
		
		
		
		  /* Quick Contact Actions */
        .quick-actions {
            background-color: var(--light);
            padding: 60px 0;
            margin-top: 40px;
        }

        .actions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .action-card {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .action-card:hover {
            transform: translateY(-10px);
        }

        .action-icon {
            background-color: var(--primary);
            color: var(--white);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
        }

        .action-card h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .action-card p {
            margin-bottom: 20px;
            color: #666;
        }

		   /* Map Section */
        .map-section {
            margin-top: 80px;
        }

        .map-container {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            height: 400px;
            display: flex;
            flex-direction: column;
        }

        .map-header {
            background-color: var(--primary);
            color: var(--white);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .map-header h3 {
            font-size: 22px;
        }

        .map-placeholder {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            background-color: #f5f5f5;
        }

        .map-placeholder i {
            font-size: 80px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .map-placeholder p {
            font-size: 18px;
            color: #666;
        }
		
		
		
	
        
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1px 10px;
        }
        
       
        
        .logo span {
            color: #fff;
        }
        
        /* Desktop Menu Styles */
        .desktop-menu {
            display: flex;
            list-style: none;
        }
        
        .desktop-menu > li {
            position: relative;
        }
        
        .desktop-menu > li > a {
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 4px;
        }
        
        .desktop-menu > li > a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
        }
        
        /* Submenu Styles */
      .has-submenu > a i {
  font-size: 0.75rem;
  margin-left: 5px;
}
        
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 4px 4px;
            list-style: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .has-submenu:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .submenu li {
            border-bottom: 1px solid #eee;
        }
        
        .submenu li:last-child {
            border-bottom: none;
        }
        
        .submenu li a {
            color: #333;
            text-decoration: none;
            padding: 12px 20px;
            display: block;
            transition: all 0.3s ease;
        }
        
        .submenu li a:hover {
            background-color: #f5f5f5;
            color: #38b2ac;
            padding-left: 25px;
        }
        
        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }
        
        /* Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background-color: #173e19;
            list-style: none;
            padding: 80px 20px 30px;
            transition: right 0.4s ease;
            overflow-y: auto;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 999;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu > li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .mobile-menu > li > a {
           color: white;
  text-decoration: none;
  padding: 5px 5px;
  display: block;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 15px;
        }
        
        .mobile-menu > li > a:hover {
            color: #38b2ac;
            padding-left: 15px;
        }
        
        /* Mobile Submenu Styles */
        .mobile-submenu {
            list-style: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            margin: 5px 0;
        }
        
        .mobile-submenu.active {
            max-height: 300px;
        }
        
        .mobile-submenu li a {
            color: #ddd;
            text-decoration: none;
            padding: 12px 20px;
            display: block;
            font-size: 0.95rem;
        }
        
        .mobile-submenu li a:hover {
            color: #38b2ac;
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .mobile-menu-toggle.submenu-toggle {
            float: right;
            padding: 5px 10px;
            font-size: 0.9rem;
            transition: transform 0.3s ease;
			margin-top: -25px;
        }
        
        .mobile-menu-toggle.submenu-toggle.active {
            transform: rotate(180deg);
        }
        
        /* Overlay for mobile menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Content Area */
        .content {
            padding: 40px 0;
        }
        
        h1 {
            color: #1a365d;
            margin-bottom: 20px;
            font-size: 2.5rem;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .demo-info {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .demo-info h2 {
            color: #38b2ac;
            margin-bottom: 15px;
        }
        
        .device-preview {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .device {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            width: 300px;
            text-align: center;
        }
        
        .device h3 {
            color: #1a365d;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #38b2ac;
        }
        
        .device-icon {
            font-size: 3rem;
            color: #38b2ac;
            margin: 15px 0;
        }
        
       
        
        /* Media Queries */
        @media (max-width: 992px) {
            .desktop-menu {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
        
		

        @media (max-width: 768px) {
            .device-preview {
                flex-direction: column;
                align-items: center;
            }
            
            .device {
                width: 100%;
                max-width: 350px;
            }
        }	
		
		
		
		
		
		
		