/* ========== Global Styles ========== */
body, html {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px; /* Increase the font size */
    margin-bottom: 15px;
    color: #222;
}

.about-divider {
    width: 80px;
    border: 2px solid #000;
    margin-bottom: 20px;
}

.about-text h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #555;
    margin-top: 20px;
}

.about-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color: #333;
    line-height: 1.9;
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 12px 26px;
}

.about-text p {
    letter-spacing: 0.3px;
    line-height: 2;
}

/* ========== Header Styles ========== */
/* Header Section */
header {
    background-color: #fff;
    padding: 10px 0;  /* Reduced header height */
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    /* Remove sticky properties */
    /* position: sticky; */
    /* top: 0; */
    z-index: 100;
}


.flex-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
}

.flex-container > .text, 
.flex-container > .image {
  flex: 1 1 100%;
}

@media (min-width: 768px) {
  .flex-container > .text,
  .flex-container > .image {
    flex: 1 1 50%;
  }
}




/* Logo Wrapper */
.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    width: 160px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* Center Logo Default Styling */
.responsive-logo {
  display: block;
  margin: 0 auto;
  max-width: 200px;
  height: auto;
  padding: 10px 0;
}

/* Tablet Size */
@media (max-width: 768px) {
  .responsive-logo {
    max-width: 150px;
  }
}

/* Mobile Size */
@media (max-width: 480px) {
  .responsive-logo {
    max-width: 110px;
  }
}

/* Responsive 3D Logo */
.logo-3d {
  display: inline-block;
  background: white;
  padding: 10px;
  border-radius: 20px;
  box-shadow:
    5px 5px 15px rgba(0,0,0,0.2),
    -5px -5px 15px rgba(255,255,255,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  /* Responsive sizing */
  width: 80%;
  max-width: 150px;
  height: auto;
}

/* Hover effect for desktop only */
@media (hover: hover) {
  .logo-3d:hover {
    transform: scale(1.05) rotateX(5deg) rotateY(5deg);
    box-shadow:
      10px 10px 25px rgba(0,0,0,0.4),
      -10px -10px 25px rgba(255,255,255,0.4);
  }
}

/* Center wrapper */
.logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.logo-3d {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
}


/* ========== Navbar Styles ========== */

.nav-link-custom {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3399FF;
    background-color: transparent;
    padding: 10px 20px;
    margin: 4px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Active link style */
.nav-link-custom.active {
    background-color: #0d47a1;
    color: #fff;
}

/* Hover effect */
.nav-link-custom:hover {
    background-color: #0d47a1;
    color: #fff;
}


/* Custom Navbar Styling */
.custom-navbar {
    background-color: #ffffff;
    font-size: 1.1rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.custom-navbar .nav-link {
    color: #007bff; /* Normal blue */
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 15px;
    border-radius: 5px;
}

/* Hover and Active Styling */
.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    background-color: #0056b3; /* Dark Blue */
    color: #ffffff !important; /* White text */
}

.navbar, .footer, h1, h2, h3, p, a {
    font-family: 'Open Sans', sans-serif;
}

.navbar {
    white-space: nowrap;         /* Prevents wrapping */
    overflow-x: auto;            /* Allows horizontal scroll on small screens */
    display: flex;               /* Align items in row */
    justify-content: space-between;  /* Optional: spaces between items */
    align-items: center;
    flex-wrap: nowrap;           /* VERY important: No wrapping */
}

.navbar a {
    padding: 10px 15px;
    text-decoration: none;
    color: #007bff;
    white-space: nowrap;         /* Prevent link text wrapping */
}



/* ========== Hero Section ========== */
.hero-section {
    background-image: url("../images/hero.jpg");

    background-size: cover;        /* Cover entire area */
    background-position: center;   /* Center the image */
    background-repeat: no-repeat;  /* No repeat */
    background-attachment: fixed;  /* FIXED background when scrolling */
    
    height: 100vh;                 /* Full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    position: relative;
}


/* Hero Content Box */
.hero-box {
    background-color: rgba(255, 255, 255, 0.8);  /* 0.5 = 50% transparency */
    padding: 30px;
    border-radius: 12px;
    box-shadow: none; /* Remove shadow */
    max-width: 560px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;

}

/* Hero Headings */
.hero-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: #000; /* Dark text */
}

/* Hero Paragraph */
.hero-box p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #333;
}

/* Buttons */
.btn {
    padding: 10px 22px;
    font-size: 16px;
    border-radius: 8px;
    font-weight: 500;
}

/* ========== WhatsApp Floating Button ========== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: white;
    background-color: #25D366;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    z-index: 100;
}

/* ========== General Section Padding ========== */
.section {
    padding: 40px;
    text-align: center;
}

/* Increase image size */
.larger-image {
    max-width: 100%;  /* Full width of column */
    height: auto;
}

/* Optional: Force a bigger size */
@media (min-width: 768px) {
    .larger-image {
        max-width: 550px;   /* You can adjust this value */
    }
}

/* About Section */
.about-section {
    padding: 50px 20px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.about-text h4 {
    font-size: 18px;
    margin-top: 20px;
}

.about-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

.about-divider {
    width: 200px;
    border: 1px solid #333;
    margin-bottom: 20px;
}

.about-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
}

.reviews-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 20px;
    color: #fff;
}

