/*=============================================
  Titan Gloria Network — CSS Overlay
  Safe migration: additive only, no overwrites.
  Loaded AFTER main.css to layer on top.
=============================================*/

/* ── 1. DESIGN TOKENS (new vars, no conflict) ── */
:root {
  --tgn-orange: #E8844A;
  --tgn-orange-light: #F5A572;
  --tgn-orange-dark: #C96830;
  --tgn-orange-pale: #FDE8D8;
  --tgn-orange-bg: #FDF1E7;
  --tgn-navy: #1A2260;
  --tgn-navy-deep: #0E1540;
  --tgn-navy-mid: #252E7A;
  --tgn-navy-light: rgba(26,34,96,0.07);
  --tgn-white: #FFFFFF;
  --tgn-text-dark: #0E1540;
  --tgn-text-mid: #2A3470;
  --tgn-text-muted: rgba(14,21,64,0.52);
  --tgn-border: rgba(26,34,96,0.1);
}

/* ── 2. BASE ENHANCEMENTS ── */
body {
  font-family: 'DM Sans', 'Roboto', sans-serif;
  background: var(--tgn-orange-bg);
  color: var(--tgn-text-dark);
}

/* ── 3. NAVBAR STYLING (targets existing .header.navbar-area) ── */
.header.navbar-area {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,241,231,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--tgn-border);
  transition: padding .3s, box-shadow .3s, background .3s;
}

.header.navbar-area.scrolled {
  box-shadow: 0 4px 24px rgba(26,34,96,0.08);
}

/* Navbar links – override default color to navy */
.header.navbar-area .navbar-nav .nav-item a {
  color: var(--tgn-navy) !important;
  font-family: 'Syne', 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.header.navbar-area .navbar-nav .nav-item a:hover {
  color: var(--tgn-orange) !important;
}

/* Navbar brand image - Increased size */
/* Navbar brand image - Increased size */
.header.navbar-area .navbar-brand img {
  max-height: 110px; /* Increased from 80px */
  width: auto;
  object-fit: contain;
  border-radius: 0;
  transition: transform 0.3s ease;
  /* Filter to change black logo to Navy Blue (#1A2260) */
  filter: brightness(0) saturate(100%) invert(13%) sepia(35%) saturate(3061%) hue-rotate(224deg) brightness(93%) contrast(95%);
}

/* Navbar CTA .btn override within header */
.header.navbar-area .button .btn {
  background: var(--tgn-orange);
  border: none;
  color: var(--tgn-white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 28px;
  border-radius: 60px;
}

.header.navbar-area .button .btn:hover {
  background: var(--tgn-orange-dark);
  color: var(--tgn-white);
}

/* Navbar Toggler Icon - Dark Lines for Visibility */
.navbar-toggler .toggler-icon {
  background-color: var(--tgn-navy) !important;
}

/* ── 4. BUTTON SYSTEM (new class names, no collision) ── */
.tgn-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tgn-orange);
  color: var(--tgn-white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s;
}

.tgn-btn-primary:hover {
  background: var(--tgn-orange-dark);
  transform: translateY(-2px);
}

.tgn-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--tgn-navy);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 60px;
  border: 2px solid var(--tgn-border);
  cursor: pointer;
  transition: all .3s;
}

.tgn-btn-outline:hover {
  border-color: var(--tgn-orange);
  color: var(--tgn-orange);
}

.tgn-btn-sm {
  padding: 10px 24px;
  font-size: 0.7rem;
}

/* ── 5. SECTION SYSTEM ── */
.section-wrap {
  padding: 100px 60px;
}

.section-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.tgn-section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tgn-orange-dark);
  margin-bottom: 12px;
}

.tgn-section-title {
  font-family: 'Bebas Neue', 'Barlow', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--tgn-navy);
}

.tgn-section-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--tgn-text-muted);
}

