/* =========================================================================
   1. CORE BASE STYLES & PREMIUM CANVAS
   ========================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

* :not(.fas):not(.fab):not(.far) {
  font-family: "Hind Siliguri", sans-serif !important;
}

body {
  margin: 0;
  font-family: "Hind Siliguri", sans-serif !important;
  /* Soft alabaster studio baseline instead of harsh pure white */
  background-color: #fcfdfd;
  /* Ambient high-end architectural lighting effects in canvas corners */
  background-image:
    radial-gradient(at 0% 0%, rgba(15, 76, 76, 0.02) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(247, 201, 72, 0.02) 0px, transparent 40%),
    radial-gradient(at 50% 100%, rgba(4, 44, 32, 0.02) 0px, transparent 50%);
  background-attachment: fixed;
  color: #334155;
  /* Modern executive slate text for an editorial feel */
}

.section {
  padding: 80px 0;
  /* Enhanced whitespace for breathing room */
  position: relative;
  overflow: hidden;
}

/* Luxury Section Alternation: Breaks up visual monotony seamlessly */
.section:nth-child(even) {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid rgba(15, 76, 76, 0.03);
  border-bottom: 1px solid rgba(15, 76, 76, 0.03);
}

.section-title {
  color: #0f4c4c;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #64748b;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* =========================================================================
   2. TOPBAR HEADER MODULE
   ========================================================================= */
.topbar {
  background: #0f2a36;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left a {
  color: #e2e8f0;
  text-decoration: none;
  margin-right: 24px;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.topbar-left i {
  margin-right: 8px;
  color: #f7c948;
  /* Accentuated brand gold status */
  font-size: 14px;
}

.topbar-right a {
  margin-left: 16px;
  text-decoration: none;
  display: inline-block;
}

.topbar-right i {
  font-size: 15px;
  color: #e2e8f0;
  transition: all 0.3s ease;
}

/* Topbar Hover Systems */
.topbar-left a:hover {
  color: #f7c948;
}

.topbar-right a:hover i {
  color: #f7c948;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .topbar-container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .topbar-left a {
    margin: 0 12px;
  }
}

/* =========================================================================
   3. NAVIGATION SYSTEMS (NAVBAR)
   ========================================================================= */
.custom-navbar {
  background: #042c20;
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(247, 201, 72, 0.1);
}

.navbar {
  margin-bottom: 0 !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #f7c948 !important;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  text-decoration: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-sub {
  font-size: 22px;
  color: #ffffff;
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.5px;
  margin-left: 80px !important;
}

.brand-sub-sub {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.5px;
}

.logo-img {
  height: 65px;
  width: auto;
  /* Fixed proportions distortion */
  max-width: 160px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: #f8fafc !important;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link.active {
  color: #f7c948 !important;
}

/* Underline Hover Matrix */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #f7c948;
  left: 0;
  bottom: 0;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-nav .nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #f7c948 !important;
}

/* Mobile Dropdown Fixes */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #032219;
    padding: 20px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }
}

/* =========================================================================
   4. HERO CAROUSEL MODULE
   ========================================================================= */
.hero-section {
  padding: 0 !important;
  margin: 0;
  background: #000;
}

.hero-img {
  height: 85vh;
  /* Optimized layout height avoiding layout cuts */
  width: 100%;
  object-fit: cover;
  display: block;
}

.carousel-item {
  position: relative;
}

/* Premium gradient cinematic overlay layer */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(4, 44, 32, 0.5) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
}

/* Dynamic Vertical Center Alignment Bugfix */
.custom-caption {
  z-index: 2;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: 80%;
  left: 10%;
  text-align: center;
}

.custom-caption h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 15px;
}

.custom-caption p {
  font-size: 35px;
  color: #f1f5f9;
  max-width: 750px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 16px 40px;
  background: #0f4c4c;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(247, 201, 72, 0.2);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(4, 44, 32, 0.4);
}

.hero-btn:hover {
  background: #f7c948;
  color: #042c20;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(247, 201, 72, 0.3);
}

