
        <?php if ($current_lang == 'bn'): ?>
        body {
            font-family: 'SolaimanLipi', 'Bangla', Arial, sans-serif;
        }
        <?php elseif ($current_lang == 'hi'): ?>
        body {
            font-family: 'Noto Sans Devanagari', 'Hindi', Arial, sans-serif;
        }
        <?php endif; ?>
    
 .container {
            position: relative;
            z-index: 2;
        }
/* Hero Section Styling */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Carousel Image Styling */
  .carousel-item {
    height: 100vh;
  }
  
  .carousel-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  /* Overlay Styling */
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
  }
  
  /* Content Container Positioning */
  .hero-section .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  
  /* Caption Styling */
  .carousel-caption {
    bottom: 20%;
    z-index: 3;
  }
  
  .caption-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
  }
  
  /* Text Styling for Better Readability */
  .display-3,
  .display-5,
  .lead {
   
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: center;
  }
  
  /* Button Styling */
  .btn {
    border-width: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  /* Top CTA Bar Styling */
  .top-cta-bar {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem !important;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-section {
      height: 80vh;
    }
    
    .carousel-item {
      height: 80vh;
    }
    
    .display-3 {
      font-size: 2.5rem;
    }
    
    .caption-content {
      padding: 1rem;
    }
    
    .top-cta-bar {
      padding: 0.75rem;
    }
    
    .top-cta-bar .btn {
      font-size: 0.9rem;
    }
  }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            h1.display-3 {
                font-size: 2.5rem;
            }
            .hero-section, #heroCarousel .carousel-item {
                height: 70vh;
            }
        }

        @media (max-width: 768px) {
            h1.display-3 {
                font-size: 2rem;
            }
            .lead {
                font-size: 1rem;
            }
            .hero-section, #heroCarousel .carousel-item {
                height: 70vh;
            }
        }
        @media (max-width: 991.98px) {
            .main-nav {
                display: flex !important;
                justify-content: space-between !important;
                align-items: center;
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            h1.display-3 {
                font-size: 1.75rem;
            }
            .hero-section, #heroCarousel .carousel-item {
                height: 60vh;
                min-height: 500px;
            }
        }
    
    .hover-effect {
        transition: transform 0.3s ease;
    }
    .hover-effect:hover {
        transform: translateY(-5px);
    }
   
    p {
        text-align: justify;
    }
   
    .carousel-caption {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 10px; /* 10px from bottom */
    top: auto; /* Override default Bootstrap top */
    padding: 0;
    width: 100%;
    text-align: left;
}

.caption-content {
    margin-left: 20px; /* 20px from left */
    max-width: 600px; /* Optional: limit width for readability */
    color: white;
}

.caption-content h3,
.caption-content p,
.caption-content .btn {
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Optional: Style the button to stand out more */
.caption-content .btn {
    padding: 10px 20px;
    font-weight: bold;
}
/* =============== Featured Tours Section =============== */

section.py-2.bg-light {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

section.py-2.bg-light .container.bg-white {
    background-color: #fff !important;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

/* Heading Styles */
section.py-2.bg-light h2.display-6 {
    font-size: 1.8rem;
    color: #2c3e50;
}

section.py-2.bg-light h3.fw-bold {
    font-size: 1.2rem;
    color: #555;
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
}

/* Paragraph */
section.py-2.bg-light p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
}

/* Duration Badge */
.tour-duration-badge {
    border-radius: 0 0 0 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Card Styling */
.tour-card .card-body {
    padding: 1rem;
}

.tour-card .card-title {
    font-size: 1.1rem;
    color: #2c3e50;
}

.tour-card .card-text {
    min-height: 40px; /* Ensures consistent height */
    font-size: 0.9rem;
}

/* Card Footer Buttons */
.tour-card .card-footer {
    display: flex;
    gap: 8px;
    padding: 0.8rem 1rem 0.5rem;
}

.tour-card .card-footer .btn {
    font-size: 0.875rem;
    padding: 0.4rem 0.6rem;
    flex: 1;
}

.tour-card .btn-outline-primary {
    border-width: 2px;
}

/* View All Button */
section.py-2.bg-light .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
}

section.py-2.bg-light .btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

/* =============== Package Comparison Table =============== */

section.py-2.bg-light .table-responsive {
    margin-top: 1rem;
    overflow-x: auto;
}

section.py-2.bg-light .table {
    min-width: 600px;
    font-size: 0.9rem;
}

section.py-2.bg-light .table th,
section.py-2.bg-light .table td {
    vertical-align: middle;
    padding: 0.6rem;
}

section.py-2.bg-light .table thead th {
    font-weight: 600;
}

section.py-2.bg-light .table tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}


  .carousel-caption {
      bottom: 20%;
      left: 5%;
      right: 5%;
      max-width: 90%;
  }
  
  h1.display-3 {
      font-size: 2.5rem;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section .lead {
        font-size: 1.25rem;
    }

    .top-cta-bar {
        flex-direction: column;
        gap: 1rem !important;
    }

    .top-cta-bar .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .top-cta-bar .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .tour-card {
        margin-bottom: 1.5rem;
    }

    .featured-tours-section .display-5 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .featured-tours-section {
        padding: 3rem 0;
    }

    .tour-card .card-title {
        font-size: 1.25rem;
    }

    .tour-card .text-primary {
        font-size: 1.1rem;
    }

    .featured-tours-section .display-5 {
        font-size: 1.8rem;
    }

    .tour-duration-badge {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .tour-card .card-body {
        padding: 1rem;
    }

    .tour-card .btn-outline-primary {
        padding: 8px 0;
        font-size: 0.95rem;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 1rem;
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .fixed-call-button {
        left: 10px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .fixed-call-button i {
        font-size: 1rem;
    }
}