/* ── 6. SECTION TITLE OVERRIDES (style existing .section-title) ── */
.section-title h3 {
  color: var(--tgn-orange-dark) !important;
  font-family: 'Syne', 'Barlow', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-title h2 {
  font-family: 'Bebas Neue', 'Barlow', sans-serif;
  color: var(--tgn-navy) !important;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

.section-title p {
  color: var(--tgn-text-muted);
  line-height: 1.8;
}

/* ── 7. HERO — Premium Polished Layout ── */

/* Main hero: rich layered gradient with pattern */
.hero-area {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(232,132,74,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(232,132,74,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 60%, rgba(245,165,114,0.15) 0%, transparent 50%),
    linear-gradient(170deg, #FDF1E7 0%, #FDDFC5 25%, #F5C49A 55%, #E8844A 100%) !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* "Round Half" Background Shape */
.hero-area::before {
  content: '';
  position: absolute;
  bottom: -20vh;
  left: 50%;
  transform: translateX(-50%);
  width: 120vw;
  height: 60vh;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.01) 70%, transparent 100%);
  border-radius: 50% 50% 0 0; /* Semi-circle shape */
  z-index: 1;
  pointer-events: none;
}

/* Hide video */
.hero-area .hero-video,
.hero-area video {
  display: none !important;
}

/* ── Decorative blobs with animation ── */
/* ── Decorative Geometric Shapes (Solid, No Blur) ── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0; 
  opacity: 0.8;
  pointer-events: none;
}

.hero-blob-1 {
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background-color: var(--tgn-orange);
  background-image: radial-gradient(rgba(255,255,255,0.3) 2px, transparent 2px);
  background-size: 30px 30px;
}

.hero-blob-2 {
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background-color: var(--tgn-orange); /* Both orange as per ref? or Navy? */
  background-image: radial-gradient(rgba(255,255,255,0.3) 2px, transparent 2px);
  background-size: 30px 30px;
}

.main__circle,
.main__circle2,
.main__circle3,
.main__circle4 {
  display: none; /* Hide old blobs to avoid clutter */
}


.main__circle {
  width: 650px;
  height: 650px;
  top: -220px;
  right: -180px;
  background: radial-gradient(circle, rgba(232,132,74,0.4) 0%, rgba(232,132,74,0.08) 70%);
  animation: blobFloat1 12s ease-in-out infinite;
}

.main__circle2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(201,104,48,0.3) 0%, rgba(201,104,48,0.05) 70%);
  animation: blobFloat2 15s ease-in-out infinite;
}

.main__circle3 {
  width: 280px;
  height: 280px;
  top: 25%;
  left: 3%;
  background: radial-gradient(circle, rgba(245,165,114,0.35) 0%, rgba(245,165,114,0.05) 70%);
  animation: blobFloat3 10s ease-in-out infinite;
}

.main__circle4 {
  width: 400px;
  height: 400px;
  bottom: 5%;
  right: 5%;
  background: radial-gradient(circle, rgba(232,132,74,0.3) 0%, rgba(232,132,74,0.06) 70%);
  animation: blobFloat1 18s ease-in-out infinite reverse;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -30px) scale(1.08); }
}

@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

/* ── Hero content layout ── */
.hero-area .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-area .hero-content {
  text-align: center;
  /* Increased top padding to clear fixed navbar + extra breathing room */
  padding: 150px 20px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh; /* Ensure content takes full height for vertical centering */
}

/* Badge label */
.hero-area .hero-content h5 {
  align-self: center; /* Fix for flex column if needed */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--tgn-navy) !important;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(26,34,96,0.12);
  padding: 12px 30px;
  border-radius: 60px;
  margin-bottom: 30px; /* Reduced margin */
}

.hero-area .hero-content h5 i {
  color: var(--tgn-orange);
  font-size: 0.9rem;
}