@media (max-width: 768px) {
  .hero-img {
    height: 60vh;
  }

  .custom-caption h1 {
    font-size: 28px;
  }

  .custom-caption p {
    font-size: 15px;
  }

  .hero-btn {
    margin-top: 20px;
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* =========================================================================
   5. PACKAGES GRID SECTION
   ========================================================================= */
.packages {
  background: transparent;
  /* Inherits beautiful layout ambient background */
}

.packages .nav-pills {
  margin-bottom: 35px;
}

/* Custom Luxury Pills Navigation */
.nav-pills .nav-link {
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(15, 76, 76, 0.15);
  border-radius: 50px;
  padding: 10px 28px;
  background: #ffffff;
  color: #475569;
  margin: 0 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
  background: #0f4c4c;
  color: #ffffff;
  border-color: #0f4c4c;
  box-shadow: 0 5px 15px rgba(15, 76, 76, 0.25);
}

.nav-pills .nav-link:hover:not(.active) {
  background: #f1f5f9;
  color: #0f4c4c;
  border-color: #0f4c4c;
}

/* Package Display Cards */
.package-card {
  border: 1px solid rgba(15, 76, 76, 0.04);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.02),
    0 10px 20px -3px rgba(15, 42, 54, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -5px rgba(15, 42, 54, 0.08);
}

.package-card .card-body {
  padding: 24px;
  font-size: 25px;
  font-weight: 600;
}

.package-card .card-body h3 {
  font-size: 25px;
  font-weight: 700;
}

.package-card .btn {
  background: #0f4c4c;
  color: #ffffff;
  border-radius: 30px;
  padding: 11px 28px;
  font-weight: 600;
  width: 100%;
  border: none;
  transition: all 0.3s ease;
}

.package-card .btn:hover {
  background: #f7c948;
  color: #042c20;
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(247, 201, 72, 0.3);
}

/* Premium Badge Positioning Framework */
.featured {
  border: 2px solid #f7c948;
  position: relative;
}

.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 15px;
  left: 15px;
  background: #f7c948;
  color: #042c20;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}

/* Image Display Core */
.img-box {
  position: relative;
  overflow: hidden;
  background: #000;
}

.img-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-card:hover .img-box img {
  transform: scale(1.08);
}

/* Micro-Details Overlay Container */
.img-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(4, 44, 32, 0.9);
  color: #ffffff;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  z-index: 2;
}

.img-box:hover .overlay {
  opacity: 1;
}

.overlay ul {
  list-style: none;
  padding: 0;
}

.overlay ul li {
  margin: 8px 0;
  font-size: 14px;
  font-weight: 500;
}

.overlay ul li i {
  color: #f7c948;
  margin-right: 6px;
}

.price {
  font-size: 26px;
  font-weight: 700;
  color: #0f4c4c;
  margin: 15px 0;
}

.price span {
  display: block;
  font-size: 13px;
  color: #64748b;
  font-weight: 400;
  margin-top: 2px;
}

/* Premium Ziyarat Section Styling */
.premium-ziyarat-section {
  background-color: #033e29; /* আপনার সার্টিফিকেট সেকশনের মতো আকর্ষণীয় ডিপ প্রফেশনাল গ্রিন */
  padding: 60px 0;
}

/* ডিপ গ্রিন ব্যাকগ্রাউন্ডের ওপর টেক্সট হাইলাইট করার জন্য */
.premium-ziyarat-section .section-main-title {
  color: #ffffff !important; /* মূল টাইটেলটি সাদা দেখাবে */
}

.premium-ziyarat-section .panel-tag {
  color: #dfba6b !important; /* এক্সিকিউটিভ গোল্ডেন সাব-ট্যাগ */
  font-weight: 700;
}

.text-gold {
  color: #dfba6b !important; /* আইকনগুলোর জন্য মেটালিক গোল্ড টোন */
}

.division-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff; /* মক্কা/মদিনা বিভাগের নাম সাদা হবে */
  border-bottom: 2px solid #dfba6b; /* নিচে চমৎকার গোল্ডেন আন্ডারলাইন */
  padding-bottom: 10px;
  display: inline-block;
}

/* Luxury Card Design (সার্টিফিকেট সেকশনের মতো আকর্ষণীয় গোল্ডেন ফ্রেম ভাইব) */
.luxury-ziyarat-card {
  background: #dfba6b; /* কার্ডের মেইন বডি হবে এক্সিকিউটিভ গোল্ডেন ফ্রেম */
  border: none;
  border-radius: 12px; /* আধুনিক কার্ভড কর্নার */
  overflow: hidden;
  height: 100%;
  padding: 6px; /* চারপাশে নিখুঁত গোল্ডেন বর্ডার এফেক্ট তৈরি করবে */
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.luxury-ziyarat-card:hover {
  transform: translateY(-8px); /* হোভার করলে কার্ডটি স্মুথলি ওপরে উঠবে */
  box-shadow: 0 15px 30px rgba(223, 186, 107, 0.25); /* চারপাশে মৃদু গোল্ডেন গ্লো ছড়াবে */
}

/* Image Container */
.ziyarat-img-box {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px 8px 0 0; /* ফ্রেমের ভেতরে ইমেজের ওপরের কোণা রাউন্ড করার জন্য */
  background-color: #1a1a1a;
}

.ziyarat-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0.9; /* ছবিগুলোকে ব্যাকগ্রাউন্ডের সাথে সামঞ্জস্যপূর্ণ রাখতে হালকা ডার্ক টোন */
}

.luxury-ziyarat-card:hover .ziyarat-img-box img {
  transform: scale(1.08); /* হোভার করলে লাক্সারি জুম এফেক্ট */
  opacity: 1;
}

/* Card Content Box */
.ziyarat-card-body {
  background: #ffffff; /* ভেতরের লেখার অংশটি সম্পূর্ণ সাদা যাতে পড়তে আরামদায়ক হয় */
  padding: 20px;
  border-radius: 0 0 8px 8px; /* ফ্রেমের ভেতরে নিচের কোণা রাউন্ড করার জন্য */
  flex-grow: 1;
}

.site-name {
  font-size: 17px;
  font-weight: 700;
  color: #033e29; /* দর্শনীয় স্থানের নামটি আপনার কোম্পানির সিগনেচার ডার্ক গ্রিন কালারে দেখাবে */
  margin-bottom: 10px;
  line-height: 1.4;
}

.site-overview {
  font-size: 13.5px;
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
}
/* =========================================================================
   CERTIFICATE SECTION (Dark Green & Shiny Gold Theme)
   ========================================================================= */

/* পুরো সেকশনের ডার্ক গ্রিন ব্যাকগ্রাউন্ড */
.certificates-section {
  background: #042c20 !important;
  /* !important যুক্ত করা হলো */
  padding: 70px 0;
}

/* =========================================================================
   🏆 সার্টিফিকেট কার্ড - সাইনি গোল্ড বক্স ডিজাইন
   ========================================================================= */

.certificate-card {
  /* 🌟 প্রিমিয়াম মেটালিক সাইনি গোল্ড গ্রেডিয়েন্ট ব্যাকগ্রাউন্ড */
  background: linear-gradient(
    135deg,
    #fff3cd 0%,
    #f7c948 50%,
    #d4af37 100%
  ) !important;
  border: 2px solid #b89326 !important;
  /* গাঢ় গোল্ডেন বর্ডার */
  border-radius: 16px !important;
  padding: 20px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
  /* সুন্দর শ্যাডো */
}

/* ✨ হোভার করলে কার্ডটি আরও একটু গ্লো এবং জুম করবে */
.certificate-card:hover {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f7c948 40%,
    #b89326 100%
  ) !important;
  border-color: #f7c948 !important;
  box-shadow: 0 15px 30px rgba(247, 201, 72, 0.25) !important;
  transform: translateY(-6px);
  /* কার্ডটি সামান্য উপরে উঠবে */
}

