.sticky-nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease-in-out;
            background-color: #ffffff;
        }
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        .slide.active {
            opacity: 1;
        }
        /* Bounce Animation */
        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        .animate-bounce-custom {
            animation: bounce 1s infinite;
        }

        /* Fade-in on scroll animation */
        .fade-in-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Modal styling */
        .modal {
            display: none; /* Hidden by default */
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.5);
            justify-content: center;
            align-items: center;
        }
        .modal-content {
            background-color: #fff;
            margin: 15% auto;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
            width: 90%;
            max-width: 700px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }
        .close-btn {
            color: #aaa;
            position: absolute;
            top: 10px;
            right: 20px;
            font-size: 28px;
            font-weight: bold;
        }
        .close-btn:hover,
        .close-btn:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }
        .modal-success-icon {
            color: #22c55e;
            font-size: 3rem;
        }
        .modal-error-icon {
            color: #ef4444;
            font-size: 3rem;
        }
        .chat-bubble {
            max-width: 80%;
            border-radius: 1rem;
            padding: 0.75rem 1rem;
            margin-bottom: 0.5rem;
        }
        .chat-user {
            background-color: #1a56db;
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 0.25rem;
        }
        .chat-bot {
            background-color: #e5e7eb;
            color: #111827;
            align-self: flex-start;
            border-bottom-left-radius: 0.25rem;
        }
        .chat-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 350px;
            height: 500px;
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            overflow: hidden;
            z-index: 1000;
            display: none;
            flex-direction: column;
            transition: all 0.3s ease-in-out;
        }
        .chat-container.active {
            display: flex;
        }
        .chat-header {
            background-color: #1a56db;
            color: white;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .chat-window {
            flex-grow: 1;
            padding: 1rem;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
        }
        .chat-input-area {
            border-top: 1px solid #e5e7eb;
            padding: 1rem;
            display: flex;
            align-items: center;
        }
        .chat-toggle-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #1a56db;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 1001;
            transition: transform 0.3s ease-in-out;
        }
        .chat-toggle-btn.hidden {
            display: none;
        }
        .loading-dots {
            display: none;
            justify-content: center;
            align-items: center;
            height: 30px;
        }
        .loading-dot {
            width: 10px;
            height: 10px;
            background-color: #9ca3af;
            border-radius: 50%;
            margin: 0 3px;
            animation: bounce 0.6s infinite alternate;
        }
        .loading-dot:nth-child(2) {
            animation-delay: 0.2s;
        }
        .loading-dot:nth-child(3) {
            animation-delay: 0.4s;
        }
    

    .site-footer {
  background: linear-gradient(to right, #0c1e43, #17457b, #077f9b); /* Elegant navy-teal gradient */
  color: #fff;
  padding: 40px 20px 10px;
  font-family: 'Raleway', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-section h3 {
  color: #cbb26a;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 2px solid #cbb26a;
  padding-bottom: 5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a,
.footer-section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.footer-section a:hover {
  color: #cbb26a;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
}

.footer-form input {
  width: 100%;
  padding: 8px;
  border: none;
  margin-bottom: 10px;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
}

.footer-form button {
  background: #cbb26a;
  color: #0c1e43;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}

.footer-form button:hover {
  background: #d6c27f;
}

.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: #ccc;
}

.footer-legal {
  margin-bottom: 8px;
}

.footer-legal a {
  color: #ccc;
  margin: 0 6px;
  text-decoration: none;
  font-weight: 500;
}

.footer-legal a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-section {
    flex: 1 1 100%;
  }
}


* {
  box-sizing: border-box;
}

.travelermenu {
 
  width: 100%;
  text-align:center;
}
.travelermenuitem {
  padding: 1px;
}

.travelermain {
  width: 100%;
  padding:20px;
  position:static;
  text-align:center;
  
border-radius: 10px;
}

.tablinkmain {
	float:left;
  width: 50%;
  padding:100px 10px;

}
.tablinkmainimg {
	float:left;
  width: 50%;
}

.tablinkmenuitem {
  width: 100%;
}


@media only screen and (max-width:800px) {
  /* For tablets: */
  .travelermain {
    display:none;
  
  }
  .travelermenu {
    width: 100%;
    text-align:center;
  }
  .tablinkmainimg {
	 display:none;
}
  .tablinkmain {
	float:left;
  width: 100%; padding:20px;
}
}


.tablink {
  background-color: white;
  border:#e2e2e2 solid 1px;
  border-radius:7px;
  color: #022739;
  outline: none;
  cursor: pointer;
  padding: 7px 30px;
  font-size: 14px;
  width:  auto;
  font-weight:700;
  text-align:center;
  alignment-adjust:central;
  vertical-align:central;
}

.tablink:hover {
  color: #022739;
}

/* Style the tab content */
.tabcontent {
  color: black;
  
  padding: 50px;
  text-align: left;
}

#1 {background-color:#0b264a;}
#2 {background-color:#0b264a;}
#3 {background-color:#0b264a;}
#4 {background-color:#0b264a;}


.faq-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.accordion {
  background: #0c1e43;
  color: #fff;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  margin: 0;
  transition: background 0.3s ease-in-out;
  cursor: pointer;
}

.accordion .icon {
  font-size: 20px;
  transition: transform 0.3s ease-in-out;
}

.accordion.active .icon {
  transform: rotate(45deg);
}

.panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px;
  margin: 0;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  background-color: #f9f9f9;
  color: #333;
  border-left: 4px solid #0c1e43;
  border-radius: 0 0 10px 10px;
}

.panel.show {
  max-height: 500px;
  opacity: 1;
  padding: 20px;
}

/* Custom Gradients (optional, feel free to customize) */
.gradient1 { background: linear-gradient(to right, #077f9b, #0c1e43); color: #fff; }
.gradient2 { background: linear-gradient(to right, #17457b, #0c1e43); color: #fff; }
.gradient3 { background: linear-gradient(to right, #cbb26a, #0c1e43); color: #fff; }



.Triporagocontent {
	text-align: center; 

}


/* Navigation Styles */

/* Header */

.Triporagoheader {
	border-bottom:#003 solid 3px;
	background-color:#FFF;
  	/* background-image: linear-gradient(to right, #0c1a3f , #07839f);*/
	 position:relative;
	 height:auto;
     z-index: 9999999999999;
     width: 100%;
}

.Triporagolink a{ color:#FFF;}

.Triporagolink a:hover{ color:#FF0;}
.Triporagowrap {
	max-width: 1000px; /* Changge this with your max-width size */
	margin: 0 auto;padding-top:14px;
	padding-bottom:14px;
	
}

.Triporagologo {
	position:relative;
	max-width:240px;
	
	}

.Triporagotopinfo {
	width: 100%;background-color: #fff;
	height:auto;
	border-top:#0c1a3f solid 3px;
	padding:7px; display:block;
	display:flex;
	
	}
/* Mobile menu */
#Triporagomenu-icon {
	display: block;
	position: absolute;
	top:0;
	padding:27px;
	right: 0;
	color: black;
	text-decoration: none;
	font-weight: bold;
	font-size:16px;
	cursor: pointer;
	opacity: 1;
	

	&:hover {
		opacity: 0.85;
		text-decoration: none;
		border: none;
	}
}

.Triporagonavbar {
	
	float: none;
	max-height: 0;
	color:#000;
	overflow: hidden;
	padding-top:0px;
	@include transition(max-height .4s);

	.Triporagomenu {
		margin: 0;
		padding: 0;
		list-style-type: none;

		li {
			list-style-type: none;
			display: block;
		
			a {
				display: block;
				text-decoration: none;
				color:#000;
				padding: 0 0.8em; padding-bottom:20px; text-align:center;
				@include transition(all 0.2s ease);
				border-bottom: 1px solid lighten($navbar-bg, 12%);

				&:hover {
					color:#333;
					
				}

				&.Triporagoactive {
					background-color: lighten($navbar-bg, 10%);
					
				}
			}
		}
	}
}


.Triporagoexpand {
	max-height: 20em;
}
@media only screen and (max-width :768px) {.Triporagotopinfo {
		display: none;
	}}
@media only screen and (min-width : 768px) {

	.Triporagowrap {
		padding-left: 1em;
		padding-right: 1em;
	}
	
	.Triporagologo {
		margin-left: 0;
	}

	.Triporagologo, .Triporagonavbar {
		display: inline-block;
	}

	/* Mobile menu icon */ 	
		#Triporagomenu-icon{
		display: none;
	}

	.Triporagonavbar {
		float: right;
		max-height: none;
		padding-top:20px;
		.Triporagomenu {
			box-shadow: 0 -3px 0 darken($navbar-bg, 10%) inset;
			li {
				list-style-type: none;
				display: inline-block;
				text-align: center;
				
				a {
					display: block;
					border-bottom: 0;

					&:hover {
						box-shadow: 0 -3px 0 $navbar-bg inset;
					}

					&.Triporagoactive {
						box-shadow: 0 -3px 0 $navbar-bg inset;
					}
				}
			}
		}
	}
}
