
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

  :root {
    --red: #C8102E;
    --blue: #024068;
    --white: #FFFFFF;
    --cream: #FAF8F5;
    --dark: #0A1628;.pite-top-strip
    --red-light: rgba(200,16,46,0.08);
    --blue-light: rgba(0,53,128,0.08);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { background: var(--white); color: var(--dark); overflow-x: hidden; }
body {
  font-family: 'Open Sans', sans-serif;
}

/* Optional: Adjust weights as needed */
h1 {
  font-weight: 700; /* Bold */
}

p {
  font-weight: 400; /* Regular */
}
  /* NAV */
  nav {

  
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 4px 32px rgba(0,53,128,0.12); }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-icon {
      width: 65px;
    padding: 5px;
    height: 72px;
    background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 18px; color: white;
    letter-spacing: -1px; box-shadow: 0 4px 16px rgba(200,16,46,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .nav-logo:hover .nav-logo-icon { transform: rotate(-3deg) scale(1.05); box-shadow: 0 8px 24px rgba(200,16,46,0.4); }
  .nav-logo-text .brand { font-size: 15px; font-weight: 700; color: var(--blue); letter-spacing: 0.5px; }
  .nav-logo-text .sub { font-size: 10px; font-weight: 400; color: var(--red); letter-spacing: 2px; text-transform: uppercase; }
  .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
  .nav-links a {
    text-decoration: none; font-size: 13px; font-weight: 500; color: var(--dark);
    letter-spacing: 0.5px; position: relative; padding-bottom: 2px; transition: color 0.2s;
  }
  .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--red); transition: width 0.3s; }
  .nav-links a:hover { color: var(--red); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--red) !important; color: white !important; padding: 12px 22px;
    padding-bottom:12px !important;
    border-radius: 4px; font-weight: 600 !important; letter-spacing: 1px !important;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 2px 12px rgba(200,16,46,0.25);
  }
  .nav-cta:hover { background: var(--blue) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,53,128,0.3) !important; }
  .nav-cta::after { display: none !important; }

  /* HERO */
  #hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