/* 🖼️ সার্টিফিকেটের ছবির বক্স (কার্ডের ভেতর ছবি বড় দেখানোর জন্য প্যাডিং ০) */
.cert-img-box {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
  /* সার্টিফিকেটটি যাতে স্পষ্ট বোঝা যায় তাই ব্যাকগ্রাউন্ড সাদা */
  border-radius: 10px;
  overflow: hidden;
  height: 280px;
  /* সব কার্ডের ছবির উচ্চতা সমান রাখার জন্য ফিক্সড হাইট */
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 !important;
}

.cert-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  padding: 8px;
  /* ফ্রেমের সাথে লেগে না থাকার জন্য সামান্য প্যাডিং */
}

.certificate-card:hover .cert-img-box img {
  transform: scale(1.04);
  /* হোভার করলে ছবি সামান্য জুম হবে */
}

/* 📝 গোল্ডেন ব্যাকগ্রাউন্ডের ওপর টেক্সট কালার অ্যাডজাস্টমেন্ট (যাতে সহজে পড়া যায়) */
.certificate-card h5 {
  color: black !important;
  /* থিমের ডার্ক গ্রিন কালার টাইটেল */
  font-weight: 700 !important;
  font-size: 12px !important;
  margin-top: 15px !important;
  margin-bottom: 5px !important;
}

.certificate-card p {
  color: black !important;
  /* গাঢ় কালারের সাবটাইটেল */
  font-weight: 500 !important;
  font-size: 20px !important;
}

/* হোভার করলে ছবিটি সামান্য জুম করার জন্য */
.cert-lightbox-trigger:hover img {
  transform: scale(1.05);
}

/* ছবির ওপর জুম আইকনের ওভারলে */
.zoom-icon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 76, 76, 0.4);
  /* আপনার থিম ডার্ক গ্রিন সামান্য স্বচ্ছ */
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.cert-lightbox-trigger:hover .zoom-icon-overlay {
  opacity: 1;
}

/* =========================================================================
   8. INTERACTIVE FAQ ACCORDION
   ========================================================================= */

.accordion-item {
  border: 1px solid rgba(15, 76, 76, 0.05);
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.01);
}

.accordion-button {
  font-weight: 600;
  color: #0f4c4c;
  padding: 18px 25px;
  font-size: 16px;
  background: #ffffff;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #0f4c4c;
  color: #ffffff !important;
}

.accordion-button::after {
  transition: transform 0.2s ease;
}

.accordion-body {
  color: black !important;
  font-size: 15px;
  line-height: 1.7;
  background: #ffffff;
  padding: 20px 25px;
  border-top: 1px solid rgba(15, 76, 76, 0.05);
}

/* =========================================================================
   9. PREMIUM HIGH-STRIKE HERO CTA BRAND COVERS
   ========================================================================= */
.final-cta {
  background:
    linear-gradient(rgba(4, 44, 32, 0.92), rgba(15, 42, 54, 0.95)),
    url("../images/makkah.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  padding: 90px 0;
}

.cta-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  margin-top: 12px;
  color: #cbd5e1;
  font-size: 18px;
}

/* Unified Multi-Button Framework Layout */
.final-cta .cta-btn {
  display: inline-block;
  padding: 15px 36px;
  background: #042c20;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #f7c948;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.final-cta .cta-btn i {
  margin-right: 8px;
}

.final-cta .cta-btn:hover {
  background: #f7c948;
  color: #042c20;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(247, 201, 72, 0.4);
}

