        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        
        * {
            font-family: "poppins", sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        header {
            z-index: 999;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 200px;
        }

        header .brand {
            color: #fff;
            font-size: 1.5em;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
        }

      
        

        .navigation-items a {
            color: #f8f0f0;
            text-decoration: none;
            font-size: 1.2em;
            margin: 20px;
            position: relative;
            font-weight: 520;   
        }

        .navigation-items a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #71bcdb;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.3s ease;
        }

        .navigation-items a:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        .navigation.active .navigation-items {
            background: #fff;
            width: 600px;
            max-width: 600px;
            margin: 20px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            border-radius: 5px;
            box-shadow: 0 5px 25px rgba(1, 1, 1 / 20%);
        }

        section {
            padding: 100px 200px;
        }

        .home {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            flex-direction: column;
            background: #2696e9;
        }

        .home:before {
            z-index: 777;
            content: '';
            position: absolute;
            background: rgba(3, 96, 251, 0.3);
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .content {
            z-index: 888;
            color: #fff;
            width: 70%;
            margin-top: 50px;
            display: none;
        }

        .content.active {
            display: block;
        }

        .content h1 {
            font-size: 4em;
            font-weight: 1100;
            text-transform: uppercase;
            letter-spacing: 5px;
            line-height: 75px;
            margin-bottom: 40px;
        }

        .content h1 span {
            font-size: 3rem;
            font-weight: 600;
        }

        .home .content p {
            margin-bottom: 65px;
        }

        .content a {
            background: #fff;
            padding: 15px 35px;
            color: #1680ac;
            font-weight: 500;
            border-radius: 2px;
            text-decoration: none;
        }

        .home .media-icons {
            z-index: 888;
            position: absolute;
            right: 30px;
            display: flex;
            flex-direction: column;
            transition: 0.5s ease;
        }

        .home .media-icons a {
            color: #fff;
            font-size: 1.6em;
        }

        .home .media-icons a:not(:last-child) {
            margin-bottom: 20px;
        }

        .home .media-icons a:hover {
            transform: scale(1.3);
        }

        .home video {
            z-index: 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 1040px) {
            header {
                padding: 12px 20px;
            }

            section {
                padding: 100px 20px;
            }

            .home .media-icons {
                right: 15px;
            }
           
        }

       
        .slider-navigation {
            z-index: 889;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            transform: translateY(80px);
            margin-bottom: 12px;
        }

        .slider-navigation .nav-btn {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
            transition: 0.3s ease;
            background: #fff;
        }

        .slider-navigation .nav-btn.active {
            background: #2696e9;
        }

        .slider-navigation .nav-btn:not(:last-child) {
            margin-right: 20px;
        }

        .slider-navigation .nav-btn:hover {
            transform: scale(1.3);
        }

        .video-slide {
            position: absolute;
            width: 100%;
            clip-path: circle(0.3% at 0 50%);
        }

        .video-slide.active {
            clip-path: circle(150% at 0 50%);
            transition: 2s ease;
            transition-property: clip-path;
        }

        .video-slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .vacation-itinerary {
            background-color: #f8f8f8;
            padding: 80px 0;
            text-align: center;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .container {
            max-width: 650px;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            padding: 30px;
        }

        .vacation-itinerary h1, h2, h3 {
            color: #333;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        form {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .personal-details, .group-details {
            flex: 1;
            margin-bottom: 30px;
        }

        label {
            display: block;
            font-size: 14px;
            margin-bottom: 8px;
            color: #555;
        }

        input, select {
            width: calc(100% - 20px);
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-bottom: 15px;
            font-size: 14px;
            box-sizing: border-box;
        }

        .hotel-option, .food-option {
            flex: 1;
            margin-bottom: 20px;
        }
        .food-option {
            margin-top: 30px;
        }
        #tripCost {
            margin-top: 20px;
            padding: 20px;
            background-color: #3498db;
            border-radius: 8px;
            color: #fff;
            text-align: center;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            width: 100%;
            transition: background-color 0.3s, transform 0.3s;
        }

        #tripCost h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #fff;
        }

        .cost-details {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            width: 100%;
        }

        .label {
            color: #ecf0f1;
            font-size: 16px;
            flex: 1;
            text-align: left;
        }

        .value {
            font-size: 18px;
            flex: 1;
            text-align: right;
        }

        .value::before {
            content: "₹";
        }

        .total-cost {
            font-size: 24px;
            font-weight: bold;
            margin-top: 15px;
            color: #fff;
            background-color: #e74c3c;
            padding: 10px;
            border-radius: 5px;
            width: 100%;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        }

        #calculateCostBtn {
            background-color: #2ecc71;
            color: #fff;
            padding: 15px 20px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s;
            width: 100%;
            margin-top: 20px;
        }

        #calculateCostBtn:hover {
            background-color: #27ae60;
            transform: scale(1.05);
        }


        .container-g {
            background-color: #222;
        }
        
        .gallery {
            width: 100%;
            overflow: hidden;
            margin: auto;
            display: flex;
        }
        
        .gallery__strip {
            min-height: 100vh;
            overflow: hidden;
        }
        
        .gallery__strip__wrapper {
            flex: 0 0 100%;
            justify-content: flex-end;
            background: #222;
            border-right: 2px solid #333;
            position: relative;
        }
        
        @media (min-width: 500px) {
            .gallery__strip__wrapper {
                flex: 0 0 50%;
            }
        }
        
        @media (min-width: 950px) {
            .gallery {
                height: 100vh;
            }
        
            .gallery__strip.one {
                animation: move-it-one 60s ease alternate infinite 5s;
            }
        
            .gallery__strip.three {
                animation: move-it-three 70s ease alternate infinite 6s;
            }
        
            .gallery__strip.two {
                animation: move-it-two 58s ease alternate infinite 5s;
            }
        
            .gallery__strip.four {
                animation: move-it-four 65s ease alternate infinite 5.5s;
            }
        
            .gallery__strip:hover {
                animation-play-state: paused;
            }
        
            .gallery__strip__wrapper {
                flex: 0 0 25%;
            }
        }
        
        @keyframes move-it-one {
            0%, 90%, 100% {
                transform: translateY(2%);
            }
            45% {
                transform: translateY(-50%);
            }
        }
        
        @keyframes move-it-two {
            0%, 90%, 100% {
                transform: translateY(-50%);
            }
            45% {
                transform: translateY(5%);
            }
        }
        
        @keyframes move-it-three {
            0%, 90%, 100% {
                transform: translateY(2%);
            }
            45% {
                transform: translateY(-50%);
            }
        }
        
        @keyframes move-it-four {
            0%, 90%, 100% {
                transform: translateY(-50%);
            }
            45% {
                transform: translateY(5%);
            }
        }
        
        .photo {
            position: relative;
            text-align: right;
            padding-bottom: 3rem;
        }
        
        .photo__image img {
            width: 90%;
            transform: translateX(30%);
            transition: 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
        }
        
        .photo__name {
            text-transform: uppercase;
            font-size: 40px;
            letter-spacing: 2px;
            color: transparent;
            -webkit-text-stroke-width: 1px;
            -webkit-text-stroke-color: white;
            margin-top: -25px;
            transition: 0.4s ease-in-out 0.3s;
            position: relative;
            width: 100%;
        }
        
        .photo:hover .photo__image img {
            transform: translateX(0%);
        }
        
        .photo:hover .photo__name {
            color: #fff;
        }
        
        .contact {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 50px;
            background-color: #fff;
            text-align: center;
            margin: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        
        .contact .heading-contact {
            font-size: 3em;
            font-weight: 700;
            margin-bottom: 30px;
            text-transform: uppercase;
            color: #000; 
            width: 100%;
            text-align: center;
        }   
        
        .contact-container {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            justify-content: space-between;
            margin-right: 50px;
        }
        
        .contact-info {
            width: 100%;
            text-align: center;
            margin-top: 30px;
            margin-left: 100px;
        }
        
        .contact-info p {
            font-size: 18px; 
            color: #000; 
            margin-bottom: 10px;
        }
        
        .title {
            font-size: 1.5em;
            font-weight: 700;
            margin-bottom: 30px;
            margin-top: 50px;
            text-transform: uppercase;
            color: #000;
            width: 100%;
            text-align: center;
        }
        
        .contact-info .info {
            display: flex;
            padding: 10px;
            justify-content: space-around;
        }
        
        .contact-info .information {
            text-align: center;
            margin-top: 30px;
            padding: 20px;
        }
        
        .contact-info .information p {
            margin-top: 20px;
        }
        
        .contact-info .information .icon {
            font-size: 50px; 
            color: #000; 
        }
        
        .map {
            width: 35%;
            height: 500px;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .map iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        .contact-form {
            width: 48%;
            max-width: 600px;
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-left: 110px;
        }
        
        .contact-form p {
            font-size: 18px;
            color: #333;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            font-size: 16px;
            color: #555;
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            color: #555;
        }
        
        .form-group textarea {
            resize: vertical;
        }
        
        .contact-form  button {
            background-color: #45a7aa;
            color: #fff;
            border: none;
            padding: 15px 20px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            width: 100%;    
            transition: background-color 0.3s;
        }
        
        button:hover {
            background-color: #1a4947;
        }
        footer{
            background-color: #222;
            color: #fff;
            padding: 30px 0;
            text-align: center;
            font-size: 14px;
            margin-top: 50px;
        }



        .about-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 50px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
    
        .about-container h2 {
            font-size: 2em;
            font-weight: 700;
            margin-bottom: 30px;
            text-transform: uppercase;
            color: #333;
        }
    
        .about-container p {
            font-size: 18px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
        }
    
        .about-container p:last-child {
            margin-bottom: 0;
        }
        .explore-section {
            background-color: #f9f9f9;
            padding: 40px 0;
        }
        
        .explore-card {
            max-width: 600px;
            margin: auto;
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .explore-card h2 {
            color: #333;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        label {
            font-size: 14px;
            color: #555;
        }
        
        input {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        
        button {
            background-color: #4CAF50;
            color: #fff;
            padding: 12px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        
        button:hover {
            background-color: #45a049;
        }
        .explore-section {
            background-color: #f9f9f9;
            padding: 40px 0;
            text-align: center;
        }
        
        .explore-card {
            max-width: 600px;
            margin: auto;
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .explore-card h2 {
            color: #333;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        label {
            font-size: 14px;
            color: #555;
        }
        
        input {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        
        button {
            background-color: #4CAF50;
            color: #fff;
            padding: 12px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }
        
        button:hover {
            background-color: #45a049;
        }
        
        #flight-search-results {
            margin-top: 20px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: #f0f0f0;
            max-width: 600px;
            margin: auto;
            overflow: auto;
            max-height: 300px; 
        }
        