 /* General Reset */
        /* General Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
             background: linear-gradient(45deg, #fce6e3, #d0e6f9);
            color: #333;
            margin: 0;
        }


          header {
            background-color: #2c3e50;
            text-align: center;
            color: white;
        }

        .logo-container1 {
            display: flex;
            align-items: center;
            justify-content: center;
           
        }

        .logo-container1 img {
            width: 120px; 
            height: auto;
        }

        .welcome-text {
            font-size: 30px; /* Increased text size */
            font-weight: bold;
            color: white;
            animation: bounceIn 2s ease;
        }

       main {
            padding: 30px;
            text-align: center;
        }
 
 h1 {
            text-align: center;
            margin-top: 20px;
            color: #2c3e50;
            font-size: 28px;
        }
  h2 {
            font-size: 24px;
            color: #333;
            margin-bottom: 20px;
        }
		
		
		  p {
            font-size: 18px;
            margin-bottom: 20px;
        }
   .full-page-container1 {
    position: relative; /* Ensure positioning for pseudo-element */
   
   background: linear-gradient(45deg, #fce6e3, #d0e6f9); /* Original gradient */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    animation: fadeIn 1s forwards 1s;
    overflow: hidden; /* Clip pseudo-element to container bounds */
}

.full-page-container1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('Image/background.jpg') no-repeat center center/cover;
    opacity: 0.1; /* Adjust this value to control image visibility */
    z-index: 1; /* Place behind content */
    border-radius: 12px; /* Match container radius */
}

.full-page-container1 * {
    position: relative; /* Ensure content appears above pseudo-element */
    z-index: 2;
}

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .titleMain {
            font-family: 'Kalam', cursive;
            font-size: 48px;
            font-weight: bold;
            color: #c7131f;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInTitle 1.5s forwards 1s;
        }

        @keyframes fadeInTitle {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
.special-img {
            width: 210px;
            height: auto;
            margin: 20px auto;
            border-radius: 14%;
            box-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
            transition: box-shadow 0.3s ease-in-out;
        }

       .special-img:hover {
            box-shadow: 0 0 30px rgba(255, 165, 0, 1);
        }

        .welcome-text1 {
            animation: fadeInTitle 1.5s forwards 1s;
            font-size: 22px;
            color: #1a202c;
            font-weight: bold;
            margin: 20px 0 30px;
            font-family: "Yatra One", system-ui;
            font-weight: 400;
            font-style: normal;
        }

        .helpline1 {
            font-size: 24px;
            color: red;
            font-weight: bold;
            margin: 20px 0 40px;
            cursor: pointer;
            font-family: "Yatra One", system-ui;
            font-weight: 400;
        }

        .marquee-container {
            width: 100%;
            overflow: hidden;
        }

        .marquee-text {
            display: inline-block;
            white-space: nowrap;
            animation: marquee 10s linear infinite;
        }

        @keyframes marquee {
            from { transform: translateX(100%); }
            to { transform: translateX(-100%); }
        }

        .call-button1 {
            display: inline-block;
            padding: 15px 40px;
            font-size: 20px;
            font-weight: bold;
            background-color: #1c6dd0;
            color: #fff;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            margin-top: 20px;
            opacity: 0;
            animation: fadeInButton 1.5s forwards 2s;
            font-family: 'Noto Sans Devanagari', sans-serif;
        }

   
        @keyframes fadeInButton {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .call-button1:hover {
            background-color: #1456a6;
            transform: scale(1.05);
        }


        .map-container {
            width: 100%;
            max-width: 800px;
            margin: 20px auto;
            border: 3px solid #2c3e50;
            border-radius: 10px;
            overflow: hidden;
        }

        iframe {
            width: 100%;
            height: 450px;
            border: none;
        }


        a {
            color: #008CBA;
            text-decoration: none;
            font-weight: bold;
        }

        a:hover {
            text-decoration: underline;
        }

        table {
            width: 90%;
            margin: 30px auto;
            border-collapse: collapse;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        th, td {
            padding: 12px;
            text-align: left;
            border: 1px solid #ddd;
        }

        th {
            background-color: #2c3e50;
            color: white;
            text-align: center;
        }

        tr:nth-child(even) {
            background-color: #f2f2f2;
        }

        tr:hover {
            background-color: #e1e1e1;
        }
        td a{
        margin-left:8px;
        text-decoration:none;
        }
  .buttonHotel {
            display: inline-block;
            margin: 20px;
           padding: 45px 50px;
            background-color:#2c3e50;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 21px;
            transition: background-color 0.3s ease;
			
		       }
        .buttonHotel:hover {
            background-color: #45a049;
        }
tfoot td {
    font-weight: bold;
    background-color: #f4f4f4;
}

.highlight {
    background-color: #ffeeba;
    font-weight: bold;
}
/* Container for the buttons */
.fixed-buttons {
    position: fixed;
    bottom: 250px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Common styles for all buttons */
.fixed-buttons button {
    padding: 10px 15px;
    background-color: #3498db; /* Default background color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    animation: fadeIn 1s;
    transition: background-color 0.3s ease;
}

/* Specific styles for the Home button */
.fixed-buttons button.home {
    background-color: #3498db; /* Blue */
}

.fixed-buttons button.home:hover {
    background-color: #2980b9; /* Darker blue on hover */
}

/* Specific styles for the Index button */
.fixed-buttons button.index {
    background-color: #2ecc71; /* Green */
}

.fixed-buttons button.index:hover {
    background-color: #27ae60; /* Darker green on hover */
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



       		 @media (max-width: 768px) {
            table {
                font-size: 12px;
            }
            th, td {
                padding: 8px;
            }
			 main {
                padding: 20px;
            }

	
            .welcome-text {
                font-size: 24px; /* Adjusted for mobile devices */
            }

            .logo-container1 img {
                width: 100px; /* Adjusted logo size for mobile devices */
            }
			  iframe {
                height: 300px;
            }

            h2 {
                font-size: 20px;
            }

            p {
                font-size: 16px;
            }
        }
		
		
		
		
		footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
}

footer p {
    margin: 10px 0;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: #3498db; /* Optional hover effect for the link */
}

footer img {
    vertical-align: middle;
    width: 80px;
}
     
        @media screen and (max-width: 768px) {
            .titleMain {
                font-size: 36px;
            }

            .welcome-text1 {
                font-size: 18px;
            }

            .helpline1 {
                font-size: 18px;
            }

            .call-button {
                font-size: 18px;
                padding: 12px 30px;
            }

            .special-img {
                width: 140px;
            }
			
        }