.final-cta .cta-btn.whatsapp:hover {
  background: #25d366;
  color: #ffffff;
  border-color: #25d366;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* =========================================================================
   10. MAIN PLATFORM FOOTER SYSTEM
   ========================================================================= */
.footer {
  background: #042c20;
  color: #94a3b8;
  padding: 80px 0 0;
  border-top: 3px solid #f7c948;
}

.footer h5 {
  color: #f7c948;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.5px;
}

.footer p {
  font-size: 14px;
  line-height: 1.8;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #f7c948;
  padding-left: 4px;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  margin-right: 10px;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #f7c948;
  color: #042c20;
  transform: translateY(-2px);
}

/* Bottom Signature Bar */
.footer-bottom {
  background: #021610;
  margin-top: 60px;
  padding: 20px 0;
  font-size: 14px;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #f7c948;
}

/* =========================================================================
   11. PREMIUM FLOATING ACTION SET (UNIFIED HOVER MATRICES)
   ========================================================================= */
.floating-whatsapp,
.floating-messenger,
.floating-call {
  position: fixed;
  right: 20px;
  width: 60px;
  height: 60px;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stack Allocations */
.floating-whatsapp {
  bottom: 20px;
  background: #25d366;
  font-size: 26px;
}

.floating-messenger {
  bottom: 95px;
  background: #006aff;
  font-size: 26px;
}

.floating-call {
  bottom: 170px;
  background: #10b981;
  font-size: 22px;
}

/* Unified Shining Luminous Effects */
.floating-whatsapp:hover {
  transform: scale(1.1);
  background: #1ebe5d;
  filter: brightness(1.2);
  box-shadow:
    0 0 20px rgba(37, 211, 102, 0.8),
    0 0 40px rgba(37, 211, 102, 0.5);
}

.floating-messenger:hover {
  transform: scale(1.1);
  background: #0076ff;
  filter: brightness(1.2);
  box-shadow:
    0 0 20px rgba(0, 106, 255, 0.8),
    0 0 40px rgba(0, 106, 255, 0.5);
}

.floating-call:hover {
  transform: scale(1.1);
  background: #059669;
  filter: brightness(1.2);
  box-shadow:
    0 0 20px rgba(16, 185, 129, 0.8),
    0 0 40px rgba(16, 185, 129, 0.5);
}

/* =========================================================================
   12. DYNAMIC MODULE DISPLAY CONSTRAINTS (CERTIFICATES & GALLERIES)
   ========================================================================= */
.certificates-section {
  background: transparent;
}

.certificate-card {
  background: #ffffff;
  border: 1px solid rgba(15, 76, 76, 0.05);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.certificate-card:hover {
  transform: translateY(-5px);
  border-color: #f7c948;
  box-shadow: 0 12px 25px rgba(15, 76, 76, 0.08);
}

.cert-img-box {
  width: 100%;
  height: 190px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid #f1f5f9;
}

.cert-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.certificate-card:hover .cert-img-box img {
  transform: scale(1.03);
}

.certificate-card h5 {
  font-size: 16px;
  color: #0f4c4c;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-preview-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.gallery-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 44, 32, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-preview-overlay span {
  color: #f7c948;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #f7c948;
  padding: 8px 18px;
  border-radius: 50px;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-preview-card:hover img {
  transform: scale(1.06);
}

.gallery-preview-card:hover .gallery-preview-overlay {
  opacity: 1;
}

.gallery-preview-card:hover .gallery-preview-overlay span {
  transform: translateY(0);
}

.gallery-view-btn {
  color: #0f4c4c;
  border: 2px solid #0f4c4c;
  font-weight: 600;
  background: transparent;
  border-radius: 50px;
  padding: 10px 28px;
  transition: all 0.3s ease;
}

.gallery-view-btn:hover {
  background-color: #0f4c4c;
  border-color: #0f4c4c;
  color: #ffffff !important;
}

.video-card {
  transition: all 0.3s ease;
  border-bottom: 4px solid #0f4c4c;
  overflow: hidden;
  border-radius: 8px;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 42, 54, 0.1) !important;
  border-bottom-color: #f7c948;
}

/* =========================================
            Packages.html
========================================= */
.comparison {
  background: #ffffff;
}

.comparison .section-title {
  color: #0f4c4c;
}

.comparison .section-subtitle {
  color: #666;
}

.comparison table {
  border-radius: 10px;
  overflow: hidden;
}

.comparison tbody tr:hover {
  background: #f9f9f9;
}

.booking-process {
  background: #f9f9f9;
}

.process-box {
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.process-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step {
  width: 50px;
  height: 50px;
  background: #0f4c4c;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 18px;
}

.process-box h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

.process-box p {
  font-size: 14px;
  color: #555;
}

/* =========================================
            Installment.html
========================================= */

/* INSTALLMENT CALCULATOR */
.installment-calculator {
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

/* CARD */
.calculator-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.calculator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* LABEL */
.calculator-card .form-label {
  font-weight: 600;
  color: #0f4c4c;
}

/* SELECT INPUT */
.calculator-card .form-select {
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.calculator-card .form-select:focus {
  border-color: #c9a24a;
  box-shadow: 0 0 0 0.2rem rgba(201, 162, 74, 0.25);
}

.calculator-booking-btn {
  background: #25d366;
  color: white !important;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  padding: 14px 35px;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.calculator-booking-btn:hover {
  background: #1ebd58;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(37, 211, 102, 0.4);
}

.calculator-booking-btn i {
  font-size: 20px;
}

/* PRICE BOX */
.price-box {
  background: #0f4c4c;
  color: gold;
  padding: 20px;
  border-radius: 12px;
}

.price-box p {
  margin-bottom: 5px;
  color: #ddd;
  font-weight: 700;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .calculator-card {
    padding: 20px;
  }

  .price-box h2 {
    font-size: 24px;
  }
}

.benefit-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}

.benefit-card i {
  font-size: 40px;
  color: #0f4c4c;
  margin-bottom: 15px;
}

.benefit-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: #555;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover i {
  color: #c9a24a;
}

.target-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}

.target-card i {
  font-size: 40px;
  color: #0f4c4c;
  margin-bottom: 15px;
}

.target-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.target-card p {
  font-size: 14px;
  color: #555;
}

.target-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.target-card:hover i {
  color: #c9a24a;
}

/* ABOUT HERO */
.about-hero {
  height: 60vh;

  background:
    linear-gradient(rgba(15, 42, 54, 0.85), rgba(15, 42, 54, 0.85)),
    url("../images/makkah.png");

  background-size: cover;
  background-position: center;

  color: white;
}

/* =========================================
            About Section 
========================================= */
/* TITLE */
.about-title {
  font-size: 42px;
  font-weight: 700;
}

/* SUBTITLE */
.about-subtitle {
  margin-top: 10px;
  font-size: 18px;
  color: #ddd;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-hero {
    height: 45vh;
  }

  .about-title {
    font-size: 26px;
  }

  .about-subtitle {
    font-size: 14px;
  }
}

/* CEO SECTION BACKGROUND */
.ceo-section {
  background: linear-gradient(to right, #f9f9f9, #ffffff);
}

/* CARD STYLE */
.ceo-card {
  background: white;
  border-radius: 15px;
  padding: 40px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  position: relative;
  overflow: hidden;
}

/* DECORATIVE GOLD LINE */
.ceo-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #c9a24a;
}

/* CEO IMAGE */
/* SECTION BACKGROUND (Islamic Pattern Feel) */
.ceo-section {
  background: url("../images/islamic-pattern.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.ceo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
}

.ceo-section .container {
  position: relative;
  z-index: 2;
}

/* IMAGE */
.ceo-image-wrapper {
  position: relative;
  display: inline-block;
}

.ceo-img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  transition: 0.3s;
}

.ceo-img:hover {
  transform: scale(1.05);
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: #ffc107;
  color: #000;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* CONTENT CARD */
.ceo-content {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* QUOTE ICON */
.quote-icon {
  font-size: 40px;
  color: #ffc107;
  position: absolute;
  top: 20px;
  right: 30px;
  opacity: 0.3;
}

/* TEXT */
.ceo-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

/* SIGNATURE */
.signature-img {
  max-width: 120px;
}

.ceo-sign h5 {
  font-weight: 700;
}

.ceo-sign small {
  color: #888;
}

/* MOBILE */
@media (max-width: 768px) {
  .ceo-content {
    text-align: center;
    padding: 25px;
  }

  .quote-icon {
    right: 15px;
    top: 10px;
  }
}

/* SECTION BACKGROUND */
.group-section {
  background: linear-gradient(to right, #f8f9fa, #ffffff);
}

/* CATEGORY TITLE */
.category-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #0f5132;
}

/* COMPANY CARD */
.company-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
}

.company-card small {
  display: block;
  font-weight: 400;
  color: #777;
  margin-top: 5px;
}

/* HOVER EFFECT */
.company-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* HIGHLIGHT */
.highlight-card {
  border: 2px solid #ffc107;
  background: #fffbea;
}

/* STATS */
.stat-box {
  background: linear-gradient(135deg, #ffffff, #f1f1f1);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.stat-box h2 {
  color: #ff9800;
  font-weight: 700;
}

.stat-box:hover {
  transform: scale(1.05);
}

/* SERVICES SECTION */
.services-section {
  background: #ffffff;
}

/* CARD */
.service-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* ICON */
.icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0f5132, #198754);
  color: #fff;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* TITLE */
.service-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* HIGHLIGHT */
.highlight-service {
  background: #fffbea;
  border: 2px solid #ffc107;
}

/* TRUST LINE */
.trust-line {
  font-weight: 600;
  color: #198754;
}

/* TESTIMONIAL SECTION */
.testimonials-section {
  background: #f8f9fa;
}

/* CARD */
.testimonial-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  position: relative;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

/* HOVER EFFECT */
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* QUOTE ICON */
.quote-icon {
  font-size: 30px;
  color: #198754;
  margin-bottom: 10px;
}

/* TEXT */
.testimonial-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* CLIENT INFO */
.client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* HIGHLIGHT CARD */
.highlight-testimonial {
  border: 2px solid #ffc107;
  background: #fffbea;
}

/* TRUST LINE */
.testimonial-trust {
  font-weight: 600;
  color: #198754;
}

.stars {
  color: #ffc107;
  margin-bottom: 10px;
}

/* Flight Section Styling */
.airline-card {
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.airline-card:hover {
  transform: translateY(-5px);
  border-color: #bfa15f !important;
  /* গোল্ডেন বা থিম কালার হাইলাইট */
}

.airline-card h6 {
  font-size: 14px;
  margin-top: 8px;
  color: #333;
  font-weight: 600;
}

/* Guide Section Styling */
/* --- Common Elegant Elements --- */
.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #bfa15f, #ffe5a3, #bfa15f);
  border-radius: 2px;
}

/* --- Airline Premium Section --- */
.airline-premium-card {
  background: #0f241b;
  border: 1px solid rgba(191, 161, 95, 0.2);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.airline-premium-card:hover {
  transform: translateY(-8px);
  border-color: #bfa15f;
  box-shadow: 0 8px 25px rgba(191, 161, 95, 0.15);
  background: #143024;
}

.logo-wrapper {
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.airline-logo {
  max-height: 65px;
  width: auto;
  object-fit: contain;
}

.airline-name {
  color: #ffe5a3;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

/* --- Executive Guide Section --- */
.guide-executive-card {
  background: #0c1f17;
  border: 1px solid rgba(191, 161, 95, 0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.guide-executive-card:hover {
  transform: translateY(-10px);
  border-color: #bfa15f;
  box-shadow: 0 15px 35px rgba(191, 161, 95, 0.2);
}

.guide-thumb-wrapper {
  position: relative;
  overflow: hidden;
  background: #050d0a;
}

.guide-executive-img {
  width: 100%;
  height: 320px;
  /* ইমেজের সাইজ ৩ কার্ড গ্রিডের জন্য পারফেক্ট বড় করা হয়েছে */
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.guide-executive-card:hover .guide-executive-img {
  transform: scale(1.06);
}

.guide-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #bfa15f, #9c7f3d);
  color: #050d0a;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.guide-meta-content {
  background: #0c1f17;
}

.guide-title-name {
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
}

.guide-designation {
  color: #bfa15f;
  font-size: 14px;
  font-weight: 500;
}

.gold-line {
  width: 40px;
  height: 1px;
  background: rgba(191, 161, 95, 0.4);
}

.guide-call-btn {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #bfa15f;
  color: #ffe5a3;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.guide-call-btn:hover {
  background: linear-gradient(135deg, #bfa15f, #e6c687);
  color: #050d0a;
  box-shadow: 0 4px 15px rgba(191, 161, 95, 0.3);
}

/* =========================================
            CONTACT PAGE
========================================= */

/* HERO */
.contact-hero {
  height: 55vh;

  background:
    linear-gradient(rgba(15, 42, 54, 0.82), rgba(15, 42, 54, 0.82)),
    url("../images/makkah.png");

  background-size: cover;
  background-position: center;

  color: white;
}

/* TITLE */
.contact-title {
  font-size: 58px;
  font-weight: 800;

  margin-bottom: 15px;
}

/* SUBTITLE */
.contact-subtitle {
  font-size: 20px;

  color: #ddd;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-hero {
    height: 40vh;
  }

  .contact-title {
    font-size: 34px;
  }

  .contact-subtitle {
    font-size: 15px;
  }
}

/* CONTACT SECTION */
.contact-section {
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

/* INFO CARD */
.contact-info-card,
.contact-form-card {
  background: white;

  padding: 45px;

  border-radius: 24px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

  height: 100%;
}

/* BADGE */
.contact-badge {
  background: rgba(212, 175, 55, 0.15);

  color: #c9a24a;

  padding: 8px 16px;

  border-radius: 50px;

  font-size: 13px;
  font-weight: 700;
}

/* CONTACT ITEM */
.contact-item {
  display: flex;

  gap: 18px;

  margin-bottom: 28px;
}

/* ICON */
.contact-icon {
  min-width: 60px;
  height: 60px;

  border-radius: 50%;

  background: linear-gradient(135deg, #0f4c4c, #146868);

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;

  font-size: 22px;
}

/* TITLE */
.contact-item h6 {
  font-weight: 700;

  margin-bottom: 6px;

  color: #0f4c4c;
}

/* TEXT */
.contact-item p {
  color: black;
  font-weight: 600;
  margin: 0;

  line-height: 1.7;
}

/* WHATSAPP BUTTON */
.contact-whatsapp-btn {
  display: inline-flex;

  align-items: center;
  gap: 10px;

  margin-top: 20px;

  padding: 15px 28px;

  border-radius: 50px;

  background: #25d366;

  color: white;

  font-weight: 600;

  text-decoration: none;

  transition: 0.3s ease;
}

.contact-whatsapp-btn:hover {
  background: #1ebe5d;

  transform: translateY(-3px);

  color: white;

  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

/* INPUT */
.custom-input {
  border-radius: 14px !important;

  padding: 14px 18px !important;

  border: 1px solid #ddd !important;

  transition: 0.3s ease;
}

/* FOCUS */
.custom-input:focus {
  border-color: #d4af37 !important;

  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2) !important;
}

/* SUBMIT BUTTON */
.contact-submit-btn {
  width: 100%;

  padding: 16px;

  border: none;

  border-radius: 50px;

  background: #0f4c4c;

  color: white;

  font-weight: 700;

  transition: 0.3s ease;
}

.contact-submit-btn:hover {
  background: #d4af37;

  color: black;

  transform: translateY(-3px);

  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-info-card,
  .contact-form-card {
    padding: 28px;
  }
}

/* MAP SECTION */
.map-section {
  background: #ffffff;
}

/* MAP */
.map-container {
  overflow: hidden;

  border-top: 4px solid #d4af37;
}

.map-container iframe {
  filter: grayscale(10%);
}

/* =========================================
            GALLERY PAGE
========================================= */

/* HERO SECTION */
.gallery-hero {
  height: 55vh;

  background:
    linear-gradient(rgba(15, 42, 54, 0.75), rgba(15, 42, 54, 0.75)),
    url("../images/makkah.png");

  background-size: cover;
  background-position: center;

  color: white;
}

/* TITLE */
.gallery-title {
  font-size: 42px;
  font-weight: 700;
}

/* SUBTITLE */
.gallery-subtitle {
  margin-top: 10px;
  font-size: 18px;
  color: #ddd;
}

/* GALLERY SECTION */
.gallery-section {
  background: #f9f9f9;
}

/* CARD */
.gallery-card {
  overflow: hidden;
  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.4s;

  position: relative;
}

/* OVERLAY */
.gallery-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.75));

  display: flex;
  flex-direction: column;
  justify-content: end;

  padding: 25px;

  color: white;

  opacity: 0;

  transition: 0.4s;
}

/* TITLE */
.gallery-overlay h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

/* TEXT */
.gallery-overlay p {
  font-size: 14px;
  color: #ddd;
  margin: 0;
}

/* SHOW OVERLAY ON HOVER */
.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* IMAGE */
.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;

  transition: 0.4s;
}

/* HOVER EFFECT */
.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(201, 162, 74, 0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 28px;
  }

  .gallery-subtitle {
    font-size: 14px;
  }

  .gallery-card img {
    height: 220px;
  }
}

/* =========================================
            LIGHTBOX
========================================= */

.lightbox {
  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.92);

  display: none;

  justify-content: center;
  align-items: center;

  z-index: 9999;

  padding: 30px;
}

/* IMAGE */
.lightbox img {
  max-width: 90%;
  max-height: 90%;

  border-radius: 15px;

  box-shadow:
    0 0 30px rgba(255, 255, 255, 0.1),
    0 0 40px rgba(201, 162, 74, 0.5);

  animation: zoomIn 0.4s ease;
}

/* CLOSE BUTTON */
.lightbox-close {
  position: absolute;

  top: 20px;
  right: 35px;

  color: white;

  font-size: 45px;

  cursor: pointer;

  transition: 0.3s;
}

.lightbox-close:hover {
  color: #c9a24a;
}

/* ANIMATION */
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* =========================================
        GALLERY FILTER
========================================= */

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTON */
.filter-btn {
  border: none;

  padding: 12px 25px;

  border-radius: 50px;

  background: #ffffff;

  color: #0f4c4c;

  font-weight: 600;

  transition: 0.3s;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* HOVER */
.filter-btn:hover {
  background: #c9a24a;

  color: black;

  transform: translateY(-3px);
}

/* ACTIVE */
.filter-btn.active {
  background: #0f4c4c;

  color: white;

  box-shadow: 0 0 15px rgba(15, 76, 76, 0.4);
}

/* =========================================
        VIDEO GALLERY
========================================= */

.video-gallery {
  background: #ffffff;
}

/* CARD */
.video-card {
  background: #fff;

  border-radius: 15px;

  overflow: hidden;

  transition: 0.4s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  height: 100%;
}

/* VIDEO */
.video-card video {
  width: 100%;
  height: 250px;

  object-fit: cover;

  background: black;
}

/* CONTENT */
.video-content {
  padding: 20px;
}

.video-content h5 {
  font-weight: 700;

  color: #0f4c4c;

  margin-bottom: 10px;
}

.video-content p {
  font-size: 14px;

  color: #666;

  margin: 0;
}

/* HOVER */
.video-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.15),
    0 0 20px rgba(201, 162, 74, 0.35);
}

/* MOBILE */
@media (max-width: 768px) {
  .video-card video {
    height: 220px;
  }
}

/* =========================================
   MOBILE NAVBAR OPTIMIZATION
========================================= */

@media (max-width: 991px) {
  .custom-navbar {
    padding: 12px 0;
  }

  /* MOBILE MENU BOX */
  .navbar-collapse {
    background: #0f172b;

    padding: 20px;

    margin-top: 15px;

    border-radius: 15px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }

  /* NAV LINKS */
  .navbar-nav .nav-link {
    padding: 14px 18px;

    margin-bottom: 10px;

    border-radius: 10px;

    font-size: 16px;
  }

  /* HOVER EFFECT */
  .navbar-nav .nav-link:hover {
    background: rgba(212, 175, 55, 0.12);

    color: #d4af37 !important;
  }

  /* ACTIVE MENU */
  .navbar-nav .nav-link.active {
    background: linear-gradient(135deg, #d4af37, #f5d97b);

    color: #000 !important;

    font-weight: 700;
  }
}

/* MOBILE TOGGLE BUTTON */

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;

  padding: 8px 12px;

  border-radius: 10px;

  box-shadow: none !important;
}

/* ICON COLOR */

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

/* MOBILE LOGO */

@media (max-width: 768px) {
  .logo-img {
    width: 55px;
  }

  .brand-text {
    font-size: 15px;
  }

  .brand-sub {
    font-size: 11px;
  }
}

/* =========================================
            RESPONSIVE SYSTEM
========================================= */

/* LARGE DEVICES (≤ 1200px) */
@media (max-width: 1200px) {
  .custom-caption h1 {
    font-size: 34px;
  }

  .custom-caption p {
    font-size: 18px;
  }
}

/* LAPTOP (992px – 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
  /* Hero */
  .hero-img {
    height: 80vh;
  }

  .custom-caption h1 {
    font-size: 32px;
  }

  .custom-caption p {
    font-size: 18px;
  }

  /* Packages */
  .package-card {
    transform: scale(0.98);
  }

  /* Why Us */
  .why-card {
    padding: 25px 18px;
  }

  /* Section spacing */
  .section-title {
    font-size: 28px;
  }
}

/* TABLET (≤ 992px) */
@media (max-width: 992px) {
  /* Navbar */
  .navbar-brand {
    font-size: 18px;
  }

  .navbar-nav .nav-link {
    margin-left: 10px;
  }

  /* Hero */
  .hero-img {
    height: 70vh;
  }

  .custom-caption {
    bottom: 20%;
  }

  .custom-caption h1 {
    font-size: 26px;
  }

  /* Packages */
  .package-card {
    margin-bottom: 20px;
  }

  /* Why Us */
  .why-card {
    padding: 20px;
  }
}

/* MOBILE (≤ 768px) */
@media (max-width: 768px) {
  /* Topbar */
  .topbar-container {
    flex-direction: column;
    text-align: center;
  }

  /* Navbar */
  .navbar-brand {
    font-size: 16px;
  }

  /* Hero */
  .hero-img {
    height: 60vh;
  }

  .custom-caption {
    bottom: 15%;
  }

  .custom-caption h1 {
    font-size: 20px;
  }

  .custom-caption p {
    font-size: 14px;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Packages */
  .package-card {
    margin-bottom: 15px;
  }

  /* Buttons */
  .cta-btn {
    width: 100%;
    text-align: center;
  }

  /* Testimonials */
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  /* Footer */
  .footer-bottom .container {
    flex-direction: column !important;
    gap: 10px;
    text-align: center;
  }
}

/* SMALL MOBILE (≤ 480px) */
@media (max-width: 480px) {
  .custom-caption h1 {
    font-size: 18px;
  }

  .custom-caption p {
    font-size: 13px;
  }

  .hero-btn {
    font-size: 13px;
    padding: 8px 16px;
  }

  .section-title {
    font-size: 22px;
  }

  .price {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .navbar-brand {
    white-space: normal;
    align-items: flex-start;
  }

  .logo-img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .hero-img {
    height: 75vh;
  }

  .custom-caption h1 {
    font-size: 28px;
  }

  .custom-caption p {
    font-size: 15px;
    padding: 0 10px;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* =========================================================================
   ALBUM FOLDER & INTERACTIVE CONTENT CARDS OVERLAYS
   ========================================================================= */
.folder-album-card {
  aspect-ratio: 4 / 3;
  background-color: #042c20;
}

.folder-album-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.folder-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(4, 44, 32, 0.95) 0%,
    rgba(4, 44, 32, 0.4) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: background 0.3s ease;
}

.folder-album-card:hover img {
  transform: scale(1.05);
}

.video-card.border-bottom-style {
  border-bottom: 4px solid #0f4c4c;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.video-card.border-bottom-style:hover {
  transform: translateY(-5px);
  border-bottom-color: #c9a24a;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #c9a24a;
}

/* =========================================================================
   13. UNIVERSAL MOBILE OPTIMIZATION SYSTEM (সব ধরনের মোবাইলের জন্য)
   ========================================================================= */
@media screen and (max-width: 767px) {
  /*সেকশন ও গ্লোবাল লেআউট এডজাস্টমেন্ট */
  .section {
    padding: 45px 0 !important;
    /* মোবাইলে অতিরিক্ত স্পেস কমানো হয়েছে */
  }

  .section-title {
    font-size: 24px !important;
    /* টাইটেল স্ক্রিন অনুযায়ী ফিট করা হয়েছে */
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 14px !important;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  /* টপবার (Topbar) রেসপনসিভ ফিক্স */
  .topbar {
    padding: 8px 0;
    font-size: 12px;
  }

  .topbar-container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .topbar-left a {
    margin: 0 8px;
    font-size: 12px;
  }

  .topbar-right {
    margin-top: 2px;
  }

  .topbar-right a {
    margin: 0 6px;
  }

  /* নেভিগেশন বার ও ব্র্যান্ড লোগো স্কেলিং (মোবাইলে যাতে ভেঙে না যায়) */
  .custom-navbar {
    padding: 10px 0;
  }

  .navbar-brand {
    gap: 8px;
    font-size: 16px !important;
  }

  .logo-img {
    height: 48px !important;
    /* লোগোর হাইট মোবাইল ফ্রেন্ডলি করা হয়েছে */
    width: auto;
    max-width: 120px;
  }

  .brand-sub {
    font-size: 13px !important;
    /* সাব-টাইটেল বা বাংলা টেক্সট সাইজ */
    margin-top: 1px;
    letter-spacing: 0px;
  }

  /* হিরো ব্যানার / ক্যারোজেল মডিউল */
  .hero-img {
    height: 55vh !important;
    /* মোবাইল স্ক্রিনে ব্যানার কেটে যাওয়া রোধ করবে */
  }

  .custom-caption {
    width: 90% !important;
    left: 5% !important;
  }

  .custom-caption h1 {
    font-size: 24px !important;
    line-height: 1.3;
  }

  .custom-caption p {
    font-size: 14px !important;
    line-height: 1.5;
  }

  .hero-btn {
    margin-top: 18px;
    padding: 10px 24px;
    font-size: 14px;
  }

  /* প্যাকেজ ট্যাব নেভিগেশন (Nav Pills স্ক্রোলিং ফিক্স) */
  .nav-pills {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    /* ট্যাবগুলো মোবাইলে পাশাপাশি স্ক্রোল করা যাবে */
    padding-bottom: 8px;
    justify-content: flex-start !important;
    -webkit-overflow-scrolling: touch;
  }

  .nav-pills .nav-link {
    font-size: 13px;
    padding: 8px 16px;
    white-space: nowrap;
    /* টেক্সট ভেঙে নিচে যাবে না */
    margin: 0 4px;
  }

  .package-card {
    margin-bottom: 25px;
  }

  .img-box img {
    height: 190px !important;
    /* পিকচার প্রপোরশন ঠিক রাখার জন্য */
  }

  .price {
    font-size: 21px;
  }

  /* হোয়াই আস (Why Us) ও প্রসেস বক্স */
  .why-card,
  .process-box {
    padding: 25px 20px !important;
    margin-bottom: 15px;
    height: auto !important;
  }

  .why-card i {
    font-size: 32px;
    margin-bottom: 12px;
  }

  /* সার্টিফিকেট সেকশন (সাইনি গোল্ড মেটালিক থিম মোবাইল অপ্টিমাইজেশন) */
  .certificate-card {
    padding: 15px !important;
    margin-bottom: 20px;
    height: auto !important;
  }

  .cert-img-box {
    height: 210px !important;
    /* মোবাইলে ইমেজ ওভারফ্লো ঠিক করবে */
  }

  .certificate-card h5 {
    font-size: 11px !important;
    margin-top: 10px !important;
  }

  .certificate-card p {
    font-size: 16px !important;
    /* গোল্ডেন ব্যাকগ্রাউন্ডে টেক্সট রেডিএবিলিটি */
  }

  /* টেবিল রেসপনসিভ ফিক্স (প্যাকেজ তুলনা টেবিল স্ক্রিনের বাইরে যাবে না) */
  .comparison table {
    display: block;
    width: 100%;
    overflow-x: auto;
    /* মোবাইলে টেবিল ডানে-বামে স্ক্রোল হবে */
    -webkit-overflow-scrolling: touch;
  }

  /* ইনস্টলমেন্ট ক্যালকুলেটর */
  .calculator-card {
    padding: 18px !important;
  }

  .price-box {
    padding: 15px;
  }

  .price-box h2 {
    font-size: 22px !important;
  }

  /* সিইও প্রোফাইল (CEO Profile Section) অ্যালাইনমেন্ট */
  .ceo-card {
    padding: 20px !important;
  }

  .ceo-image-wrapper {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .ceo-img {
    max-width: 250px !important;
    margin: 0 auto;
  }

  .experience-badge {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    display: inline-block;
    margin-top: 12px;
    box-shadow: none !important;
  }

  .ceo-content {
    padding: 20px !important;
    text-align: center !important;
  }

  .quote-icon {
    display: none !important;
    /* মোবাইলে টেক্সটের ওপর ওভারল্যাপ এড়াতে হাইড করা হয়েছে */
  }

  /* এফএকিউ একরডিয়ন (FAQ Accordion) */
  .accordion-button {
    padding: 14px 18px !important;
    font-size: 14px;
  }

  .accordion-body {
    padding: 14px 18px !important;
    font-size: 13px;
  }

  /* ফাইনাল কল-টু-অ্যাকশন (Final CTA) */
  .final-cta {
    padding: 55px 0 !important;
    text-align: center;
  }

  .cta-title {
    font-size: 26px !important;
  }

  .cta-subtitle {
    font-size: 15px !important;
  }

  .final-cta .cta-btn {
    display: block !important;
    width: 100% !important;
    /* সহজে ক্লিক করার জন্য বাটন ফুল-উইথ করা হয়েছে */
    margin-bottom: 12px;
    padding: 12px 24px;
  }

  /* ফুটার সিস্টেম (Footer) */
  .footer {
    padding: 45px 0 0 !important;
    text-align: center;
  }

  .footer h5 {
    font-size: 19px;
    margin-bottom: 15px;
    margin-top: 20px;
  }

  .footer-bottom {
    margin-top: 35px;
    padding: 20px 0;
  }

  .footer-bottom .text-end {
    text-align: center !important;
    /* কপিরাইট টেক্সট সেন্টারে থাকবে */
    margin-top: 12px;
  }

  .footer-bottom-links a {
    margin: 0 8px;
  }

  /* ফ্লোটিং অ্যাকশন বাটন ফিক্স (WhatsApp, Call, Messenger) */
  /* মোবাইলে বুড়ো আঙুল দিয়ে সহজে প্রেস করার উপযোগী সাইজ ও পজিশন */
  .floating-whatsapp,
  .floating-messenger,
  .floating-call {
    width: 50px !important;
    height: 50px !important;
    right: 15px !important;
  }

  .floating-whatsapp {
    bottom: 15px !important;
    font-size: 22px !important;
  }

  .floating-messenger {
    bottom: 75px !important;
    font-size: 22px !important;
  }

  .floating-call {
    bottom: 135px !important;
    font-size: 18px !important;
  }
}

/* অতি ক্ষুদ্র স্ক্রিনের জন্য বিশেষ অপ্টিমাইজেশন (যেমন: iPhone SE বা পুরোনো ছোট মোবাইল, Screens < 360px) */
@media screen and (max-width: 359px) {
  .navbar-brand {
    font-size: 14px !important;
  }

  .logo-img {
    height: 38px !important;
  }

  .brand-sub {
    font-size: 11px !important;
  }

  .section-title {
    font-size: 20px !important;
  }
}
