body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

header {
    background-color: #004d40;
    color: white;
    padding: 25px 10px;
    text-align: center;
}

nav {
    text-align: center;
    margin: 20px 0;
}

nav input {
    padding: 10px;
    width: 250px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
}






/* .card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
} */

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}



.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
}

.card-content h2 {
    margin-top: 0;
    font-size: 20px;
    color: #00796b;
}

.card-content a {
    display: inline-block;
    margin-top: 10px;
    background: #00796b;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
}

.card-content a:hover {
    background: #004d40;
}


.contact-form {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.contact-form button {
    background-color: #00796b;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #004d40;
}


/* Contact Us Section Styling */
.contact-page {
  background: url("../images/contact-bg.jpg") no-repeat center center/cover;
  padding: 80px 20px;
}

.contact-overlay {
  max-width: 500px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.contact-overlay h2 {
  margin-bottom: 25px;
  color: #0c3c3c;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-overlay form button {
  background-color: #0c3c3c;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-overlay form button:hover {
  background-color: #f27c38;
}

.contact-overlay form input,
.contact-overlay form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}


footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
    border-top: 3px solid #00796b;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}



.badge {
    position: absolute;
    background-color: #ff4081;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    top: 12px;
    left: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 2;
}

.card {
    position: relative; /* required for .badge positioning */
    overflow: hidden;
}


/* Navbar Styles */
.navbar {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.logo a {
    font-size: 28px;
    font-weight: bold;
    color: #FF6B00;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #FF6B00;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 12px;
}


/* Background with gradient and smooth font */
.inquiry-page {
    background: url("../images/T2I BG.jpg");
    background-size: cover;
    background-position: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
}

.form-container h2 {
    text-align: center;
    color: #ff5722;
    margin-bottom: 25px;
}

.form-container label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.form-container input,
.form-container textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-container input:focus,
.form-container textarea:focus {
    border-color: #ff5722;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #ff5722;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e64a19;
}

input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    margin-top: 8px;
}



@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.card-container .card {
  animation: fadeIn 1s ease forwards;
}


.card img {
  transition: transform 0.5s ease;
}

.card img:hover {
  transform: scale(1.05);
}


@keyframes slideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.navbar a {
  animation: slideIn 0.8s ease forwards;
}


button, .btn, .read-more-btn {
  transition: all 0.3s ease;
}

button:hover, .btn:hover, .read-more-btn:hover {
  background-color: #22ffff18;
  color: #fff;
  box-shadow: 0 0 10px #e3b0a1, 0 0 40px #a59792, 0 0 80px #443531;
}


.reviews-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.reviews-section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
}

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.review-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.review-card p {
  font-style: italic;
  color: #555;
}

.review-card h4 {
  margin-top: 15px;
  color: #ff5722;
  font-weight: bold;
}



.search-container {
  text-align: center;
  margin: 40px 0;
}