/* Main heading */
.hero-area .hero-content h2 {
  font-family: 'Bebas Neue', 'Barlow', sans-serif;
  /* Reduced font size as requested */
  font-size: clamp(3rem, 7vw, 6rem); 
  line-height: 0.95;
  color: var(--tgn-navy) !important;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

/* Paragraph */
.hero-area .hero-content p {
  font-family: 'DM Sans', sans-serif;
  color: var(--tgn-text-mid) !important;
  font-size: 1.1rem;
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto 44px;
  opacity: 0.85;
}

/* Buttons */
.hero-area .button {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-area .button .btn {
  background: var(--tgn-orange) !important;
  border: 2px solid var(--tgn-orange) !important;
  color: var(--tgn-white) !important;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 60px;
  box-shadow: 0 6px 24px rgba(232,132,74,0.35);
  transition: all 0.3s ease;
}

.hero-area .button .btn:hover {
  background: var(--tgn-orange-dark) !important;
  border-color: var(--tgn-orange-dark) !important;
  box-shadow: 0 8px 30px rgba(201,104,48,0.4);
  transform: translateY(-2px);
}

.hero-area .button .btn-alt {
  background: transparent !important;
  border: 2px solid var(--tgn-navy) !important;
  color: var(--tgn-navy) !important;
  box-shadow: none;
}

.hero-area .button .btn-alt:hover {
  background: var(--tgn-navy) !important;
  border-color: var(--tgn-navy) !important;
  color: var(--tgn-white) !important;
  box-shadow: 0 8px 30px rgba(26,34,96,0.25);
}

/* ── 8. FEATURE CARDS ENHANCEMENT (Event Management) ── */
.single-featuer {
  position: relative;
  background: var(--tgn-white);
  border: 1px solid var(--tgn-border);
  border-radius: 16px;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
  height: 100%; /* Ensure all cards are same height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.single-featuer h3,
.single-featuer p,
.single-featuer .service-icon i {
  transition: color 0.3s ease;
  position: relative;
  z-index: 3;
}

/* Hover Effect: Transparent Sheet + White Text */
.single-featuer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(232, 132, 74, 0.92); /* Orange transparent overlay */
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.single-featuer:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(232, 132, 74, 0.3);
}

.single-featuer:hover::before {
  opacity: 1;
}

.single-featuer:hover h3,
.single-featuer:hover p,
.single-featuer:hover span {
  color: #ffffff !important;
  z-index: 10;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Icon box on hover: Pop with White BG + Orange Icon */
.single-featuer:hover .service-icon {
  background: var(--tgn-white) !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  z-index: 10;
}

.single-featuer:hover .service-icon i {
  color: var(--tgn-orange) !important;
  z-index: 11;
}

/* ── 9. SERVICE CARDS ENHANCEMENT ── */
/* ── 9. SERVICE CARDS ENHANCEMENT (Video Cards) ── */
.card.newcard {
  position: relative;
  background: var(--tgn-navy);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--tgn-border);
  height: 450px; /* Fixed height for consistency */
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}

.card.newcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,34,96,0.25);
}

/* Video Background */
.card.newcard .card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark Gradient Overlay for Readability */
.card.newcard::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, 
    rgba(14,21,64,0.95) 0%, 
    rgba(14,21,64,0.5) 60%, 
    rgba(14,21,64,0.2) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}

.card.newcard:hover::before {
  background: linear-gradient(to top, 
    rgba(14,21,64,0.98) 0%, 
    rgba(14,21,64,0.6) 60%, 
    rgba(232,132,74,0.1) 100%);
}

.card.newcard .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
}

.card.newcard .card-content h2 {
  font-family: 'Syne', 'Barlow', sans-serif;
  color: var(--tgn-white) !important;
  font-size: 1.5rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card.newcard .card-content p {
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.95rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* ── 9a. SECTION THEMES (Events & Partnerships) ── */
/* Upcoming Events: Cream Background + Navy Text */
#Events {
  background: var(--tgn-orange-bg) !important; /* Cream */
  background-image: none !important; /* Remove any existing gradients/images */
  position: relative;
  z-index: 1;
}

#Events::before {
  display: none !important;
  background: none !important;
  content: none !important;
}

#Events .text h5 {
  color: var(--tgn-white) !important;
  background: var(--tgn-navy) !important;
  padding: 8px 18px;
  border-radius: 4px;
  display: inline-block;
  font-family: 'Syne', sans-serif;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

#Events .text h2 {
  color: var(--tgn-navy) !important;
}

#Events .text p {
  color: var(--tgn-text-muted) !important;
}

#Events .btn {
  background: var(--tgn-navy) !important;
  color: var(--tgn-white) !important;
  border: none !important;
}