/* Optional dark overlay */
.reviews-section .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Content Styling */
.reviews-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
}

.google-icon {
    width: 40px;
}

.rating-number {
    font-size: 28px;
    font-weight: bold;
    margin-left: 10px;
}

.rating-stars {
    font-size: 24px;
    margin-left: 10px;
    color: gold;
}

.total-reviews {
    font-size: 16px;
    margin-top: 5px;
}

/* Review Card Styling */
.review-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 20px;
    margin: 15px auto;
    border-radius: 12px;
    max-width: 400px;
}

.reviewer-initial {
    width: 50px;
    height: 50px;
    background: #003366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 10px;
}

.review-stars {
    color: #FFD700;
    margin-bottom: 10px;
}

.btn-light {
    background-color: #fff;
    color: #333;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* About Section */
.about-section {
    padding: 0;
}

/* Left Side Text */
.text-box {
    text-align: left;
    max-width: 100%;
}

/* Divider */
.about-divider {
    width: 200px;
    border-top: 2px solid #333;
    margin-bottom: 20px;
}

/* Image Styling */
img.object-fit-cover {
    object-fit: cover;
}

/* Remove unwanted padding/margin */
.container-fluid, .row, .col-md-6 {
    margin: 0;
    padding: 0;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .text-box {
        text-align: center;
    }
    .about-divider {
        margin: 0 auto 20px auto;
    }
}
    
/*... Contact Section.... */

/* Glassmorphism Contact Section */
.glass-contact-wrapper {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1503264116251-35a269479413?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

.glass-contact-box {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px;
  width: 100%;
  max-width: 500px;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-contact-box h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
}

.glass-contact-box input,
.glass-contact-box textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: background 0.3s ease;
}

.glass-contact-box input::placeholder,
.glass-contact-box textarea::placeholder {
  color: #eee;
}

.glass-contact-box input:focus,
.glass-contact-box textarea:focus {
  background: rgba(255, 255, 255, 0.3);
}

.glass-attach-label {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.glass-contact-box button {
  background-color: #ff3e6c;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.glass-contact-box button:hover {
  background-color: #ff2654;
}

@media screen and (max-width: 600px) {
  .glass-contact-box {
    padding: 20px;
  }
}


.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: transparent;
}

.contact-box {
  width: 100%;
  max-width: 360px;
  background: linear-gradient(to bottom right, #355c7d, #6c5b7b);
  color: white;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-box h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 12px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

.contact-box textarea {
  resize: vertical;
  min-height: 80px;
}

.attach-file {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  color: #fff;
}

.attach-file input {
  display: none;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  font-size: 13px;
  margin-bottom: 15px;
}

.checkbox-row input {
  margin-right: 8px;
}

.contact-box button {
  width: 100%;
  padding: 10px;
  background-color: #ff3366;
  border: none;
  border-radius: 6px;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-box button:hover {
  background-color: #ff1744;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .contact-box {
    padding: 20px;
    max-width: 90%;
  }
}


.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.submit-btn {
    background-color: #1d0d0d;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #4F6367;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    margin: 15px 0;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background-color: #25D366;
}

.contact-details p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}



.review-section {
    position: relative;
    background: url('../images/footer.jpg') center/cover no-repeat;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.review-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); /* dark overlay */
    z-index: 1;
}

.review-section .container {
    position: relative;
    z-index: 2;
}

.review-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.review-subheading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 40px;
}