url('../images/b.png') center/cover no-repeat;
  }
  .hero-date-badge span{
      color: black;
  }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-particles { position: absolute; inset: 0; z-index: 1; }
  .particle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.15); animation: float-up linear infinite; }
  @keyframes float-up { 0%{transform:translateY(100vh) scale(0);opacity:0} 10%{opacity:1} 90%{opacity:0.5} 100%{transform:translateY(-20vh) scale(1.5);opacity:0} }
  .hero-content { 
    border-radius: 30px;
    margin-top: 106px; position: relative; z-index: 2; text-align: center; color: white; max-width: 900px; padding: 0 2rem; }
  .hero-date-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px); border-radius: 50px; padding: 8px 24px;
    font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 2rem; animation: fade-down 0.8s ease forwards; opacity: 0;
  }
  .hero-date-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 1.5s ease infinite; }
  @keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.6);opacity:0.6} }
  .hero-title {
      color:#c8102e;
   
    font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 300; line-height: 1.05; letter-spacing: -1px;
    margin-bottom: 0.5rem; animation: fade-up 0.9s 0.2s ease forwards; opacity: 0;
  }
  .hero-title span { font-style: italic; color: #FFD4DC;    color: #003580; }
  .hero-subtitle { color:black; font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 400; letter-spacing: 6px; text-transform: uppercase; opacity: 0; margin-bottom: 1.5rem; animation: fade-up 0.9s 0.35s ease forwards; }
  .hero-location {    color: #003580;
    font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; opacity: 0; margin-bottom: 2.5rem; animation: fade-up 0.9s 0.5s ease forwards; }
  .hero-location span { color: #003580 font-weight: 600; }
  .hero-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; animation: fade-up 0.9s 0.65s ease forwards; opacity: 0; }
  .btn-primary {
    background: var(--red); color: white; text-decoration: none; padding: 14px 36px; border-radius: 4px;
    font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    box-shadow: 0 6px 30px rgba(200,16,46,0.4); transition: all 0.3s; display: inline-block;
    position: relative; overflow: hidden;
  }
  .btn-primary::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent); transform: translateX(-100%); transition: transform 0.4s; }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(200,16,46,0.5); }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-outline { border: 1.5px solid rgba(255,255,255,0.5); color: white; text-decoration: none; padding: 14px 36px; border-radius: 4px; font-size: 13px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; display: inline-block; backdrop-filter: blur(4px); }
  .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; transform: translateY(-2px); }
  .hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; animation: fade-in 1s 1.2s ease forwards; opacity: 0; cursor: pointer; }
  .scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
  .scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: white; animation: scroll-flow 1.5s ease infinite; }
  @keyframes scroll-flow { 0%{top:-100%} 100%{top:200%} }
  @keyframes fade-up { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fade-down { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fade-in { from{opacity:0} to{opacity:1} }

  /* SECTION BASE */
  section { padding: 100px 0; }
  .container { max-width: 1375px; margin: 0 auto; padding: 0 3rem; }
  .section-label { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; display: block; }
  .section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.15; color: var(--dark); }
  .section-title em { font-style: italic; color: #c8102e; }

  /* HIGHLIGHTS */
  .highlights-strip { background: var(--blue); overflow: hidden; }
  .highlights-inner { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; }
  .highlight-item { display: inline-flex; align-items: center; gap: 12px; padding: 18px 48px; color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,0.15); }
  .highlight-item .hi { color: white; font-weight: 700; font-size: 14px; }
  @keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

  /* FEATURES */
  #features { background: var(--cream); }
  .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 4rem;  border-radius: 12px; overflow: hidden; }
  .feature-card { background: white; padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); transform-style: preserve-3d; cursor: default; }
  .feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: linear-gradient(to bottom, var(--red), var(--blue)); transition: height 0.4s ease; }
  .feature-card:hover { transform: translateY(-4px); z-index: 2; box-shadow: 0 20px 60px rgba(0,53,128,0.12); }
  .feature-card:hover::before { height: 100%; }
  .feature-icon { width: 52px; height: 52px; border-radius: 8px; background: var(--red-light); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 24px; transition: transform 0.3s, background 0.3s; }
  .feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); background: var(--blue-light); }
  .feature-card h3 { font-size: 1.4rem; font-weight: 600; color: var(--dark); margin-bottom: 0.75rem; }
  .feature-card p { font-size: 13.5px; line-height: 1.75; color: #555; font-weight: 300; }
  .feature-card .read-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.25rem; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); text-decoration: none; transition: gap 0.2s; }
  .feature-card .read-more:hover { gap: 10px; }

  /* STATS */
  #stats { background: linear-gradient(135deg, var(--blue) 0%, var(--dark) 100%); position: relative; overflow: hidden; }
  #stats::before { content: 'TEX'; position: absolute; right: -2rem; top: 50%; transform: translateY(-50%); font-size: 20rem; font-weight: 600; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
  .stat-item { padding: 3rem 2rem; border-right: 1px solid rgba(255,255,255,0.1); transition: background 0.3s; }
  .stat-item:last-child { border-right: none; }
  .stat-item:hover { background: rgba(255,255,255,0.04); }
  .stat-number { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 300; color: white; line-height: 1; display: block; margin-bottom: 0.5rem; }
  .stat-number span { color: var(--red); font-style: italic; }
  .stat-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); }

  /* WHY */
  #why { background: white; }
  .why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
  .why-visual { position: relative; height: 500px; perspective: 1000px; }
  .why-card-3d { position: absolute; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.15); transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
  .why-card-3d:hover { transform: rotateY(-8deg) rotateX(4deg) scale(1.02); }
  .why-card-3d.c1 { width: 75%; height: 340px; top: 0; left: 0; z-index: 2; background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=700&q=80') center/cover; }
  .why-card-3d.c2 { width: 55%; height: 240px; bottom: 0; right: 0; z-index: 3; background: url('https://images.unsplash.com/photo-1511578314322-379afb476865?w=500&q=80') center/cover; }
  .why-badge { position: absolute; top: -20px; right: -10px; z-index: 4; width: 110px; height: 110px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #FF4D6D); display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; box-shadow: 0 12px 40px rgba(200,16,46,0.4); animation: rotate-slow 8s linear infinite; }
  @keyframes rotate-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
  @keyframes rotate-slow-rev { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }
  .why-badge .num { font-family:'Open Sans', sans-serif; font-size:1.8rem; font-weight:600; line-height:1; }
  .why-badge .txt { font-size:8px; letter-spacing:1px; text-transform:uppercase; opacity:0.9; }
  .why-list { list-style: none; margin-top: 2rem; }
  .why-list li { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid rgba(0,53,128,0.06); transition: padding-left 0.3s; }
  .why-list li:hover { padding-left: 8px; }
  .why-num { font-size: 1.5rem; font-weight: 600; color: var(--red); line-height: 1; min-width: 36px; }
  .why-list h4 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
  .why-list p { font-size: 13px; color: #666; font-weight: 300; line-height: 1.6; }

  /* WHO */
  #who { background: var(--cream); }
  .who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .who-card { background: white; border-radius: 10px; padding: 2.5rem 2rem; text-align: center; position: relative; overflow: hidden; border: 1px solid rgba(0,53,128,0.06); transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); transform-style: preserve-3d; }
  .who-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--red), var(--blue)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
  .who-card:hover { transform: translateY(-8px) rotateX(2deg); box-shadow: 0 24px 60px rgba(0,53,128,0.12); }
  .who-card:hover::after { transform: scaleX(1); }
  .who-emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; transition: transform 0.3s; }
  .who-card:hover .who-emoji { transform: scale(1.15) rotate(-5deg); }
  .who-card h3 { font-family:'Open Sans', sans-serif; font-size:1.2rem; font-weight:600; color:var(--dark); margin-bottom:0.5rem; }
  .who-card p { font-size:12.5px; color:#777; line-height:1.65; font-weight:300; }

  /* PROGRAMME */
  #programme { background: linear-gradient(135deg, var(--red) 0%, #8B0021 100%); color: white; }
  .prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; background: rgba(255,255,255,0.1); }
  .prog-day { background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); padding: 2.5rem 2rem; text-align: center; transition: background 0.3s; }
  .prog-day:hover { background: rgba(255,255,255,0.1); }
  .prog-day-num { font-size: 4rem; font-weight: 300; line-height: 1; color: rgba(255,255,255,0.2); margin-bottom: 0.25rem; }
  .prog-day h3 { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.5rem; opacity: 0.7; }
  .prog-items { list-style: none; }
  .prog-items li { font-size: 13px; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); font-weight: 300; text-align: left; }
  .prog-items li:last-child { border-bottom: none; }
  .prog-items .time { font-size: 10px; letter-spacing: 1px; color: rgba(255,255,255,0.5); display: block; margin-bottom: 2px; }

  /* GALLERY */
  #gallery { background: white; padding: 100px 0 80px; }
  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 220px 220px; gap: 10px; margin-top: 3rem; }
  .gal-item { overflow: hidden; border-radius: 6px; position: relative; cursor: pointer; }
  .gal-item:first-child { grid-column: span 2; grid-row: span 2; }
  .gal-item:nth-child(4) { grid-column: span 2; }
  .gal-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
  .gal-item:hover .gal-img { transform: scale(1.08); }
  .gal-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,53,128,0.6), transparent); opacity: 0; transition: opacity 0.3s; }
  .gal-item:hover .gal-overlay { opacity: 1; }