#Events .btn:hover {
  background: var(--tgn-orange) !important;
}

/* Partnership/Brands Section - Navy Theme */
.call-action.overlay:not(#Events) {
  background: var(--tgn-navy-deep) !important; /* Fallback */
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Override the pink overlay (likely on ::before) */
.call-action.overlay:not(#Events)::before {
  background: linear-gradient(135deg, var(--tgn-navy-deep), var(--tgn-navy-mid)) !important;
  opacity: 0.95 !important;
  z-index: -1; /* Ensure text is on top */
}

/* Ensure text is visible on Navy background */
.call-action.overlay:not(#Events) .text h5 {
  color: var(--tgn-orange-light) !important;
}

.call-action.overlay:not(#Events) .text h2 {
  color: var(--tgn-white) !important;
}

.call-action.overlay:not(#Events) .text p {
  color: rgba(255,255,255,0.8) !important;
}

/* Partnership/Brands Section */
.client-logo-section,
.partners-section {
  background: var(--tgn-white);
  padding: 80px 0;
}


/* ── 10. ARTISTS TABLE ENHANCEMENT ── */
.features.section.bg-white table thead {
  background: linear-gradient(135deg, var(--tgn-navy) 0%, var(--tgn-navy-mid) 100%) !important;
}

/* ── 11. CALL-TO-ACTION / OVERLAY SECTIONS ── */
.call-action.overlay {
  background: linear-gradient(135deg, var(--tgn-navy-deep), var(--tgn-navy-mid));
}

.call-action.overlay .text h5 {
  color: var(--tgn-orange-light);
  font-family: 'Syne', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.call-action.overlay .text h2 {
  font-family: 'Bebas Neue', 'Barlow', sans-serif;
  color: var(--tgn-white) !important;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.call-action.overlay .text p {
  color: rgba(255,255,255,0.75);
}

.call-action.overlay .button .btn {
  background: var(--tgn-orange);
  border-color: var(--tgn-orange);
}

.call-action.overlay .button .btn:hover {
  background: var(--tgn-orange-dark);
  border-color: var(--tgn-orange-dark);
}

/* ── 12. ABOUT / IMPACT SECTION ── */
.about.section .content h4 {
  color: var(--tgn-orange-light);
  font-family: 'Syne', sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.about.section .content h2 {
  font-family: 'Bebas Neue', 'Barlow', sans-serif;
  color: var(--tgn-white) !important;
}

/* ── 13. TESTIMONIALS ── */
.single-testimonial {
  border: 1px solid var(--tgn-border);
  border-radius: 16px !important;
  transition: transform .3s, box-shadow .3s;
}

.single-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,34,96,0.08);
}

/* ── 14. COUNT-DOWN ── */
.count-down {
  background: var(--tgn-navy);
}

.count-down .box h1 {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--tgn-orange);
}

.count-down .box h2 {
  font-family: 'Syne', sans-serif;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
}

/* ── 15. FOOTER ENHANCEMENTS ── */
.footer {
  background: var(--tgn-navy-deep);
}

.footer .footer-top {
  background: var(--tgn-navy-deep);
}

.footer .single-footer h3 {
  font-family: 'Syne', 'Barlow', sans-serif;
  color: var(--tgn-orange-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.footer .single-footer p {
  color: rgba(255,255,255,0.9) !important; /* Whiter text */
}

.footer .single-footer ul li a {
  color: rgba(255,255,255,0.9) !important; /* Whiter text */
}

.footer .single-footer ul li a:hover {
  color: var(--tgn-orange) !important;
}

.footer .copyright {
  background: var(--tgn-navy-deep);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer .newsletter .btn {
  background: var(--tgn-orange) !important;
  border: none;
}

.footer .newsletter .btn:hover {
  background: var(--tgn-orange-dark) !important;
}

/* ── 16. SCROLL-TOP ── */
.scroll-top {
  background: var(--tgn-orange) !important;
}

.scroll-top:hover {
  background: var(--tgn-orange-dark) !important;
}

/* ── 17. PRELOADER ── */
.preloader .preloader-inner .preloader-icon span {
  background: var(--tgn-orange);
}

/* ── 18. RESPONSIVE ── */
@media (max-width: 960px) {
  .section-wrap {
    padding: 60px 20px;
  }

  .header.navbar-area {
    padding: 10px 20px;
  }

  /* Adjust Navbar Logo on Tablets */
  .header.navbar-area .navbar-brand img {
    max-height: 80px;
  }

  .tgn-section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

@media (max-width: 768px) {
  .section-wrap {
    padding: 50px 16px;
  }

  /* Mobile Margins: Spacing between stacked blocks */
  .single-featuer,
  .card.newcard,
  .single-testimonial {
    margin-bottom: 40px !important; /* Force space between cards */
    display: block; /* Ensure block level */
  }

  .col-12 {
     margin-bottom: 10px; /* Backup spacing on column */
  }
  .tgn-btn-outline {
    width: 100%; /* Full width buttons on mobile */
    justify-content: center;
    margin-bottom: 10px;
  }
  
  /* Reduce Hero Padding on Mobile & Align to Top */
  .hero-area .hero-content {
    padding-top: 110px; /* Space for navbar */
    padding-bottom: 60px;
    min-height: auto; /* Disable full height centering */
    justify-content: flex-start;
  }

  /* Ensure background covers the screen even if content is short */
  .hero-area {
    min-height: 100vh;
  }

  .hero-area .hero-content h2 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }


  .call-action.overlay .text h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.4 !important; /* Added line-height for spacing between rows */
  }

  /* Adjust Logo on Mobile */
  .header.navbar-area .navbar-brand img {
    max-height: 80px; /* Increased from 50px */
  }
}


@media (max-width: 480px) {
  .section-wrap {
    padding: 40px 12px;
  }
}

/* ── 19. GLOBAL PAGE LAYOUTS (Standardization) ── */

/* Breadcrumbs - Styled like Hero to match Home Theme */
.breadcrumbs {
  background: var(--tgn-navy-deep);
  padding: 180px 0 80px 0; /* Increase top padding to clear navbar */
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 0 !important; /* Remove margin to fix gap */
}

@media (max-width: 960px) {
  .breadcrumbs {
    padding: 140px 0 60px 0; /* Adjust for mobile navbar */
    margin-top: 0 !important;
  }
}

.breadcrumbs::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--tgn-orange) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--tgn-orange) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs .page-title {
  color: var(--tgn-white);
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.breadcrumbs .breadcrumb-nav {
  position: relative;
  z-index: 2;
}

.breadcrumbs .breadcrumb-nav li, 
.breadcrumbs .breadcrumb-nav li a {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  font-weight: 500;
}

.breadcrumbs .breadcrumb-nav li a:hover {
  color: var(--tgn-orange);
  text-decoration: none;
}

/* Global Call Action - Enforce Navy Theme override */
.call-action.overlay {
  background: var(--tgn-navy-deep) !important;
  position: relative;
  z-index: 1;
}

.call-action.overlay::before {
  background: linear-gradient(to right, rgba(14,21,64,0.98), rgba(14,21,64,0.85)) !important;
  opacity: 1 !important;
}

.call-action.overlay h2, 
.call-action.overlay h5,
.call-action.overlay p {
  color: var(--tgn-white) !important;
}

/* Events Schedule - Clean Vertical Timeline Layout */
.events-schedule {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

.events-schedule .ul {
  padding: 0;
  list-style: none;
  position: relative;
  display: block; 
  max-width: 1000px;
  margin: 0 auto;
}

/* Central Line - Thin & Gray */
.events-schedule .ul::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #e5e7eb;
  transform: translateX(-50%);
}

.events-schedule .ul .li {
  background: var(--tgn-white);
  border: 1px solid rgba(0,0,0,0.05); /* Very subtle border */
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* Soft shadow */
  padding: 30px;
  margin-bottom: 60px;
  width: 45%; /* Slightly narrower than 50% to leave gap/arrow space */
  position: relative;
  clear: both;
  transition: transform 0.3s, box-shadow 0.3s;
}

.events-schedule .ul .li:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  z-index: 10;
}

/* Odd items - Left */
.events-schedule .ul .li:nth-child(odd) {
  float: left;
  text-align: left; /* Keep text left-aligned inside card */
}

/* Even items - Right */
.events-schedule .ul .li:nth-child(even) {
  float: right;
  text-align: left;
  margin-top: 60px; 
}

/* Timeline Dot - Large with White Halo */
.events-schedule .ul .li::after {
  content: '';
  position: absolute;
  top: 30px; /* Align with arrow */
  width: 20px;
  height: 20px;
  background: var(--tgn-white);
  border: 5px solid var(--accent-color, var(--tgn-orange));
  border-radius: 50%;
  z-index: 5;
  box-shadow: 0 0 0 4px #fff; /* Separation from line */
}

.events-schedule .ul .li:nth-child(odd)::after {
  right: -11.2%; /* Roughly 5/45 */
  right: calc(-11.2% - 10px); /* Adjust visually */
}

.events-schedule .ul .li:nth-child(even)::after {
  left: -11.2%;
  left: calc(-11.2% - 13px);
}

/* Arrows - Triangle pointing to timeline */
.events-schedule .ul .li::before {
  content: '';
  position: absolute;
  top: 32px;
  width: 0; 
  height: 0; 
  border-style: solid;
  z-index: 5;
  display: block; /* Ensure visibility */
}

/* Odd Arrow - Right side */
.events-schedule .ul .li:nth-child(odd)::before {
  right: -10px;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--tgn-white);
  filter: drop-shadow(2px 0 1px rgba(0,0,0,0.05)); /* Subtle shadow matching card */
}

