
        :root {
            --primary: #FF5722;
            --primary-dark: #E64A19;
            --primary-light: #FFCCBC;
	    --bg-light: #F8F9FA;
            --secondary: #2196F3;
            --secondary-dark: #1976D2;
            --dark: #263238;
            --dark-light: #455A64;
            --light: #f8f9fa;
            --gray: #90A4AE;
            --white: #fff;
            --black: #1A1A2E;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --radius: 12px;
	    --orange: #FFD801;

        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }


   /* Terms and Conditions */
        .terms {
            background-color: var(--light);
        }

        .accordion {
            max-width: 900px;
            margin: 0 auto;
        }

        .accordion-item {
            margin-bottom: 20px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .accordion-header {
            background-color: var(--white);
            padding: 20px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .accordion-header:hover {
            background-color: var(--bg-light);
        }

        .accordion-header h3 {
            font-size: 20px;
            color: var(--dark);
            margin: 0;
	    font-weight: normal;
font-family: 'Inter', sans-serif;        }

        .accordion-header i {
            transition: transform 0.3s;
        }

        .accordion-header.active i {
            transform: rotate(180deg);
        }

        .accordion-content {
            background-color: var(--white);
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        }

        .accordion-content.active {
            padding: 20px 30px;
            max-height: 1000px;
        }

        .accordion-content ul {
            list-style-type: none;
            padding-left: 0;
        }

        .accordion-content li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .accordion-content li:before {
            content: "•";
            color: var(--primary);
            font-weight: bold;
            position: absolute;
            left: 0;
        }


        /* Header Top */
        .header-top {
            background: var(--gradient);
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
        }

        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 25px;
        }

        .contact-info a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-info a:hover {
            transform: translateY(-2px);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: var(--white);
            transition: all 0.3s;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        /* Header */
        header {
            background-color: var(--black);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-image {
            height: 70px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text h1 {
            font-size: 24px;
            color: var(--dark);
            line-height: 1;
        }

        .logo-text span {
            font-size: 12px;
            color: var(--gray);
            letter-spacing: 1px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--gray);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s;
            border-radius: 3px;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 700px;
            overflow: hidden;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/banner1.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;

        }

        .hero-content {
            max-width: 650px;
            color: var(--white);
        }

        .hero-content h1 {
            font-size: 46px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 17px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 30px;
            background-color: var(--primary);
            color: var(--white);
            text-decoration: none;
            border-radius: var(--radius);
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

.wbtn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 30px;
            background-color: var(--primary);
            color: var(--primary);
            text-decoration: none;
            border-radius: var(--radius);
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
        }

	.btn-whatsappconfirm {
            background-color: transparent;
            border: 2px solid var(--primary);
        }

        .btn-whatsappconfirm:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }


        .hero-features {
            display: flex;
            gap: 30px;
            margin-top: 50px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .feature-text h4 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .feature-text p {
            font-size: 14px;
            margin: 0;
            opacity: 0.8;
        }

        /* Booking Form */
        .booking-form {
            background-color: var(--bg-light);
            padding: 80px 0 50px;
            margin-top: 0px;
            position: relative;
            z-index: 10;
        }

        .form-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 40px;
            position: relative;
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-header h2 {
            font-size: 32px;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .form-header p {
            color: var(--gray);
        }

        .form-tabs {
            display: flex;
            margin-bottom: 30px;
            background: var(--light);
            border-radius: var(--radius);
            padding: 5px;
        }

        .tab {
            flex: 1;
            padding: 15px 20px;
            cursor: pointer;
            font-weight: 600;
            text-align: center;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .tab.active {
            background: var(--gradient);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
        }

        .form-content {
            display: none;
        }

        .form-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }

        .input-with-icon {
            position: relative;
        }

        .input-with-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }

        input, select {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s;
        }

        input:focus, select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.2);
            outline: none;
        }

        .book-now-btn {
            text-align: center;
            margin-top: 30px;
        }

        /* Sections */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--dark);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--gradient);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            max-width: 600px;
            margin: 15px auto 0;
            color: var(--black);
        }

 /* Tour Package */
        .tour-package {
            background-color: var(--orange);
        }



        /* About Us */
        .about {
            background-color: var(--orange);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .about-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--gradient);
            color: var(--white);
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
        }

        .about-badge h3 {
            font-size: 36px;
            margin-bottom: 5px;
        }

        .about-badge p {
            font-size: 14px;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--dark-light);
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .about-feature i {
            width: 50px;
            height: 50px;
            background: var(--black);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

.service-image {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


        .service-icon {
            height: 120px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: var(--white);
        }

        .service-content {
            padding: 25px;
            text-align: center;
        }

        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-content p {
            color: var(--dark-light);
            margin-bottom: 20px;
        }

        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s;
        }

        .service-link:hover {
            gap: 10px;
        }

        /* Tariff */
        .tariff {
            background-color: var(--light);
        }

        .tariff-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .tariff-card {
            background-color: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            text-align: center;
            transition: all 0.3s;
            position: relative;
        }

        .tariff-card:hover {
            transform: translateY(-10px);
        }

        .tariff-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }

        .tariff-card.popular::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary);
            color: var(--white);
            padding: 5px 30px;
            font-size: 12px;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .tariff-header {
            background: var(--gradient);
            color: var(--white);
            padding: 20px;
	    margin : 20px;
border-radius: 12px;
        }

        .tariff-header h3 {
            font-size: 24px;
            
        }

        .tariff-header p {
            opacity: 0.9;
        }

        .tariff-body {
            padding: 30px 20px;
        }

        .tariff-price {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .tariff-price span {
            font-size: 16px;
            color: var(--gray);
            font-weight: 500;
        }

        .tariff-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .tariff-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .tariff-features li i {
            color: var(--primary);
        }

        /* Tour Package */
        .package-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .package-text {
            flex: 1;
        }

        .package-text h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .package-text p {
            margin-bottom: 20px;
            color: var(--dark-light);
        }

        .package-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .package-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .package-feature i {
            width: 40px;
            height: 40px;
            background: var(--black);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .package-image {
            flex: 1;
            position: relative;
        }

        .package-image img {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .package-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--gradient);
            color: var(--white);
            padding: 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .package-badge h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        /* Contact */
        .contact-content {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

.contact-details-box {
    flex: 1;
}

.contact-details-box .contact-details {
    margin-bottom: 40px;
}

.contact-details-box .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-details-box .contact-item i {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
}

.contact-details-box .contact-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
}


        .contact-details {
            margin-bottom: 40px;
        }

        .contact-details h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .contact-details p {
            color: var(--dark-light);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .contact-item i {
            width: 60px;
            height: 60px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-right: 20px;
        }

        .contact-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .contact-map {
            flex: 1;
            height: 500px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background-color: var(--black);
            color: var(--white);
            padding: 80px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--primary);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }

        .footer-column p {
            margin-bottom: 20px;
            color: #bbb;
            line-height: 1.8;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-links a i {
            font-size: 12px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #bbb;
            font-size: 14px;
        }

/* Whatsapp */

.floating-contact {
        position: fixed;
        bottom: 100px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        z-index: 99;
    }

    .floating-whatsapp, .floating-call {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        transition: all 0.3s;
    }

    .floating-whatsapp {
        background-color: #25D366;
    }

    .floating-call {
        background-color: #0456e4;
    }

    .floating-whatsapp:hover, .floating-call:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }


        /* Responsive */
        @media (max-width: 1200px) {
            .container {
                max-width: 960px;
            }
        }

        @media (max-width: 992px) {
            .services-grid,
            .tariff-grid,
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-content,
            .package-content,
            .contact-content {
                flex-direction: column;
            }

            .tariff-card.popular {
                transform: scale(1);
            }

            .hero-features {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {

 .accordion-header h3 {
            font-size: 20px;
            color: var(--dark);
            margin: 0;
        }

        .accordion-content {
            background-color: var(--white);
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            font-size:12px;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
        }

  .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info a {
        justify-content: center;
    }

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
              url('images/banner2.jpg');
  background-size: cover; /* Fills entire container without repeating */
  background-position: center;
  background-repeat: no-repeat;
}

            .header-top-content {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }

            .header-content {
                flex-direction: column;
                padding: 15px 0;
            }

            nav ul {
                margin-top: 15px;
                flex-direction: column;
                align-items: center;
                display: none;
                width: 100%;
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                margin: 10px 0;
            }

            .mobile-menu {
                display: block;
                position: absolute;
                top: 20px;
                right: 15px;
            }

            .hero {
                height: 700px;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 32px;
            }

.hero-content p {
                font-size: 16px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .services-grid,
            .tariff-grid,
            .footer-content {
                grid-template-columns: 1fr;
            }

            .about-features,
            .package-features {
                grid-template-columns: 1fr;
            }

            .about-badge,
            .package-badge {
                position: static;
                margin-top: 20px;
            }

            section {
                padding: 70px 0;
            }
        }

        @media (max-width: 576px) {
            .form-container {
                padding: 25px;
            }

            .form-header h2 {
                font-size: 28px;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }
  

        
        .confirmation-message {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .confirmation-content {
            background-color: white;
            padding: 40px;
            border-radius: var(--radius);
            text-align: center;
            max-width: 500px;
            width: 90%;
            box-shadow: var(--shadow);
        }
        
        .confirmation-content i {
            font-size: 60px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .confirmation-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .confirmation-content p {
            margin-bottom: 25px;
            color: var(--dark-light);
        }
        
        .confirmation-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        
        .loading {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .loading i {
            font-size: 30px;
            color: var(--primary);
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .error-message {
            display: none;
            background-color: #ffebee;
            color: #c62828;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid #c62828;
        }

        .success-message {
            display: none;
            background-color: #e8f5e9;
            color: #2e7d32;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            border-left: 4px solid #2e7d32;
        }