.text-white
{
    color:white!important;
}
  /* PARTNERS */
  #partners { background: white; padding: 80px 0; }
  .partners-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem 3rem; margin-top: 2rem; }
  .partner-logo { width: 300px;  border-radius: 8px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(0,53,128,0.08); padding: 12px; transition: filter 0.3s, transform 0.3s, box-shadow 0.3s; font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: 1px; text-align: center; }
  .partner-logo:hover { filter: transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,53,128,0.1); }
 .partner-logo img{
     width: 100%!important;
 }
  /* CTA */
  #cta { background: var(--dark); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
  #cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(200,16,46,0.2), transparent 60%), radial-gradient(ellipse at 70% 50%, rgba(0,53,128,0.3), transparent 60%); }
  #cta .container { position: relative; z-index: 1; }
  #cta h2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; color: white; margin-bottom: 1rem; }
  #cta p { color: rgba(255,255,255,0.6); font-size: 15px; font-weight: 300; margin-bottom: 2.5rem; }
  .cta-btns { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; }
  .btn-cta-red { background: var(--red); color: white; text-decoration: none; padding: 16px 44px; border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; display: inline-block; box-shadow: 0 8px 30px rgba(200,16,46,0.4); }
  .btn-cta-red:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(200,16,46,0.5); }
  .btn-cta-blue { background: var(--blue); color: white; text-decoration: none; padding: 16px 44px; border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; display: inline-block; box-shadow: 0 8px 30px rgba(0,53,128,0.4); }
  .btn-cta-blue:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,53,128,0.5); }

  /* FOOTER */
  footer { background: #04091A; color: rgba(255,255,255,0.6); padding: 60px 0 30px; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 2rem; }
  .footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 1rem; font-weight: 300; }
  .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: white; margin-bottom: 1.25rem; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; font-weight: 300; transition: color 0.2s, padding-left 0.2s; }
  .footer-col ul li a:hover { color: white; padding-left: 4px; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { font-size: 12px; }
  .social-links { display: flex; gap: 0.75rem; }
  .social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; transition: all 0.2s; }
  .social-link:hover { border-color: var(--red); color: white; background: var(--red); }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  @media (max-width: 900px) {
    .features-grid, .who-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-layout { grid-template-columns: 1fr; }
    .why-visual { height: 300px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gal-item:first-child { grid-column: span 2; }
    .gal-item:nth-child(4) { grid-column: span 2; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .prog-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }
  
  /* Navigation Toggle for Mobile */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; padding: 20px; }
.nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after {
  display: block; background: var(--dark); height: 2px; width: 25px; position: relative;
}
.nav-toggle-label span::before, .nav-toggle-label span::after { content: ''; position: absolute; }
.nav-toggle-label span::before { bottom: 8px; }
.nav-toggle-label span::after { top: 8px; }

/* Submenu Styles */
.has-submenu { position: relative; }
.submenu {
  position: absolute; top: 47px; left: 0; background: white;
  min-width: 180px; list-style: none; padding: 10px 0; border: 1px solid rgba(0,0,0,0.1);
  opacity: 0; visibility: hidden; transition: 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.has-submenu:hover .submenu { opacity: 1; visibility: visible; }
.submenu li a { display: block; padding: 10px 20px; color: var(--dark); }
.submenu li a:hover { color: var(--red); background: #f9f9f9; }

/* Responsive Adjustments */
@media (max-width: 900px) {
  .nav-toggle-label { display: block; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; width: 100%;
    background: white; flex-direction: column; align-items: flex-start;
    padding: 20px; border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .submenu { position: static; box-shadow: none; width: 100%; }
}


  /* DATABASE FORM + INNER PAGES */
  .inner-hero { min-height: 420px; padding-top: 130px; padding-bottom: 80px; background: linear-gradient(140deg, rgba(0,53,128,0.93), rgba(10,22,40,0.9), rgba(200,16,46,0.8)), url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1800&q=80') center/cover; color: white; text-align:center; }
  .inner-hero h1 { font-family:'Open Sans', sans-serif; font-size:clamp(2.5rem,5vw,5rem); font-weight:300; line-height:1.05; margin-bottom:1rem; }
  .inner-hero p { max-width:760px; margin:0 auto; color:rgba(255,255,255,.72); line-height:1.8; font-weight:300; }
  .content-section { padding:80px 0; background:var(--cream); }
  .content-card { background:white; border-radius:14px; padding:2.25rem; border:1px solid rgba(0,53,128,.08); box-shadow:0 20px 60px rgba(0,53,128,.08); }
  .content-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:2rem; }
  .content-grid.two { grid-template-columns:repeat(2,1fr); }
  .mini-card { background:white; border:1px solid rgba(0,53,128,.08); border-radius:12px; padding:2rem; transition:.3s; }
  .mini-card:hover { transform:translateY(-5px); box-shadow:0 18px 45px rgba(0,53,128,.12); }
  .mini-card h3 { font-family:'Open Sans', sans-serif; font-size:1.55rem; color:var(--blue); margin-bottom:.75rem; }
  .mini-card p, .content-card p, .content-card li { color:#555; font-size:14px; line-height:1.75; font-weight:300; }
  .content-card ul, .content-card ol { margin:1rem 0 0 1.2rem; }
  .registration-wrap { max-width:900px; margin:-90px auto 0; position:relative; z-index:5; }
  .registration-card { background:white; border-radius:16px; padding:2.5rem; box-shadow:0 30px 90px rgba(0,0,0,.16); border:1px solid rgba(0,53,128,.08); }
  .form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
  .form-group.full { grid-column:1/-1; }
  label { display:block; font-size:11px; font-weight:700; letter-spacing:1.6px; text-transform:uppercase; color:var(--blue); margin-bottom:.55rem; }
  input, select, textarea { width:100%; border:1px solid rgba(0,53,128,.16); border-radius:8px; padding:14px 14px; font:inherit; font-size:14px; outline:none; transition:.2s; background:#fff; color:var(--dark); }
  textarea { min-height:110px; resize:vertical; }
  input:focus, select:focus, textarea:focus { border-color:var(--red); box-shadow:0 0 0 4px rgba(200,16,46,.08); }
  .error-text { color:var(--red); font-size:12px; margin-top:.4rem; }
  .alert { padding:1rem 1.25rem; border-radius:10px; margin-bottom:1.5rem; font-size:14px; line-height:1.6; }
  .alert.success { background:#eafaf0; color:#157347; border:1px solid #b7ebca; }
  .alert.error { background:#fff2f2; color:#b42318; border:1px solid #ffd1d1; }
  .submit-btn { border:none; cursor:pointer; margin-top:.6rem; width:auto; }
  .quick-register { display:flex; gap:.75rem; flex-wrap:wrap; margin-top:1.5rem; justify-content:center; }
  .quick-register a { text-decoration:none; font-size:12px; letter-spacing:1.2px; text-transform:uppercase; font-weight:700; padding:12px 18px; border:1px solid rgba(0,53,128,.12); border-radius:50px; color:var(--blue); background:white; transition:.2s; }
  .quick-register a:hover { color:white; background:var(--blue); transform:translateY(-2px); }
  .table-wrap { overflow:auto; background:white; border-radius:14px; border:1px solid rgba(0,53,128,.08); }
  table { width:100%; border-collapse:collapse; min-width:850px; }
  th, td { padding:14px 16px; border-bottom:1px solid rgba(0,53,128,.08); text-align:left; font-size:13px; }
  th { background:var(--blue); color:white; letter-spacing:1px; text-transform:uppercase; font-size:11px; }
  .pill { display:inline-flex; padding:5px 10px; border-radius:99px; background:var(--blue-light); color:var(--blue); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.8px; }
  @media (max-width:900px){ .content-grid, .content-grid.two, .form-grid { grid-template-columns:1fr; } .registration-wrap{margin-top:-50px;padding:0 1rem;} .registration-card{padding:1.5rem;} nav{padding:0 1rem;} }


/* Remove old white header spacing if already added */
body {
  padding-top: 0 !important;
}

/* Main Header */
.pite-style-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  font-family:  sans-serif;
}

/* Top dark transparent logo/date/location strip */
.pite-top-strip {
  width: 100%;
  height: 92px;
  background:transparent;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.pite-top-inner {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 70px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
.pite-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.pite-logo img {
  width: 148px;
  height: auto;
  display: block;
}

/* Event details beside logo */
.pite-event-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pite-event-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.pite-event-icon {
  color: #024068;
  font-size: 18px;
  line-height: 1;
  transition: color 0.3s ease;
}

/* Orange nav bar */
.pite-nav-bar {
  width: 100%;
  height: 40px;
  top: 15%;
  background: #024068;;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pite-nav-inner {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Menu */
.pite-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

.pite-menu > li {
  position: relative;
}

.pite-menu > li > a {
  display: flex;
  align-items: center;
  height: 45px;
  padding: 0 14px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.pite-menu > li > a:hover {
  background: rgba(0, 0, 0, 0.12);
  color: #ffffff;
}

/* Dropdown */
.pite-menu .has-dropdown > a::after {
  content: "▾";
  font-size: 10px;
  margin-left: 6px;
}

.pite-dropdown {
  position: absolute;
  top: 45px;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  list-style: none;
  margin: 0;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.20);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  border-top: 3px solid #e0143f;
}

.pite-menu > li:hover > .pite-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pite-dropdown li a {
  display: block;
  padding: 12px 16px;
  color: #222222;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #eeeeee;
  transition: all 0.22s ease;
}

.pite-dropdown li:last-child a {
  border-bottom: none;
}

.pite-dropdown li a:hover {
  background: #e0143f;
  color: #ffffff;
  padding-left: 22px;
}

/* Mobile toggle */
.pite-mobile-toggle {
  display: none;
}

.pite-mobile-btn {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.35);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  transition: border-color 0.3s ease;
}

.pite-mobile-btn span,
.pite-mobile-btn span::before,
.pite-mobile-btn span::after {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.pite-mobile-btn span::before,
.pite-mobile-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}

.pite-mobile-btn span::before {
  top: -7px;
}

.pite-mobile-btn span::after {
  top: 7px;
}

/* Sticky Scrolled State Modification Styles */
.pite-style-header.scrolled .pite-top-strip {
  background: #ffffffe3 !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.pite-style-header.scrolled .pite-event-item {
  color: var(--dark) !important;
}

.pite-style-header.scrolled .pite-event-icon {
  color: var(--red) !important;
}

.pite-style-header.scrolled .pite-mobile-btn {
  border-color: rgba(0, 0, 0, 0.15);
}

.pite-style-header.scrolled .pite-mobile-btn span,
.pite-style-header.scrolled .pite-mobile-btn span::before,
.pite-style-header.scrolled .pite-mobile-btn span::after {
  background: var(--dark) !important;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .pite-top-strip {
    height: 78px;
  }

  .pite-top-inner {
    padding: 0 18px;
    gap: 14px;
  }

  .pite-logo img {
    width: 118px;
  }

  .pite-event-info {
    gap: 5px;
  }

  .pite-event-item {
    font-size: 11px;
  }

  .pite-event-icon {
    font-size: 14px;
  }

  .pite-mobile-btn {
    display: flex;
  }

  .pite-nav-bar {
    height: auto;
    display: block;
  }

  .pite-nav-inner {
    display: block;
  }

  .pite-menu {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 78px);
    background: #e0143f;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .pite-mobile-toggle:checked ~ .pite-nav-bar .pite-menu {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .pite-mobile-toggle:checked ~ .pite-top-strip .pite-mobile-btn span {
    background: transparent !important;
  }

  .pite-mobile-toggle:checked ~ .pite-top-strip .pite-mobile-btn span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .pite-mobile-toggle:checked ~ .pite-top-strip .pite-mobile-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .pite-menu > li {
    width: 100%;
  }

  .pite-menu > li > a {
    height: auto;
    width: 100%;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    justify-content: space-between;
  }

  .pite-dropdown {
    position: static;
    min-width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
  }

  .has-dropdown.open .pite-dropdown {
    display: block;
  }

  .pite-dropdown li a {
    padding: 13px 34px;
  }

  .pite-dropdown li a:hover {
    padding-left: 34px;
  }
}

@media (max-width: 520px) {
  .pite-event-info {
    display: none;
  }

  .pite-logo img {
    width: 125px;
  }
}



/**************************************ABOUT PAGE************************************************/


    .hero-title2{
        color: white;
        font-weight: 700;
        font-size: 50px;
        text-transform: uppercase;
         text-shadow: 0px 0px 54px black;

    }

/* PITE Inspired Clean Narrative Layout Styles */
.about-narrative-section {
  padding: 6rem 0;
  background: #fff;
}
.about-narrative-wrapper {
  max-width: 950px;
  margin: 0 auto;
}
.about-tab-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(0,53,128,0.08);
  padding-bottom: 1rem;
}
.about-tab-btn {
  font-family:'Open Sans', sans-serif;
      font-size: 18px;
    text-transform: uppercase;
  font-weight: 500;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
}
.about-tab-btn.active, .about-tab-btn:hover {
  color: var(--dark);
}
.about-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red, #e33642);
}
.narrative-block {
  margin-bottom: 4.5rem;
}
.narrative-block h2 {
  font-family:'Open Sans', sans-serif;
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.narrative-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  font-weight: 300;
  text-align: justify;
}
.narrative-block strong {
  font-weight: 500;
  color: var(--dark);
}
.legal-notice-box {
  background: var(--cream, #fcfaf7);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(0,53,128,0.06);
}
.legal-notice-box h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.legal-notice-box p {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .about-tab-nav { flex-direction: column; align-items: center; gap: 10px; }
  .narrative-block h2 { font-size: 2rem; }
}





/******************************************programme page ******************************************************/


/* PITE Clean Tab and Schedule Interface System */
.prog-section {
  padding: 5rem 0;
  background: var(--cream, #fcfaf7);
}
.prog-container {
  max-width: 900px;
  margin: 0 auto;
}
.prog-tab-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3.5rem;
}
.prog-tab-trigger {
  background: #fff;
  border: 1px solid rgba(0,53,128,0.08);
  color: var(--dark, #111);
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.prog-tab-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,53,128,0.08);
}
.prog-tab-trigger.active {
  background: #04091a;
  color: #fff;
  border-color: #04091a;
}
.prog-content-pane {
  display: none;
  animation: tabFadeIn 0.45s ease forwards;
}
.prog-content-pane.active {
  display: block;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Timeline Layout Rows */
.timeline-card-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,53,128,0.05);
  box-shadow: 0 6px 25px rgba(0,53,128,0.03);
  overflow: hidden;
}
.timeline-time-col {
  background: rgba(0,53,128,0.02);
  border-right: 1px solid rgba(0,53,128,0.05);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  letter-spacing: 0.5px;
}
.timeline-desc-col {
  padding: 1.5rem;
}
.timeline-desc-col h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.timeline-desc-col p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  font-weight: 300;
}
.attire-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red, #e33642);
  margin-top: 0.5rem;
}
.fam-tour-highlight {
  background: #fbf9f5;
  border-left: 3px solid #003580;
  padding: 1rem;
  border-radius: 0 8px 8px 0;
  margin-top: 0.75rem;
}

@media(max-width: 768px) {
  .timeline-card-row { grid-template-columns: 1fr; }
  .timeline-time-col { background: rgba(0,53,128,0.04); border-right: none; border-bottom: 1px solid rgba(0,53,128,0.05); padding: 1rem 1.5rem; }
}





    /* Ecosystem / Partners Grid Framework */
    #partners {
        padding: 80px 0;
        background: #ffffff;
        text-align: center;
    }

    .section-label {
        display: block;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--accent-gold);
        font-weight: 600;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: clamp(28px, 4vw, 42px);
        line-height: 1.2;
        color: var(--primary-blue);
        margin: 0 0 15px 0;
        font-weight: 700;
    }
    
    .section-title em {
        font-family: 'Open Sans', sans-serif;
        font-style: italic;
        font-weight: 400;
        color: #333;
    }

    .ecosystem-lead-text {
        color: #024068;
        font-size: 18px;
        font-weight: 300;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .support-badge-tag {
        font-size: 11px;
        letter-spacing: 3px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--accent-gold);
        margin-bottom: 25px;
        display: block;
    }

    /* Flex Row System for Brand Logos */
    .partners-row {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
        max-width: 1300px;
        margin: 0 auto;
    }

    .partner-logo {
        background: #ffffff;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 20px;
        width: 27%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .partner-logo:hover {
        transform: translateY(-4px);
        border-color: rgba(0, 53, 128, 0.15);
        box-shadow: 0 10px 25px rgba(0, 53, 128, 0.06);
    }

    .partner-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: filter 0.3s ease;
    }

    /* Newly Added: Premium Sponsorship Engagement Module */
    .sponsorship-section {
        padding: 80px 0;
        background: var(--light-neutral);
        border-top: 1px solid var(--border-color);
    }

    .sponsorship-panel {
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid var(--border-color);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
        max-width: 1300px;
        margin: 0 auto;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
    }

    .sponsorship-content-block {
        padding: 50px;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .sponsorship-content-block h3 {
        font-size: 2.2rem;
        color: var(--primary-blue);
        margin: 0 0 15px 0;
        font-weight: 600;
        line-height: 1.2;
    }

    .sponsorship-content-block p {
        font-size: 15.5px;
        color: #555;
        line-height: 1.6;
        margin: 0;
    }

    .sponsorship-action-block {
        background: #024068;
        color: #ffffff;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
    }

    .sponsorship-action-block::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, rgba(0,0,0,0) 100%);
        pointer-events: none;
    }

    .sponsorship-action-block span {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 600;
        margin-bottom: 8px;
    }

    .sponsor-email-link {
        color: #ffffff !important;
        font-size: clamp(16px, 2.5vw, 21px);
        font-weight: 700;
        text-decoration: none;
        border-bottom: 2px solid var(--accent-gold);
        padding-bottom: 4px;
        transition: color 0.2s ease, border-color 0.2s ease;
        word-break: break-all;
    }

    .sponsor-email-link:hover {
        color: var(--accent-gold) !important;
        border-color: #ffffff;
    }

    /* Responsive Architecture Breaks */
    @media (max-width: 992px) {
        .sponsorship-panel { grid-template-columns: 1fr; }
        .sponsorship-content-block { padding: 40px; text-align: center; }
        .sponsorship-action-block { padding: 40px; }
    }

    @media (max-width: 768px) {
        #partners, .sponsorship-section { padding: 60px 0; }
        .partners-row { gap: 20px; }
        .partner-logo { width: 200px; min-width:200px; height:200px; padding: 15px; }
        .sponsorship-content-block { padding: 30px 20px; }
        .sponsorship-action-block { padding: 30px 20px; }
    }
    
    
    

/* PITE Inspired Destination Showcase Layout */
.dest-section {
  padding: 6rem 0;
  background: #fff;
}
.dest-container {
  max-width: 1100px;
  margin: 0 auto;
}
.dest-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.dest-text h2 {
  font-size: 2.8rem;
  color: var(--dark, #04091a);
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
}
.dest-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  font-weight: 300;
  text-align: justify;
}

/* Local Highlights Interactive Rows */
.dest-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 5rem;
}
.dest-feature-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,53,128,0.06);
  box-shadow: 0 10px 30px rgba(0,53,128,0.03);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.dest-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,53,128,0.1);
}
.dest-card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card-body {
  padding: 1.8rem 1.5rem;    
}
.dest-card-body h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.dest-card-body p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #666;
  font-weight: 300;
  margin: 0;
}