/* Even Arrow - Left side */
.events-schedule .ul .li:nth-child(even)::before {
  left: -10px;
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--tgn-white) transparent transparent;
  filter: drop-shadow(-2px 0 1px rgba(0,0,0,0.05));
}

/* Date - Inside Card */
.events-schedule .date {
  color: var(--accent-color, var(--tgn-orange)); 
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem; /* Large year style */
  margin-bottom: 5px;
  display: block;
  background: none;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  text-align: left;
}

/* Add pseudo for year label? User data is full date string. 
   We just style the text heavily. */

.events-schedule .title {
  font-family: 'Syne', sans-serif;
  color: var(--tgn-navy);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.events-schedule .descr {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  box-shadow: none !important;
  background: none !important;
  filter: none !important;
}

.events-schedule .descr::after,
.events-schedule .descr::before {
  display: none !important;
  content: none !important;
}

.events-schedule .contact-btn {
  text-align: left; /* Keep button left aligned inside card for flow */
}

.events-schedule .contact-btn .btn {
  padding: 8px 24px;
  font-size: 0.85rem;
  background: transparent;
  color: var(--tgn-navy);
  border: 1px solid var(--tgn-border);
  border-radius: 6px;
  width: auto; /* Auto width */
}

.events-schedule .contact-btn .btn:hover {
  background: var(--tgn-navy);
  color: var(--tgn-white);
  border-color: var(--tgn-navy);
  transform: none; /* Subtle hover */
}


/* Clearfix */
.events-schedule .ul::after {
  content: '';
  display: table;
  clear: both;
}

/* Responsive */
@media (max-width: 768px) {
  .events-schedule .ul::before {
    left: 20px;
  }
  
  .events-schedule .ul .li {
    width: 100%;
    float: none;
    margin-left: 50px; /* Space for line */
    width: calc(100% - 50px);
    margin-bottom: 30px;
  }
  
  .events-schedule .ul .li:nth-child(even) {
    float: none;
    margin-top: 0;
  }
  
  /* Reset Dots to Left */
  .events-schedule .ul .li::after,
  .events-schedule .ul .li:nth-child(odd)::after,
  .events-schedule .ul .li:nth-child(even)::after {
    left: -41px; /* 50px margin - 20px padding - dot center? 
                  Line is at 20px from screen edge.
                  Card starts at 50px from screen edge.
                  Gap is 30px.
                  Dot should be on line. 
                  So left: -30px (gap) - 10px (half dot) = -40px?
                  Let's try -41px. */
    right: auto;
  }
  
  /* Reset Arrows to Left */
  .events-schedule .ul .li::before, 
  .events-schedule .ul .li:nth-child(odd)::before,
  .events-schedule .ul .li:nth-child(even)::before {
    left: -10px;
    right: auto;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--tgn-white) transparent transparent;
  }
}