.google-icon {
    width: 30px;
    height: 30px;
}

.review-rating {
    font-weight: bold;
    margin-left: 8px;
    color: #ffd700;
}

.review-count {
    margin-left: 8px;
}

.about-section {
    padding: 80px 40px;
    background: #fff;
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* about design */

/* Pre-header (top bar) */
.pre-header {
    background-color: #1f2327;
    color: #fff;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.pre-header a {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
}

.pre-header a:hover {
    color: #ddd;
}

/* Main logo section */
.header {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
}

.header .logo {
    max-height: 100px;
    transition: all 0.3s ease;
}


/* Social icons in header */
.social-icons a {
    color: #fff;
    margin-right: 12px;
    font-size: 16px;
}

.social-icons a:hover {
    color: #ccc;
}

.social-section {
  text-align: center;
  padding: 20px 0;
  background-color: #fff;
}

.social-section h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.social-section hr {
  width: 80%;
  margin: auto;
  border: 0;
  border-top: 1px solid #ccc;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icons a {
  color: #000;
  font-size: 24px;
  transition: transform 0.2s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #007bff;
}


.social-section {
  background-color: #f9f9f9;
  padding: 40px 0;
  text-align: center;
}

.social-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: #333;
}

.social-title::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background-color: #007bff;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 2px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  font-size: 20px;
  color: #fff;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.social-icons .facebook { background: #3b5998; }