/* Strategic Location Quick Stats Panel */
.location-panel {
  background: var(--cream, #fcfaf7);
  border-radius: 20px;
  padding: 3.5rem;
  border: 1px solid rgba(0,53,128,0.05);
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 2.5rem;
}
.loc-stat-box {
  text-align: center;
  background: #fff;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0,53,128,0.04);
}
.loc-stat-box span.num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--red, #e33642);
  margin-bottom: 0.2rem;
}
.loc-stat-box span.lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  font-weight: 400;
}

@media(max-width: 991px) {
  .dest-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .dest-card-row { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
}





/* PITE Inspired Heritage Narrative Layout */
.heritage-section {
  padding: 6rem 0;
  background: #fff;
}
.heritage-container {
  max-width: 1000px;
  margin: 0 auto;
}
.heritage-intro-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}
.heritage-intro-block h2 {
  font-size: 2.5rem;
  color: var(--dark, #04091a);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.heritage-intro-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
}

/* Alternating Feature Showcase Blocks */
.heritage-showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 7rem;
}
.heritage-showcase-row.reverse {
  direction: rtl;
}
.heritage-showcase-row.reverse .heritage-info-pane {
  direction: ltr;
}
.heritage-img-pane {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,53,128,0.08);
}
.heritage-img-pane img {
  width: 100%;
  height: auto;
  display: block;
}
.heritage-info-pane span.tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red, #e33642);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
.heritage-info-pane h3 {
 
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}
.heritage-info-pane p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #444;
  font-weight: 300;
  margin-bottom: 1rem;
  text-align: justify;
}
.heritage-info-pane ul {
  padding-left: 1.2rem;
  margin-top: 1rem;
}
.heritage-info-pane ul li {
  font-size: 13.5px;
  color: #555;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

@media(max-width: 768px) {
  .heritage-showcase-row, .heritage-showcase-row.reverse { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
}












/* PITE Inspired Experiences Dynamic Grid */
.exp-section {
  padding: 6rem 0;
  background: #fff;
}
.exp-container {
  max-width: 1100px;
  margin: 0 auto;
}
.exp-intro-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4.5rem;
}
.exp-intro-text h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.5rem;
  color: var(--dark, #04091a);
  margin-bottom: 1.2rem;
}
.exp-intro-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
}

/* Three-Column Asymmetric Grid Layout */
.exp-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 4rem;
}
.exp-block-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,53,128,0.06);
  box-shadow: 0 12px 35px rgba(0,53,128,0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.exp-block-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,53,128,0.12);
}
.exp-media-holder {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}
.exp-media-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.exp-block-card:hover .exp-media-holder img {
  transform: scale(1.08);
}
.exp-badge-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(4, 9, 26, 0.85);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.exp-body-content {
  padding: 2rem 1.6rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.exp-body-content h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
}
.exp-body-content p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #666;
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-align: justify;
}
.exp-meta-footer {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,53,128,0.05);
  font-size: 12px;
  color: #888;
  display: flex;
  justify-content: space-between;
  font-weight: 400;
}
.exp-meta-footer span.highlight-tag {
  color: var(--red, #e33642);
  font-weight: 700;
}

@media(max-width: 991px) {
  .exp-asymmetric-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 768px) {
  .exp-asymmetric-grid { grid-template-columns: 1fr; }
  .exp-media-holder { height: 230px; }
}