/* Feature Cards Default Style */
.single-featuer {
  margin-bottom: 30px; /* Ensure 30px gap matches horizontal gutter */
  height: auto; /* Allow height to fit content + margin, unless flex stretches it */
  position: relative;
  background: var(--tgn-white);
  border: 1px solid var(--tgn-border);
  border-radius: 16px;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* About Us - Override Inline Blue/Pink/Yellow Gradients on Hover */
/* Use generic .icon-box class added to PHP templates */
.single-featuer:hover .icon-box {
  background: transparent !important; /* Remove background circle */
  box-shadow: none !important;
  border: 1px solid rgba(255,255,255,0.3); /* Optional: subtle border */
  position: relative !important;
  z-index: 20 !important; /* Ensure generic icon-box is above overlay */
}

.single-featuer:hover i {
  color: #ffffff !important; /* Force White icon globally */
  position: relative !important;
  z-index: 20 !important; /* Ensure visibility above overlay */
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ── 21. HORIZONTAL TALENT CARD ── */
.talent-card-horizontal {
  display: flex;
  flex-direction: row;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.talent-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.talent-card-horizontal .image-box {
  width: 350px; /* Fixed width for image on desktop */
  flex-shrink: 0;
  position: relative;
  background: #f0f0f0;
  min-height: 300px;
}

.talent-card-horizontal .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}

.talent-card-horizontal .content-box {
  flex: 1; /* Take remaining space */
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991px) {
  .talent-card-horizontal {
    flex-direction: column;
  }
  .talent-card-horizontal .image-box {
    width: 100%;
    height: 300px;
  }
  .talent-card-horizontal .content-box {
    padding: 30px;
  }
}

.inner-cursor, 
.outer-cursor {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Restore default cursor interactions */
* {
  cursor: auto !important;
}

a:hover, button:hover, .btn:hover {
  cursor: pointer !important;
}
.form-group label {
  color: var(--tgn-navy);
  font-weight: 600;
}

.form-control {
  border: 1px solid var(--tgn-border);
  border-radius: 8px;
  padding: 12px 15px;
}

.form-control:focus {
  border-color: var(--tgn-orange);
  box-shadow: 0 0 0 3px rgba(232,132,74,0.1);
}

/* Equal Height via Min-Height */
.newcard {
  min-height: 420px; /* Needs more space for video */
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

.single-testimonial {
  min-height: 280px; /* Smaller than events */
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

/* Ensure Testimonial spacing (Horizontal) */
.single-testimonial {
  margin: 0 15px 30px 15px;
}

/* Ensure video is visible */
.newcard video, .newcard .card-video {
  width: 100%;
  height: auto;
  display: block;
}
/* Breadcrumbs Spacing Override */
.breadcrumbs {
  padding-top: 200px !important; /* Kept original as requested */
  padding-bottom: 60px !important; /* Reduced from 100px to 20px */
}
/* Custom Hero for Talent TGN */
/* Custom Hero for Talent TGN */
#talent-hero {
  min-height: 40vh !important; /* Reduced from 100vh / auto - a modest fixed height */
  display: flex !important; /* Re-enable flex for vertical centering */
  align-items: center !important;
  justify-content: center !important;
  padding: 60px 0 60px !important; /* Symmetrical padding, but less huge */
}

#talent-hero .hero-content {
  text-align: center;
  padding: -1px 20px !important; /* Reset inside padding */
  display: block; 
  margin-bottom: 0px !important;
  width: 100%; /* Ensure content block is full-width for centering */
}

#talent-hero .hero-content p {
  margin-bottom: 20px !important; /* Small but visible gap for spacing above buttons */
}

/* Exclusive Content Heading Fix */
#exclusive-content .section-title h2 {
  color: #fff !important;
}
