/* ===== tour css page ===== */
.search-input-wrapper {
  display: none;
  position: fixed;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 560px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  border-radius: 56px;
  padding: 18px 24px;
  z-index: 10001;
  box-shadow: 0 30px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,215,0,0.3);
  flex-direction: column;
  gap: 12px;
  animation: fadeSlideUp 0.25s ease;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.search-icon {
  position: absolute;
  left: 28px;
  top: 28px;
  font-size: 1.4rem;
  color: #ffd966;
}

#searchInput {
  background: transparent;
  border: none;
  border-bottom: 2px solid #ffcd7e;
  padding: 14px 20px 14px 56px;
  font-size: 1.1rem;
  color: white;
  width: 100%;
  outline: none;
  font-weight: 400;
}

.close-btn {
  position: absolute;
  right: 22px;
  top: 22px;
  background: rgba(255,215,0,0.2);
  border: none;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  transition: 0.2s;
}

.close-btn:hover {
  background: #ffc107;
  color: black;
  transform: rotate(90deg);
}

#results {
  list-style: none;
  max-height: 230px;
  overflow-y: auto;
  display: none;
  margin-top: 10px;
  background: rgba(0,0,0,0.6);
  border-radius: 40px;
  padding: 8px;
}

#results li {
  padding: 12px 18px;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.2s;
}