.search-container form {
  display: inline-flex;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 5px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.search-container input[type="text"] {
  border: none;
  outline: none;
  padding: 12px 20px;
  width: 280px;
  border-radius: 50px;
  font-size: 16px;
}

.search-container button {
  background-color: #f27c38;
  border: none;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.search-container button:hover {
  background-color: #0c3c3c;
}


.newsletter {
  background: linear-gradient(to right, #ffecd2, #fcb69f);
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 50px auto;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.newsletter h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 10px;
}

.newsletter p {
  color: #555;
  font-size: 16px;
}

.newsletter input[type="email"] {
  padding: 12px;
  width: 70%;
  border: none;
  border-radius: 6px;
  margin-right: 10px;
  outline: none;
}

.newsletter button {
  padding: 12px 20px;
  background-color: #00704a;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter button:hover {
  background-color: #004d32;
}


.messages {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  color: green;
  font-weight: bold;
}


.footer {
  background-color: #003e29;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  margin-top: 50px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-container h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.footer-container p {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links li a {
  text-decoration: none;
  color: #fcb69f;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: #ffd700;
}

.footer-container .copyright {
  font-size: 14px;
  opacity: 0.8;
}

.intro-video video {
  width: 45%;         /* Full width of parent container */
  max-width: 90px;    /* Max limit */
  height: auto;        /* Keep aspect ratio */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto 20px; /* Center video with margin */
}


.login-page {
    background: #f9f9f9;
    padding: 40px;
    max-width: 400px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.login-page h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login-page form {
    display: flex;
    flex-direction: column;
}

.login-page input {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.login-page button {
    padding: 12px;
    background-color: #ff5722;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-page button:hover {
    background-color: #e64a19;
}


body {
  background-color: white;
  color: black;
  transition: all 0.3s ease;
}

body.dark-mode {
  background-color: #121212;
  color: white;
}

.theme-toggle-btn {
  padding: 6px 12px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


/* .price-badge {
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
} */
 
.price-badge {
  display: inline-block;
  background-color: #f57c00;
  color: white;
  padding: 4px 10px;
  border-radius: 5px;
  margin-top: 8px;
  font-weight: bold;
}

.about-us h2 {
  font-weight: 700;
  color: #e85d04;
}

html {
  scroll-behavior: smooth;
}


.flight-booking-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 25px;
    background-color: #f0f9ff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.flight-booking-container input, .flight-booking-container button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

.flight-booking-container button {
    background-color: #1e90ff;
    color: white;
    border: none;
    cursor: pointer;
}

.flight-booking-container button:hover {
    background-color: #0d6efd;
}


.social-icons {
  text-align: center;
  margin: 20px 0;
}

.social-icons a {
  color: #fff;
  background: #333;
  padding: 10px 15px;
  margin: 0 8px;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #ff6600; /* Change on hover */
}


.share-buttons {
  text-align: center;
  margin: 30px 0;
}

.share-buttons a {
  display: inline-block;
  margin: 10px 10px;
  padding: 10px 15px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.share-buttons a:hover {
  background-color: #ff6600;
}

/* Chatbot Toggle Button */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  font-size: 16px;
  transition: background 0.3s ease;
}

.chatbot-toggle:hover {
  background-color: #e65c00;
}

/* Chatbot Box */
.chatbot {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 320px;
  background: #ffffff;
  border: 2px solid #ff6600;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
  z-index: 9999;
  overflow: hidden;
  font-family: 'Arial', sans-serif;
}

/* Chat Header */
.chat-header {
  background-color: #ff6600;
  color: white;
  padding: 12px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}

/* Chat Body */
.chat-body {
  height: 260px;
  padding: 10px;
  overflow-y: auto;
  background: #fdf3e7;  /* Light orange tint */
  font-size: 14px;
  color: #333333;
}

/* Chat Input */
.chat-input {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ddd;
  background: #ffffff;
}

.chat-input input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.chat-input button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 8px 12px;
  margin-left: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.chat-input button:hover {
  background: #e65c00;
}

/* Messages */
.bot-message {
  background: #eee;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.user-message {
  background: #315947;
  padding: 8px;
  border-radius: 6px;
  text-align: right;
  margin-bottom: 6px;
}

/* .events-section {
    padding: 40px 20px;
    background-color: #fffaf0;
    text-align: center;
}
.event-list {
    list-style: none;
    padding: 0;
}
.event-list li {
    margin: 10px 0;
    font-size: 18px;
} */


.why-us {
    background-color: #e6ffee;
    padding: 40px 20px;
    text-align: center;
}
.why-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.why-box {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-weight: bold;
}


.video-section {
    background-color: #f0f0f0;
    padding: 40px 20px;
    text-align: center;
}
.video-section iframe {
    border-radius: 10px;
    max-width: 800px;
} 



.packages-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.packages-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #222;
    font-weight: bold;
}

.package-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.package-card {
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.package-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.package-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.package-card button {
    background-color: #ff5a1f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.package-card button:hover {
    background-color: #e14e1a;
}



.brand-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ff9933;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
}

.flag-circle video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-title {
  font-size: 24px;
  font-weight: bold;
  color: #ff5722;
}


/* .navbar .dropdown {
  position: relative;
  display: inline-block;
}

.navbar .dropbtn {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: inherit;
  padding: 14px 16px;
}


.navbar .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}


.navbar .dropdown-content a {
  color: #000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


.navbar .dropdown:hover .dropdown-content {
  display: block;
}


.navbar .dropdown-content a:hover {
  background-color: #f1f1f1;
} */
