        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f4f4f4;
        }

        header {
            background-color: #1a1a1a;
            color: white;
            padding: 10px 0; 
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%; 
            box-sizing: border-box;
        }


        .logo {
            display: flex;
            align-items: center;
            flex-grow: 1;
            margin-left: 10px;
            font-family: 'Montserrat', sans-serif; /
        }

         .tagline {
            font-size: 16px;
            font-weight: lighter;
            font-family: 'Roboto', sans-serif; 
        }

        .logo img {
            width: 60px;
            height: 60px;
            margin-right: 10px;
        }

        nav {
            display: flex;
            gap: 20px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-size: 15px;
            padding: 8px 10px; 
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px; 
        }

        nav a:hover {
            background-color: #555;
            border-radius: 4px;
        }

        .hamburger-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            position: absolute;
            top: 50%;
            right: 10px; 
            transform: translateY(-50%);
        }

        .hamburger-menu div {
            width: 25px;
            height: 3px;
            background-color: white;
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                align-items: flex-start;
                padding: 5px 0; 
            }

            .logo {
                margin-bottom: 10px;
                margin-left: 0;
            }

            nav {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 10px;
                margin-top: 10px;
                background-color: #1a1a1a;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                padding: 10px;
            }

            nav a {
                padding: 10px;
                text-align: center;
                width: 100%;
            }

            .hamburger-menu {
                display: flex;
                position: absolute;
                top: 50%;
                right: 10px; 
                transform: translateY(-50%);
            }

            .hamburger-menu.active + nav {
                display: flex;
            }
        }

        .hamburger-menu.active {
            background-color: #333;
        }
        
        
        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f4f4f4;
        }

        .hero {
            position: relative;
            height: 100vh;
            background: url('/images/hero.jpg') no-repeat center center/cover;
            color: white;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            font-weight: 500;
        }
        
        

        .form-container {
            background-color: rgba(0, 0, 0, 0.5); 
            padding: 30px;
            border-radius: 8px;
            width: 100%;
            max-width: 600px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        }

        /* Form Title */
        .form-container h2 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 24px;
            text-align: center;
        }

        .form-container input[type="text"],
        .form-container input[type="email"],
        .form-container input[type="tel"],
        .form-container input[type="date"] {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            background-color: rgba(255, 255, 255, 0.8); 
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            color: #333;
        }

        .form-container input[type="text"]:focus,
        .form-container input[type="email"]:focus,
        .form-container input[type="tel"]:focus,
        .form-container input[type="date"]:focus {
            outline: none;
            border-color: #ff6347; 
        }

        .form-container button {
            width: 100%;
            padding: 15px;
            background-color: #FF6347; 
            border: none;
            color: white;
            font-size: 18px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .form-container button:hover {
            background-color: #FF4500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 18px;
            }

            .form-container {
                padding: 20px;
            }

            .form-container h2 {
                font-size: 22px;
            }
        }
        
        
        
        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f4f4f4;
            padding: 0;
            margin: 0;
        }

        /* Service Section Container */
        .services {
            display: flex;
            flex-direction: column; 
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
            background-color: #fff;
            margin-top: 30px;
        }

        .services .heading {
            text-align: center;
            margin-bottom: 40px;
            max-width: 1200px;
            padding: 0 15px;
        }

        .services .heading h1 {
            font-size: 36px;
            color: #333;
            margin-bottom: 10px;
        }

        .services .heading p {
            font-size: 18px;
            color: #555;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
        }

        .service-container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap; /* Allow wrapping for mobile */
        }

        .service {
            flex: 1;
            background-color: #fafafa;
            border-radius: 8px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
            padding: 20px;
            position: relative;
            transition: transform 0.3s ease;
            max-width: 320px;
            margin-bottom: 20px; /* Added margin-bottom for spacing */
        }

        .service img {
            width: 250px;
            height: 250px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 20px;
            border: 4px solid #fff;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }

        .service h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-transform: capitalize;
        }

        .service i {
            font-size: 18px;
            color: #FF6347;
        }

        .service .details {
            text-align: left;
            margin-bottom: 20px;
            font-size: 16px;
            color: #555;
            line-height: 1.8;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .service .details span {
            font-weight: 600;
        }

        .service .details i {
            color: #FF6347;
            margin-right: 8px;
        }

        .service:hover {
            transform: translateY(-10px);
        }

        .service .buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .service .buttons a {
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 12px;
            display: inline-block;
            transition: background-color 0.3s ease;
        }

        .service .buttons .read-more {
            background-color: #007BFF;
            color: #fff;
        }

        .service .buttons .read-more:hover {
            background-color: #0056b3;
        }

        .service .buttons .book-now {
            background-color: #ff6f61;
            color: #fff;
        }

        .service .buttons .book-now:hover {
            background-color: #000;
        }

        @media (max-width: 1024px) {
            .service-container {
                flex-direction: column;
                align-items: center;
            }

            .service {
                flex: 1 1 100%;
                margin-bottom: 30px;
            }

            .service h3 {
                font-size: 20px;
            }

            .service .details {
                font-size: 14px;
                gap: 10px; 
            }

            .service .buttons {
                flex-direction: column;
                gap: 10px; 
                align-items: center;
            }

            .service .buttons a {
                width: 100%; 
                text-align: center;
            }
        }

        /* Larger screens adjustments */
        @media (min-width: 1200px) {
            .services {
                padding: 80px 50px;
            }

            .service-container {
                gap: 30px; 
            }
        }

        @media (max-width: 600px) {
            .services .heading h1 {
                font-size: 24px;  */
            }

            .services .heading p {
                font-size: 16px; 
            }
        }
        
        
        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f4f4f4;
            line-height: 1.6;
        }

        .section-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            padding: 50px 20px;
        }

        .about-section {
            flex: 1;
            background-color: #fff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: left;
        }

        .about-section h1 {
            font-size: 36px;
            color: #000;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .about-section h1 i {
            margin-right: 15px;
            font-size: 40px;
            color: #FF6347;
        }

        .about-section p {
            font-size: 18px;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .table-container {
            flex: 1;
            background-color: #fff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow-x: auto; 
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        th, td {
            padding: 12px 15px;
            text-align: left;
            border: 1px solid #ddd;
            font-size: 14px; 
            word-wrap: break-word;
        }

        th {
            background-color: #FF6347;
            color: white;
            font-size: 16px; 
        }

        td {
            background-color: #fafafa;
        }

        tr:nth-child(even) td {
            background-color: #f1f1f1;
        }

        tr:hover td {
            background-color: #f0f0f0;
            cursor: pointer;
        }

        th i {
            margin-right: 8px;
        }

        @media (max-width: 768px) {
            .about-section h1 {
                font-size: 22px;
            }

            .about-section p {
                font-size: 14px;
            }

            table {
                font-size: 12px; 
            }

            th, td {
                padding: 8px 10px; 
            }

            .section-container {
                flex-direction: column;
            }

            .about-section, .table-container {
                width: 100%;
                margin-bottom: 20px;
            }
        }

        td {
            word-wrap: break-word;
        }

        table {
            table-layout: auto;
        }
        
        
        
        
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }

        #corbett-tour-packages {
            padding: 60px 20px;
            background-color: #ffffff;
            text-align: center;
        }

        .container {
            width: 80%;
            margin: 0 auto;
        }

        .section-title {
            font-size: 36px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .section-description {
            font-size: 18px;
            color: #777;
            margin-bottom: 40px;
        }

        .packages {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .package {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            text-align: left;
            position: relative; 
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }

        .package:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .package-title {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }

        .package-images {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
        }

        .package-image {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .package-image:first-child {
            width: 250px; 
            height: 250px;
            object-fit: cover;
            border-radius: 50%;
            margin-right: 20px; 
        }

        .package-image:last-child {
            width: 120px; 
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            position: absolute;
            top: 0;
            right: 0; 
            margin-right: 10px;
            margin-top: 130px; 
        }

        .package-details {
            margin-bottom: 20px;
            font-size: 16px;
            color: #555;
        }

        .package-details ul {
            list-style-type: none;
            padding-left: 0;
        }

        .package-details li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .package-details li::before {
            content: '✔';
            color: #ff6f61;
            margin-right: 10px;
        }

        .package-details strong {
            color: #333;
            font-weight: 600;
        }

        /* Icon Styling for Amenities */
        .package-details i {
            color: #ff6f61;
            margin-right: 8px;
        }

        .book-now-btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #ff6f61;
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.3s ease;
            margin-top: 20px;
        }

        .book-now-btn:hover {
            background-color: #e75f4f;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .container {
                width: 90%;
            }

            .section-title {
                font-size: 24px;
            }

            .package-title {
                font-size: 24px;
            }

            .package-image:first-child {
                width: 200px;
                height: 200px;
            }

            .package-image:last-child {
                width: 100px;
                height: 100px;
                margin-top: -15px;
            }

            .book-now-btn {
                font-size: 16px;
                padding: 10px 20px;
            }
        }

        @media (max-width: 480px) {
            .package-title {
                font-size: 20px;
            }

            .book-now-btn {
                font-size: 16px;
                padding: 8px 16px;
            }

            .package-details li {
                font-size: 14px;
            }

            .package-image:first-child {
                width: 200px;
                height: 200px;
            }

            .package-image:last-child {
                width: 100px;
                height: 100px;
                margin-top: 100px;
            }
        }
        
        
        
        
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }

        #corbett-resorts {
            padding: 60px 20px;
            background-color: #ffffff;
            text-align: center;
        }

        .container {
            width: 80%;
            margin: 0 auto;
        }

        .section-title {
            font-size: 36px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }

        .section-description {
            font-size: 18px;
            color: #777;
            margin-bottom: 40px;
        }

        .resorts {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .resort {
            background-color: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .resort:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .resort-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 20px;
        }

        .resort-image:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .resort-name {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin: 10px 0;
        }

        .resort-type {
            font-size: 18px;
            color: #ff6f61;
            margin-bottom: 15px;
        }

        .resort-village {
            font-size: 16px;
            color: #555;
            margin: 10px 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .resort-village i {
            margin-right: 5px;
            color: #777;
        }

        .rate-per-night {
            font-size: 20px;
            font-weight: 600;
            color: #fff;
            background-color: #ff6f61;
            padding: 8px 20px;
            border-radius: 5px;
            margin-bottom: 15px;
        }

        .meal-plan {
            margin-top: 15px;
            padding: 10px;
            background-color: #f2f2f2;
            border-radius: 8px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            font-size: 16px;
            color: #555;
        }

        .meal-plan i {
            color: #ff6f61;
            margin-right: 8px;
        }

        .meal-plan span {
            font-weight: 600;
            color: #333;
        }

        @media (max-width: 768px) {
            .container {
                width: 90%;
            }

            .section-title {
                font-size: 24px;
            }

            .resort-name {
                font-size: 22px;
            }

            .rate-per-night {
                font-size: 18px;
            }

            .resort-type {
                font-size: 16px;
            }

            .meal-plan {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .resort-name {
                font-size: 18px;
            }

            .rate-per-night {
                font-size: 16px;
            }

            .resort-village {
                font-size: 14px;
            }

            .meal-plan {
                flex-direction: column;
            }
        }
        
        
        
        
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }

        #corbett-attractions {
            padding: 60px 20px;
            background-color: #ffffff;
            text-align: center;
        }

        .container {
            width: 80%;
            margin: 0 auto;
        }

        .section-title {
            font-size: 36px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 18px;
            color: #777;
            margin-bottom: 40px;
        }

        .attractions {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .attraction {
            background-color: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }

        .attraction:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .attraction-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 15px;
        }

        .attraction-image:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .attraction-name {
            font-size: 24px;
            font-weight: 600;
            color: #333;
            margin: 10px 0;
        }

        .attraction-description {
            font-size: 16px;
            color: #555;
            margin-bottom: 20px;
        }

        .attraction:hover .attraction-image {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            .container {
                width: 90%;
            }

            .section-title {
                font-size: 24px;
            }

            .attraction-name {
                font-size: 22px;
            }

            .attraction-description {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .attraction-name {
                font-size: 20px;
            }

            .attraction-description {
                font-size: 14px;
            }
        }
        
        
        
        
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }

        /* Footer Styling */
        #footer {
            background-color: #333;
            color: #fff;
            padding: 40px 20px;
            text-align: left;
            font-size: 14px;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-column {
            width: 28%; 
            padding: 20px;
            box-sizing: border-box;
            flex-grow: 1; 
            min-height: 200px;  */
        }

        .footer-column.about-company {
            width: 40%; 
        }

        .footer-column h3 {
            font-size: 20px;
            color: #ff6f61;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-weight: 600;
        }

        .footer-column h3 i {
            margin-right: 10px;
        }

        .footer-column ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #ff6f61;
        }

        .footer-column:nth-child(1) i {
            color: #ff6f61; 
        }

        .footer-column:nth-child(1) ul li a:hover i {
            color: #ff6f61; 
        }

        .social-media-links a {
            color: #ddd;
            font-size: 18px;
            margin-right: 15px;
            transition: color 0.3s ease;
        }

        .social-media-links a:hover {
            color: #ff6f61;
        }
        
        .footer-column.about-company ul li i {
            color: #ff6f61; /* Change the color of the check-circle icons */
        }


        /* Divider Styling */
        .footer-divider {
            border-top: 1px solid #444;
            margin: 30px 0;
        }

        /* Copyright Styling */
        .copyright {
            text-align: center;
            font-size: 14px;
            color: #bbb;
            margin-top: 20px;
        }

        .copyright a {
            color: #ff6f61;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .footer-column {
                width: 48%; 
            }

            .footer-column.about-company {
                width: 48%; 
            }
        }

        @media (max-width: 480px) {
            .footer-column {
                width: 100%; 
                margin-bottom: 20px;
            }

            .footer-column h3 {
                font-size: 20px;
            }

            .footer-column ul li a {
                font-size: 16px;
            }

            .footer-column ul {
                padding-left: 20px;
            }

            .footer-column.about-company {
                width: 100%; 
            }
        }

        @media (max-width: 360px) {
            .footer-column h3 {
                font-size: 20px;
            }

            .footer-column ul li a {
                font-size: 14px;
            }

            .copyright {
                font-size: 12px;
            }
        }
    
      