/* ===== ACCORDION ===== */
#tour {
    background-image: url("../assets/tour imgs/KUNAR-7.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    color: var(--light);
}
.section-title {
  text-align: center;
  color: #053c7fb9;
  text-shadow: 2px 2px 2px #757575a2 ;
  margin-bottom: 60px;
  font-size: 32px;
  padding-top: 20px;
}
/* 3 کالمونه */
.accordion {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 30px;
  padding-bottom: 40px;
}
.accordion-item {
  background: linear-gradient(145deg, #2e2121, #004cff);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
.accordion-header {
  padding: 25px 30px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: #fff;
}
.accordion-header .emoji {
  font-size: 24px;
  user-select: none;
}
.accordion-header::after {
  content: "+";
  position: absolute;
  right: 30px;
  font-size: 22px;
  color: #ffd700;
  transition: transform 0.3s;
}
.accordion-item.active .accordion-header::after {
  content: "–";
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.5s ease, padding 0.4s ease, opacity 0.3s ease;
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}
.P-1{
    color: #fff;
}
.accordion-item.active .accordion-content {
  max-height: 1000px;  
  padding: 20px 30px 30px 30px;
}
.accordion-item:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* ===== INCLUDED CARD ===== */

.included-card {
    max-width: 1100px;
    margin: 40px auto 60px auto;
    background: linear-gradient(145deg, #0055ffbf, #00508e4a);
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: 0.4s;
}
.included-card {
    grid-column: 1 / -1;
    width: 100vw;
    border-radius: 0;
}

.included-card:hover {
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.5);
}

.included-header {
    padding: 25px 30px;
    font-size: 22px;
    font-weight: 700;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.included-content {
    padding: 25px 30px 35px 30px;
}

.included-list {
    margin-top: 20px;
    padding-left: 20px;
    color: #ffffff;
    line-height: 1.7;
}

.included-list li {
    margin-bottom: 10px;
}
.booking-box button {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.booking-box h2 {
  color: #ffd700;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 30px;
}
.booking-box button {
  justify-content: center;
  align-items: center;
  width: 40%;
  margin-top: 20px;
  padding: 14px 0;
  background: #ffd700;
  color: #0a0f1c;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.booking-box button a {
  text-decoration: none;
  list-style: none;
  color: inherit;
  display: block;
}
.booking-box button:hover {
  background: #d4af37;
}
/* ===== FOOTER ===== */
footer {
  background: #000;
  text-align: center;
  padding: 30px;
  color: #aaa;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .accordion {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .accordion {
    grid-template-columns: 1fr;
  }
  nav ul {
    gap: 15px;
  }
  nav ul li {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-content {
    padding: 30px;
  }
}


/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 5px;
  display: none;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: 0.6s ease-in-out;
}

#backToTop:hover {
  transform: rotate(360deg);
  background-color: #ffb700;
  color: #0b0b0b;
}

/* ===== ITINERARY ===== */
.itinerary-day {
  background: #ffffff;
  border-radius: 28px;
  padding: 1.5rem;
  margin: 0 auto 1.5rem auto;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border-left: 4px solid #136dce;
  transition: all 0.25s ease;
}

.itinerary-day:hover {
  background: #fff20067;
  border-left-color: #f59e0b;
  border: 1px solid red;
  transform: translateY(-3px);
}

.day-title {
  font-weight: 800;
  font-size: 1.3rem;
  color: #0f2b3d;
}


/* about us */


   /* Particles container background */
    #particles-js {
      position: fixed;
      width: 100%;
      height: 100%;
      z-index: -1;
      top: 0;
      left: 0;
    }

    /* Glass premium background (kept from original) */
    .glass-premium {
      background: linear-gradient(135deg, #1e3c72, #2a5298) !important;
    }

    /* Feature card styling - only background, border & transitions needed; hover effects added below */
    .feature-card {
      background: linear-gradient(135deg, #ffb347, #ffcc33) !important;
    }
    
    .stats-box{
      background: linear-gradient(135deg, #1e3c72, #2a5298) !important;
    }

    /* Enhanced Glass Cards (exact same glass style as original but with refined hover) */
    .glass-premium {
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(12px);
      border-radius: 48px;
      border: 1px solid rgba(255, 215, 0, 0.25);
      transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      box-shadow: 0 20px 35px -12px rgba(0,0,0,0.3);
    }
    .glass-premium:hover {
      border-color: #ffcd7e;
      box-shadow: 0 28px 40px -12px rgba(0,0,0,0.5);
      transform: translateY(-5px);
    }

    /* For feature-card text adaptation */
    .feature-card:hover, .feature-card:hover * {
      color: #1e3c72 !important;
    }
    .watermark-box.glass-premium:hover .general-text,
    .watermark-box.glass-premium:hover .title-text,
    .watermark-box.glass-premium:hover h3,
    .watermark-box.glass-premium:hover h1,
    .watermark-box.glass-premium:hover h2,
    .watermark-box.glass-premium:hover strong {
      color: #1e2f44 !important;
      background: transparent !important;
      -webkit-background-clip: unset;
      background-clip: unset;
    }
    .watermark-box.glass-premium:hover .title-text {
      background: none;
      color: #f5b042 !important;
    }
    .general-text {
      font-size: 1.05rem;
      line-height: 1.65;
      font-weight: 400;
      color: #fef7e8;
      text-align: justify;
    }
    .title-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.6rem;
      font-weight: 700;
      background: linear-gradient(120deg, #ffe6b3, #ffcd7e);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.01em;
    }
    .Company-profile {
      font-weight: 800;
      font-size: 2.3rem;
      background: linear-gradient(135deg, #FFD966, #FFB347);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.3px;
    }
    .title-profile {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: #FFE3AA;
    }

    /* Fancy mission / vision cards (original style but preserve hover above) */
    .feature-card {
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(14px);
      border-radius: 52px;
      padding: 2rem 1.8rem;
      transition: all 0.4s;
      border: 1px solid rgba(255,200,100,0.2);
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
      transition: left 0.6s;
    }
    .feature-card:hover::before { left: 100%; }
    .feature-card:hover {
      transform: translateY(-8px);
      border-color: #ffcd7e;
      box-shadow: 0 25px 35px -12px black;
    }

    /* Stats modern (original) */
    .stats-box {
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(12px);
      border-radius: 42px;
      padding: 28px 16px;
      text-align: center;
      transition: 0.3s;
      border-bottom: 3px solid #ffb347;
    }
    .stats-box h3 {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(145deg, #ffdd99, #ffb347);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .stats-box:hover { transform: translateY(-5px); background: rgba(0,0,0,0.75); }
    
    /* Dark mode compatibility kept but not interfering: hover effects explicit */
    body.dark .glass-premium, body.dark .feature-card {
      background: rgba(0, 0, 0, 0.75);
    }
    .watermark-box {
      position: relative;
      overflow: hidden;
      border-radius: 52px;
    }
    .badge-shine {
      background: rgba(255,215,0,0.2);
      padding: 8px 24px;
      border-radius: 60px;
      display: inline-block;
      font-weight: 500;
      backdrop-filter: blur(4px);
    }
    @media (max-width: 768px) {
      .title-text { font-size: 1.9rem; }
      .Company-profile { font-size: 1.7rem; }
      .stats-box h3 { font-size: 2.2rem; }
    }
    
    /* Additional Hover for any card-like component in about section */
    .glass-premium.text-center:hover, .watermark-box.glass-premium:hover {
      transition: all 0.3s;
    }
    .stats-box:hover i {
      color: #ffc107 !important;
    }
    /* ensure consistent background for watermark on hover */
    .watermark-box.glass-premium:hover {
      background: rgba(255, 250, 225, 0.85) !important;
      backdrop-filter: blur(6px);
    }


    /* about Afghanistan */

    .card-modern:hover,
    .feature-card:hover,
    .itinerary-day:hover,
    .info-block:hover,
    .side_box:hover,
    .stats-box-modern:hover,
    .bg-white.rounded-4.shadow-sm:hover,
    .card-modern.text-center:hover,
    [class*="feature-card"]:hover {
      background: linear-gradient(145deg, #fff9e6, #e0f7fa) !important;
      border: 1px solid rgba(255, 200, 80, 0.6) !important;
      box-shadow: 0 20px 30px -10px rgba(0, 160, 210, 0.2) !important;
      transition: all 0.35s ease-in-out !important;
      transform: translateY(-4px);
    }
    /* preserve text readability on hover for all cards */
    .card-modern:hover *,
    .feature-card:hover *,
    .itinerary-day:hover *,
    .info-block:hover *,
    .side_box:hover *,
    .bg-white.rounded-4.shadow-sm:hover *,
    .card-modern.text-center:hover * {
      color: #1a2c3e !important;
    }
    /* specific icons & gradient boxes */
    .feature-card:hover .icon-box,
    .card-modern:hover .icon-box {
      background: #ffecb3 !important;
    }
    /* side box special */
    .side_box {
      transition: all 0.3s ease;
    }
    /* itinerary day hover border */
    .itinerary-day:hover {
      border-left: 4px solid #ffcd7e;
      background: #fffef0 !important;
    }
    
    /* ===== TYPOGRAPHY & UTILITIES (bootstrap is main, but keep minimal class styles) ===== */
    .section-title-lg {
      font-size: 2.5rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #0f2b3d, #1e4a76);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }
    .section-title-lg:after {
      content: '';
      position: absolute;
      bottom: -12px;
      left: 0;
      width: 70px;
      height: 4px;
      background: #f59e0b;
      border-radius: 4px;
    }
    .section-subtitle {
      font-size: 1.1rem;
      color: #475569;
      max-width: 800px;
      margin-bottom: 2rem;
    }
    .card-modern {
      background: white;
      border-radius: 24px;
      border: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      height: 100%;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    }
    .badge-tag {
      background: #136dce10;
      color: #136dce;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 40px;
      font-size: 0.8rem;
      display: inline-block;
      margin-bottom: 1rem;
    }
    .stat-number {
      font-size: 2.4rem;
      font-weight: 800;
      color: #136dce;
      line-height: 1.2;
    }
    .stat-label {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #334155;
      font-weight: 600;
    }
    .icon-box {
      background: #eef2ff;
      width: 55px;
      height: 55px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #136dce;
      font-size: 28px;
      margin-bottom: 1.2rem;
    }
    .info-block {
      background: #ffffffdd;
      backdrop-filter: blur(4px);
      border-radius: 32px;
      padding: 2rem;
      border: 1px solid rgba(255,255,255,0.3);
      transition: all 0.3s ease;
    }
    .list-check {
      list-style: none;
      padding-left: 0;
    }
    .list-check li {
      padding-left: 1.8rem;
      position: relative;
      margin-bottom: 0.75rem;
      font-weight: 500;
    }
    .list-check li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #f59e0b;
      font-weight: bold;
      font-size: 1.2rem;
    }
    .itinerary-day {
      background: #ffffff;
      border-radius: 28px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
      border-left: 4px solid #136dce;
      transition: all 0.2s;
    }
    .day-title {
      font-weight: 800;
      font-size: 1.3rem;
      color: #0f2b3d;
      margin-bottom: 0.5rem;
    }
    .btn-soft-primary {
      background: #136dce10;
      color: #136dce;
      border-radius: 40px;
      padding: 0.6rem 1.5rem;
      font-weight: 600;
      transition: 0.2s;
      border: none;
    }
    .btn-soft-primary:hover {
      background: #136dce;
      color: white;
    }
    .feature-card {
      background: white;
      border-radius: 28px;
      padding: 1.8rem;
      transition: all 0.3s;
      height: 100%;
      box-shadow: 0 6px 14px rgba(0,0,0,0.03);
    }
    .reveal-section {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.7s ease;
    }
    .reveal-section.show {
      opacity: 1;
      transform: translateY(0);
    }
    /* dark mode compatibility */
    body.dark {
      background: #0f172a;
      color: #e2e8f0;
    }
    body.dark .card-modern,
    body.dark .itinerary-day,
    body.dark .feature-card,
    body.dark .info-block,
    body.dark .bg-white.rounded-4.shadow-sm {
      background: #1e293b;
      border-color: #334155;
      color: #e2e8f0;
    }
    body.dark .section-subtitle {
      color: #94a3b8;
    }
    body.dark .stat-label {
      color: #cbd5e1;
    }
    body.dark .icon-box {
      background: #2d4a7c;
    }
    @media (max-width: 768px) {
      .section-title-lg {
        font-size: 1.8rem;
      }
      .info-block {
        padding: 1.5rem;
      }
    }

    /* body star */

    .stars-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
}

/* ⭐ STAR (no text = no white halo) */
.star {
  position: absolute;

  width: 6px;
  height: 6px;
  background: #ff9500;

  border-radius: 50%;

  opacity: 1;

  /* ❌ remove all glow */
  text-shadow: none;
  box-shadow: none;
  filter: none;

  animation: moveStar linear infinite, twinkle 2.5s ease-in-out infinite;
}

/* movement */
@keyframes moveStar {
  0% {
    transform: translate(var(--x-start), var(--y-start));
  }
  100% {
    transform: translate(var(--x-end), var(--y-end));
  }
}

/* twinkle effect */
@keyframes twinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}


/* AFG VISA SECTION */

    .card, .bg-white, .bg-light, .alert, [class*="rounded-4"]:not(nav):not(footer) {
      transition: all 0.3s ease-in-out;
    }
    
    /* Hover effect: Light Yellow */
    .card:hover, 
    .bg-white.p-4.rounded-4.shadow-sm:hover,
    .bg-white.p-4.p-lg-5.rounded-4.shadow-sm:hover,
    .border-start.border-4.border-warning:hover {
      background-color: #FFFDE7 !important; /* light yellow */
      transform: translateY(-4px);
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15) !important;
      border-left-color: #ffb347 !important;
    }
    
    /* Hover effect: Light Blue for specific cards and info panels */
    .card.border-0.shadow-sm.rounded-4.p-4:hover,
    .card.h-100.border-0.shadow-sm.rounded-4.p-4:hover {
      background: linear-gradient(135deg, #E3F2FD, #BBDEFB) !important;
      transform: translateY(-5px);
      box-shadow: 0 24px 36px -12px rgba(0, 0, 0, 0.2) !important;
    }
    
    /* Hover effect: Orange for alert boxes and special cards */
    .alert.alert-warning:hover {
      background-color: #FFE0B2 !important;
      border-left: 5px solid #FF9800 !important;
      transform: scale(1.01);
    }
    
    /* Hover for land border cards */
    .card.border-0.shadow-sm.rounded-4.mb-3.p-3:hover {
      background: #FFF3E0 !important; /* light orange */
      transform: translateX(5px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.12) !important;
    }
    
    /* Hover for bg-light cards (important considerations) */
    .card.border-0.shadow-sm.rounded-4.p-4.bg-light:hover {
      background: #FFF8E1 !important;
      transform: translateY(-3px);
    }
    
    /* Hover for the hero white box */
    .bg-white.p-4.rounded-4.shadow-sm.mt-3.border-start.border-4.border-warning:hover {
      background-color: #FFF9C4 !important;
    }
    
    /* Hover for the step-by-step guide box */
    .bg-white.p-4.rounded-4.shadow-sm.border-start.border-4.border-warning:hover {
      background-color: #E8F0FE !important; /* light blue variant */
      border-left-color: #f5a623 !important;
    }
    
    /* Additional hover for fee rows inside cards */
    .d-flex.justify-content-between.border-bottom.py-2:hover {
      background-color: #FFF3CD;
      border-radius: 12px;
      padding-left: 8px;
      transition: 0.2s;
    }
    
    /* Hover for list items */
    ul.list-unstyled li:hover,
    .text-secondary li:hover {
      background-color: rgba(255, 193, 7, 0.1);
      border-radius: 8px;
      padding-left: 5px;
      transition: 0.2s;
    }
    
    /* Specific hover for main container cards to avoid navbar/footer effect */
    .card, .bg-white.rounded-4, .alert, .bg-light.rounded-3 {
      transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }

    /* bird section */

      .banner-section-bird {
    margin-top: 50px !important;
    padding: 0px;
    margin: 0px;
    justify-content: center;
    align-items: center;
  }
  .container-tour-bird {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    margin-top: 25px;
    margin-bottom: 30px;
  }
  .first-text {
  font-family: unset;
  text-align: center;
  width: 1400px;
  font-size: 30px;
  font-style: normal;
  color: #292929;
  text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.379);
}
.general-text{
  font-family: unset;
  font-size: 18px;
  justify-content: center;
  text-align: justify;
  color: #292929;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.379);
  width: 1200px
}
.general-t{
  font-family: unset;
  font-size: 18px;
  justify-content: center;
  text-align: justify;
  color: #ffffff;
  font-weight: 500;
  width: 1200px
}


/* life style section */

    .container-custom {
      max-width: 1300px;
      margin: 0 auto;
      background: transparent;
    }
    .text-a-center {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      background: linear-gradient(135deg, #a0522d, #c2410c);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
    }
    .text-cent {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 600;
      margin-top: 2rem;
      margin-bottom: 1rem;
      border-left: 5px solid #e67e22;
      padding-left: 1.2rem;
    }
    .H-text {
      font-size: 1.05rem;
      line-height: 1.65;
      background: rgba(255, 248, 235, 0.6);
      padding: 1.2rem 1.8rem;
      border-radius: 32px;
      color: #2d3e50;
      margin-bottom: 2rem;
      backdrop-filter: blur(2px);
      transition: 0.2s;
    }
    .img-fluid.rounded {
      border-radius: 28px;
      box-shadow: 0 2px 5px rgba(0, 229, 255, 0.578);
      transition: transform 0.35s ease, box-shadow 0.3s;
      width: 100%;
      height: 380px;
      object-fit: cover;
    }
    .img-fluid.rounded:hover {
      transform: scale(1.02);
      border: 2px solid red;
    }


    /* sport section */

    
    /* ---------- SPORTS ELITE DESIGN ---------- */
    .hero-sports {
      position: relative;
      margin-top: 30px;
      margin-bottom: 60px;
    }
    .hero-glass-card {
      background: rgba(15, 25, 45, 0.65);
      backdrop-filter: blur(14px);
      border-radius: 64px;
      border: 1px solid rgba(0, 191, 255, 0.35);
      box-shadow: 0 35px 60px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
      transition: transform 0.4s cubic-bezier(0.2,0.9,0.4,1.1);
    }
    .hero-glass-card:hover {
      transform: scale(1.01);
    }
    .glow-text {
      background: linear-gradient(135deg, #FFFFFF, #7ab3ff, #00e0ff);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    .sport-modern-card {
      background: rgba(191, 191, 191, 0.503);
      backdrop-filter: blur(0px);
      border-radius: 56px;
      box-shadow: 0 30px 45px -20px rgba(0,0,0,0.35), 0 4px 12px rgba(0,0,0,0.05);
      margin-bottom: 70px;
      transition: all 0.35s ease;
      border: 1px solid rgba(0, 123, 255, 0.4);
      overflow: hidden;
    }
    body.dark .sport-modern-card {
      background: rgba(18, 26, 40, 0.96);
      border-color: #2c4c7c;
      box-shadow: 0 30px 40px -15px rgba(0,0,0,0.5);
    }
    .sport-badge-icon {
      font-size: 3.2rem;
      display: inline-block;
      filter: drop-shadow(0 8px 12px rgba(0,123,255,0.3));
    }
    .sport-title-xl {
      font-size: 3.5rem;
      font-weight: 800;
      letter-spacing: -1px;
      background: linear-gradient(120deg, #0077ff, #4effdc);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    @media (max-width: 768px) {
      .sport-title-xl { font-size: 2.3rem; }
      .hero-glass-card { padding: 1.8rem !important; }
    }
    .sport-description-modern {
      font-size: 1.05rem;
      line-height: 1.65;
      color: #1e2a3a;
      font-weight: 450;
    }
    body.dark .sport-description-modern {
      color: #cdddf5;
    }

    /* DYNAMIC GALLERY GRID (cinematic) */
    .cinema-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
    }
    .cinema-item {
      border-radius: 32px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: all 0.5s ease;
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.4);
    }
    .cinema-item img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }
    .cinema-item:hover img {
      transform: scale(1.08);
    }
    .cinema-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, #000000dd, transparent);
      padding: 18px 12px 10px;
      color: white;
      font-weight: 700;
      font-size: 1rem;
      backdrop-filter: blur(3px);
      transform: translateY(0);
      transition: 0.3s;
    }

    /* PREMIUM SLIDER (luxury) */
    .luxury-slider-wrap {
      background: #f0f5fe;
      border-radius: 48px;
      padding: 18px 15px;
      margin: 25px 0 15px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    body.dark .luxury-slider-wrap {
      background: #111a2c;
    }
    .elite-slider {
      position: relative;
      max-width: 780px;
      margin: 0 auto;
      border-radius: 36px;
      overflow: hidden;
      background: #00000020;
    }
    .slide-img {
      display: none;
      animation: fadeRise 0.6s ease;
    }
    .slide-img.active-slide {
      display: block;
    }
    .slide-img img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: 28px;
    }
    .slide-caption-premium {
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(12px);
      margin-top: 14px;
      border-radius: 40px;
      padding: 14px 20px;
      text-align: center;
      font-weight: 500;
      color: #FFE6B0;
      font-size: 0.9rem;
    }
    .slider-nav-btn {
      position: absolute;
      top: 45%;
      background: #007bffea;
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 60px;
      color: white;
      font-weight: bold;
      transition: 0.2s;
      z-index: 10;
    }
    .slider-nav-btn:hover {
      background: #ffc107;
      transform: scale(1.08);
      color: black;
    }
    @keyframes fadeRise {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .btn-luxury {
      background: linear-gradient(95deg, #0066ff, #0a58ca);
      border: none;
      padding: 12px 32px;
      border-radius: 100px;
      font-weight: 700;
      color: white;
      transition: 0.25s;
      box-shadow: 0 8px 18px #0066ff40;
    }
    .btn-luxury:hover {
      background: #ffb300;
      color: #0a0f1f;
      transform: translateY(-3px);
      box-shadow: 0 16px 25px -8px #ffaa33;
    }
    .stat-badge {
      background: rgba(0,123,255,0.15);
      border-radius: 60px;
      padding: 5px 14px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.5px;
    }
    hr.glow-divider {
      background: linear-gradient(90deg, #007bff, #93e9ff, #007bff);
      height: 3px;
      border: 0;
      opacity: 0.6;
      width: 120px;
      margin: 20px auto;
    }
    .icon-spark {
      transition: 0.3s;
    }
    .icon-spark:hover {
      transform: scale(1.1);
      color: #ffc107;
    }

    /* food section */
    .title
    {
        font-style: initial;
        font-weight: 800;
        font-family: Verdana,sans-serif;
        color: rgb(255, 255, 255);
        font-size: 50px;
    }
    .title-p {
        font-style:unset;
        font-weight: 400;
        font-family: Verdana;
        color: rgb(255, 255, 255);
        font-size: 16px;
    }
    .f-img
    {
        width: 600px;
        height: 600px;
    }

    /* bird section */
    .img-bird{
      width: 100%;
      height: 250px;
      height: 250px;
      object-fit:cover;
      }

    /* container-1 cards */
    .container-1 {
      background-color: #ffffffe4;
      padding: 2rem 2rem;
      border-radius: 2rem;
      box-shadow: 0 20px 35px -12px rgba(7, 7, 7, 0.433);
      margin: 2rem auto;
      transition: transform 0.2s, box-shadow 0.2s;
      max-width: 1400px;
    }

    .container-1:hover {
      transform: translateY(-3px);
      box-shadow: 0 25px 40px -14px rgba(11, 11, 11, 0.493);
      border: 1px solid red;
    }

    .title-center {
      font-size: 2.2rem;
      font-weight: 800;
      background: linear-gradient(135deg, #ab6f3a, #e0b053);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.5px;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }

    .title-cad {
      font-size: 1.08rem;
      line-height: 1.65;
      color: #2b2b2b;
      font-weight: 450;
      margin-top: 1rem;
    }

    .img-fluid {
      border-radius: 1.5rem;
      box-shadow: 0 12px 24px -8px rgb(0, 81, 124);
      transition: all 0.4s ease;
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .img-fluid:hover {
      transform: scale(1.01);
      box-shadow: 0 20px 30px -8px rgba(0,0,0,0.3);
    }

    .text-center-1 {
      font-weight: 700;
      font-size: 1.6rem;
      margin: 1rem 0 0.5rem;
      color: #a8551c;
    }

    .text-center-2 {
      font-weight: 500;
    }

    /* reveal animation */
    .reveal-section {
      opacity: 0;
      transform: translateY(35px);
      transition: opacity 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s ease;
    }

    .reveal-section.show {
      opacity: 1;
      transform: translateY(0);
    }