.social-icons .instagram { background: #e1306c; }
.social-icons .pinterest { background: #bd081c; }
.social-icons .twitter { background: #1da1f2; }
.social-icons .youtube { background: #ff0000; }


/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Section Title */
.package-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ccc;
}

/* Sub Title */
.package-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}


/* Package Image & Details Container */
.package-container {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

/* Embedded PDF Viewer */
.package-pdf-viewer {
    width: 100%;
    height: 600px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .package-pdf-viewer {
        height: 400px;
    }
}

.price-card {
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.price-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.seat-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.price-card .underline {
    font-weight: 600;
    text-decoration: underline;
    margin-top: 10px;
}

.price-card .note {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 100%;
}


/* Contact us page */

.contact-section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Add space between form and contact info */
.contact-info {
    padding-left: 40px;
}

/* Optional: Reduce form input width a bit */
.form-control {
    font-size: 15px;
    padding: 10px;
}

.btn-dark {
    background-color: #2b1616;
    color: white;
    font-weight: bold;
}

/* WhatsApp button */
.btn-success {
    background-color: #25D366;
    border: none;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .contact-info {
        padding-left: 0;
        margin-top: 30px;
    }
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Join US form  */

.join-section {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 30px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    color: #2b0b05;
}

.section-title::before,
.section-title::after {
    content: "";
    display: inline-block;
    width: 100px;
    height: 1px;
    background: #2b0b05;
    margin: 0 20px;
    vertical-align: middle;
}

.section-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
    color: #555;
}

.join-form {
    max-width: 400px;
    margin: 0 auto;
}

.join-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.join-form .btn-dark {
    width: 150px;
    background-color: #2b0b05;
    color: #fff;
    padding: 10px;
    border-radius: 25px;
    border: none;
}


/* Privacy policies */

.pdf-viewer {
    text-align: center;
    padding: 50px 20px;
}

.section-title {
    font-size: 28px;
    margin-bottom: 10px;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: "";
    display: inline-block;
    width: 120px;
    height: 1px;
    background-color: #000;
    margin: 0 15px;
    vertical-align: middle;
}

.pdf-subtitle {
    font-size: 20px;
    margin: 15px 0;
}

.pdf-description {
    max-width: 800px;
    margin: 0 auto 25px;
    color: #444;
    font-size: 15px;
}

.pdf-buttons {
    margin-bottom: 25px;
}

.pdf-buttons .btn {
    margin: 0 10px;
    padding: 10px 18px;
    background-color: #2b0b05;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.pdf-buttons .btn:hover {
    background-color: #4e241a;
}

.pdf-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


/* Zig Zag Section */
/* Basic styling for the section and title (optional, adjust as needed) */
.best-packages-section {
    padding: 40px 20px; /* Adjust padding as needed */
    max-width: 1200px; /* Limit content width */
    margin: 0 auto; /* Center the content */
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em; /* Adjust font size */
    color: #333; /* Darker text color */
}




/* WhatsApp Button Styling */
.whatsapp-button {
    display: inline-block;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 12px 25px;
    border-radius: 50px; /* Pill shape */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-button:hover {
    background-color: #1DA851; /* Darker green on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/

/* JOIN US SECTION */

/* Join Us Section Styles */
.join-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.join-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.join-section .section-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.join-form {
    max-width: 500px;
    margin: auto;
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.join-form .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.join-form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.15);
}

.join-form .btn {
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.join-form .btn:hover {
    background-color: #343a40;
}

.join-section a {
    color: #0d6efd;
    text-decoration: none;
}

.join-section a:hover {
    text-decoration: underline;
}



/* FONT  */
/* Left Content Text Styling */
.left-content {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

/* Headings Styling */
.left-content h2,
.left-content h3,
.left-content h4 {
    font-family: 'Open Sans', sans-serif;
    color: #222;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Paragraph Styling */
.left-content p {
    margin-bottom: 15px;
}


/* Right Side Image - Responsive & Larger */
.right-image {
    width: 100%;       /* Full width of the column */
    max-height: 500px; /* Increase height as needed */
    object-fit: cover; /* Keeps aspect ratio while covering the area */
    border-radius: 12px; /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Optional: subtle shadow */
}

/* Floating Icons Container */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.pill-btn {
    display: flex;
    align-items: center;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    padding: 12px 16px;
    font-size: 16px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    width: 55px;
}

.pill-btn i {
    font-size: 20px;
}

.pill-btn .text {
    margin-left: 10px;
    white-space: nowrap;
    opacity: 0;
    max-width: 0;
    transition: all 0.3s ease;
}

/* Slide out text on hover */
.pill-btn:hover {
    width: 140px;
}

.pill-btn:hover .text {
    opacity: 1;
    max-width: 100px;
}

/* Specific Colors */
.call-btn {
    background-color: #007bff;
}

.whatsapp-btn {
    background-color: #25d366;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .pill-btn {
        width: 50px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .pill-btn i {
        font-size: 18px;
    }

    .pill-btn:hover {
        width: 120px;
    }
}

/* Blue Scrolling Notification Bar */
.scrolling-notice {
  background-color: #007bff; /* Bootstrap Blue */
  color: #fff;
  padding: 20px 20px;
  overflow: hidden;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  z-index: 999;
}

.scrolling-text {
  white-space: nowrap;
  display: inline-block;
  animation: scroll-left 15s linear infinite;
}

/* Scroll Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive Font */
@media (max-width: 768px) {
  .scrolling-notice {
    font-size: 16px;
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .scrolling-notice {
    font-size: 14px;
    padding: 6px 10px;
  }
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-form,
.contact-info {
  flex: 1;
  min-width: 300px;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}


/* Agaram Reverse */


.tour-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  gap: 30px;
}

.tour-text, .tour-image {
  flex: 1 1 45%;
  max-width: 500px;
}

.tour-text {
  font-family: 'Poppins', sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
}

.tour-text h3 {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 15px;
}

.tour-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Reverse the flex direction for alternate rows */
.tour-row.reverse {
  flex-direction: row-reverse;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .tour-row, .tour-row.reverse {
    flex-direction: column;
  }
  .tour-text, .tour-image {
    max-width: 100%;
    text-align: center;
  }
  .tour-text h3 {
    font-size: 20px;
  }
}


.vision-table-section {
  padding: 40px 20px;
  background: #f7faff;
}

.vision-title {
  text-align: center;
  font-size: 28px;
  color: #003366; /* Dark Blue */
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  border-bottom: 3px solid #003366;
  display: inline-block;
  padding-bottom: 10px;
}

.table-container {
  max-width: 960px;
  margin: 0 auto;
  overflow-x: auto;
}

.vision-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Poppins', sans-serif;
  background-color: #e3f0ff; /* Light professional blue */
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.vision-table th {
  background-color: #003366;
  color: #fff;
  padding: 15px;
  text-align: left;
  width: 25%;
}

.vision-table td {
  padding: 15px;
  color: #333;
  font-size: 15px;
}

.vision-table tr:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .vision-table th,
  .vision-table td {
    display: block;
    width: 100%;
    padding: 12px;
  }

  .vision-table tr {
    margin-bottom: 20px;
    display: block;
    background: #e3f0ff;
    border-radius: 8px;
  }

  .vision-table th {
    background-color: #003366;
    color: #fff;
    border-radius: 8px 8px 0 0;
  }

  .vision-table td {
    border-top: none;
  }
}

/* Terms & Conditions Section Styles */
.terms-section {
  background-color: #f4f9ff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 28px;
  color: #002f6c; /* Dark blue */
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0056b3;
  margin: 10px auto 0;
  border-radius: 2px;
}

.intro-text {
  text-align: center;
  font-size: 16px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 30px;
}

.terms-table-wrapper {
  overflow-x: auto;
}

.terms-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #e6f0ff; /* Professional light blue */
  color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 47, 108, 0.2);
}

.terms-table th,
.terms-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #cce0ff;
}

.terms-table th {
  background-color: #0056b3;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.terms-table td {
  font-size: 15px;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 22px;
  }

  .intro-text {
    font-size: 14px;
  }

  .terms-table th,
  .terms-table td {
    padding: 14px;
    font-size: 14px;
  }
}


.top-destination-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 20px 10px;
  background-color: #f5faff;
}

.top-destination-buttons button {
  background-color: #0056b3;
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.top-destination-buttons button:hover {
  background-color: #004299;
}

@media (max-width: 768px) {
  .top-destination-buttons {
    flex-direction: column;
    align-items: center;
  }

  .top-destination-buttons button {
    width: 80%;
    max-width: 300px;
  }
}

/* Best Packages Section */


.section-heading {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.section-heading h2 {
  display: inline-block;
  position: relative;
  font-size: 32px;
  color: #003366;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #003366;
}



/* ==== FAQ Section ==== */
.faq-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title {
  font-size: 32px;
  color: #002366;
  margin-bottom: 10px;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #555;
  font-size: 16px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.faq-question {
  font-size: 18px;
  color: #002366;
  margin-bottom: 8px;
  cursor: pointer;
}

.faq-answer {
  font-size: 16px;
  color: #333;
  margin: 0;
}


/* Book Now Button */
.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  margin-top: 15px;
  font-weight: 600;
  transition: background 0.3s;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}

/* Responsive */
@media (max-width: 768px) {
  .package-row,
  .package-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .package-text {
    padding: 10px 0;
  }
}


.faq-section {
  background: url("../images/footer.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 60px 20px;
  color: #fff;
}

.faq-overlay {
  background-color: rgba(0, 0, 0, 0.6); /* dark overlay for readability */
  padding: 60px 20px;
  border-radius: 10px;
  max-width: 900px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: auto;
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 40px;
  line-height: 1.6;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 15px 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 10px 0;
  color: #eee;
  line-height: 1.6;
  font-weight: 400;
}

.faq-question.active + .faq-answer {
  display: block;
}


.info-section {
  background: #f9f9f9;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.info-box {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-column {
  flex: 1 1 300px;
}

.info-column h3 {
  font-size: 22px;
  color: #0a3d62;
  margin-bottom: 20px;
}

.info-links,
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-links li,
.contact-details li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

.info-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.info-links li a:hover {
  color: #007b5e;
  padding-left: 5px;
}

.contact-details i {
  margin-right: 10px;
  color: #007b5e;
}

@media (max-width: 768px) {
  .info-box {
    flex-direction: column;
    padding: 30px 20px;
  }
}

.payment-info {
  background-color: #f9f9f9;
  padding: 30px 15px;
  text-align: center;
}

.payment-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.payment-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.payment-text {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  font-weight: 500;
}

/* Package list */

.package-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px 60px;
}

.package-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.package-row.reverse {
  flex-direction: row-reverse;
}

.package-text, .package-image {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  box-sizing: border-box;
}

.package-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}




