/* ============================================
   CSS VARIABLES - SINGLE DEFINITION
   ============================================ */
:root {
    --primary-color: #0024FF;        
    --primary-color-hover: hsl(232, 88%, 54%);   
    --secondary-color: #ffc002;     
    --primary-bg: #0024ff;           
  }

.hover-primary {
    transition: color 0.3s ease;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}
  
  /* ============================================
     UTILITY CLASSES
     ============================================ */
  
  /* Text Colors */
  .text-primary {
    color: var(--primary-color) !important;
  }
  
  /* Background Colors */
  .bg-primary {
    background-color: var(--primary-bg) !important;
    color: #fff;
  }
  .bg-secondary{
    background-color: var(--secondary-color);
  }
  
  /* ============================================
     BUTTONS
     ============================================ */
  .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  
  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary:active {
    background-color: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
    color: #fff;
  }
  
  /* ============================================
     NAVBAR STYLES
     ============================================ */
  
  /* Initial transparent navbar */
  #mainNav {
    background-color: transparent !important;
    padding: 1rem 0;
    z-index: 1030;
    transition: all 0.3s ease;
  }
  
  /* Glow effect for logo and links on transparent nav */
  .glow-text,
  .glow-logo {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    color: #ffffff;
    transition: all 0.3s ease;
  }
  
  .nav-link.glow-text:hover {
    text-shadow: 0 0 12px rgba(255, 255, 255, 1);
  }
  
  /* Navbar when scrolled (solid white) */
  #mainNav.navbar-shrink,
  #mainNav.navbar-solid {
    background-color: #ffffff !important;
    padding: 0.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Remove glow and switch to dark text on scroll */
  #mainNav.navbar-shrink .glow-text,
  #mainNav.navbar-shrink .glow-logo,
  #mainNav.navbar-solid .glow-text,
  #mainNav.navbar-solid .glow-logo {
    text-shadow: none;
    color: #000 !important;
  }
  
  /* White glow for logo image */
  .navbar-brand img.glow-logo {
    filter: drop-shadow(0 0 12px white) 
            drop-shadow(0 0 24px white)
            drop-shadow(0 0 38px white) 
            drop-shadow(0 0 55px rgba(255, 255, 255, 0.8));
    transition: 0.3s ease;
  }
  
  .navbar-brand img.glow-logo:hover {
    filter: drop-shadow(0 0 18px white) 
            drop-shadow(0 0 32px white)
            drop-shadow(0 0 50px white) 
            drop-shadow(0 0 70px rgba(255, 255, 255, 1));
  }
  
  /* ============================================
     HERO SLIDER
     ============================================ */
  
  .slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .single_slider {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  /* Background layers */
  .slider-bg,
  .slider-fade-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
  }
  
  .slider-bg.active,
  .slider-fade-layer.active {
    opacity: 1;
  }
  
  /* Content on top */
  .slider-content {
    position: relative;
    z-index: 20;
    height: 100%;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
  }
  
  .slider-content .text-center {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
  }
  
  /* Text wrapper with dark translucent background */
  .slider-text-wrapper {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 3rem;
    border-radius: 12px;
    display: inline-block;
    text-align: center;
    max-width: 700px;
  }
  
  .slider-text-wrapper span,
  .slider-text-wrapper h3,
  .slider-text-wrapper p,
  .slider-content .text-center span,
  .slider-content .text-center h3,
  .slider-content .text-center p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 600;
  }
  
  .slider-text-wrapper span {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  
  .slider-text-wrapper h3,
  .slider-content .text-center h3 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
  }
  
  .slider-text-wrapper p,
  .slider-content .text-center p {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }
  
  /* Tagline styling */
  .slider-tagline {
    display: block;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    color: #ffd700;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.85;
  }
  
  /* Main title */
  .slider-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.6);
  }
  
  /* Rotating services text */
  #services-rotator {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-top: 0.5rem;
    display: inline-block;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-down {
    opacity: 0;
    transform: translateY(20px);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
  }
  
  /* Staggered animation delays */
  .animate-fade[data-delay="0.2s"] { animation-delay: 0.2s; }
  .animate-fade[data-delay="0.5s"] { animation-delay: 0.5s; }
  .animate-fade[data-delay="0.8s"] { animation-delay: 0.8s; }
  
  .slider-content .animate-fade:nth-child(1) { animation-delay: 0.2s; }
  .slider-content .animate-fade:nth-child(2) { animation-delay: 0.5s; }
  .slider-content .animate-fade:nth-child(3) { animation-delay: 0.8s; }
  
  /* Responsive slider */
  @media (max-width: 992px) {
    .slider-title,
    .slider-content .text-center h3 {
      font-size: 2rem;
    }
    
    .slider-tagline {
      font-size: 1.1rem;
    }
    
    #services-rotator {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 576px) {
    .slider-title,
    .slider-content .text-center h3 {
      font-size: 1.5rem;
    }
    
    .slider-tagline {
      font-size: 1rem;
    }
    
    #services-rotator {
      font-size: 1rem;
    }
  }
  
  /* ============================================
     SERVICE CARDS
     ============================================ */
  .home-services {
    background: #f8f9fc;
  }
  
  .section-title {
    font-weight: 700;
    font-size: 32px;
  }
  
  .section-subtitle {
    color: #666;
    font-size: 15px;
  }
  
  .service-card {
    position: relative;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .icon-wrapper {
    font-size: 45px;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #f59e0b, #f59e0b);
    color: #fff;
    border-radius: 20px;
    transition: 0.3s ease;
  }
  
  .service-card:hover .icon-wrapper {
    transform: scale(1.15) rotate(5deg);
  }
  
  .service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .service-desc {
    font-size: 14px;
    color: #666;
  }
  
  .service-overlay {
    position: absolute;
    bottom: -40px;
    right: -40px;
    font-size: 90px;
    color: rgba(0, 0, 0, 0.03);
    transition: 0.4s ease;
  }
  
  .service-card:hover .service-overlay {
    bottom: -15px;
    right: -10px;
    color: rgba(0, 0, 0, 0.05);
  }
  
  /* ============================================
     ABOUT SECTIONS
     ============================================ */
  .performar_area {
    background-color: #fdfdfd;
    padding: 5rem 0;
  }
  
  .section_title h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
  }
  
  .section_title p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
  }
  
  .section_title a.read-more {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #0d6efd;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .section_title a.read-more:hover {
    text-decoration: underline;
    color: #0056b3;
  }
  
  .single_performer {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
  }
  
  .single_performer img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }
  
  .single_performer:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  
  .single_performer:hover img {
    transform: scale(1.1);
  }
  
  /* About preview section */
  .about-preview-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  
  .about-text {
    flex: 1 1 60%;
    min-width: 200px;
    line-height: 1.6;
  }
  
  .about-img-wrapper {
    flex: 0 0 auto;
    max-width: 180px;
  }
  
  .about-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.15);
  }
  
  .about-section {
    background-color: #f8f9fa;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .about-section .about-img-wrapper {
    max-width: 250px;
    margin: 0 auto;
  }
  
  .about-img {
    width: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
  
  .about-img:hover {
    transform: translateY(-5px) scale(1.05);
  }
  
  @media (max-width: 991px) {
    .about-section .col-lg-5 {
      order: -1;
    }
    
    .about-section .text-center.text-lg-start {
      text-align: center !important;
    }
  }
  
  /* ============================================
     BRAND SLIDER
     ============================================ */
  .brand-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
  }
  
  .brand-track {
    display: flex;
    width: max-content;
    gap: 60px;
    animation: scrollInfinite 20s linear infinite;
  }
  
  .brand-logo {
    height: 70px;
    object-fit: contain;
    transition: 0.3s;
  }
  
  .brand-logo:hover {
    opacity: 1;
    transform: scale(1.1);
  }
  
  @keyframes scrollInfinite {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  
  /* ============================================
     BLOG & EVENT CARDS
     ============================================ */
  .event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  }
  
  .event-image-wrapper img {
    height: 220px;
    object-fit: cover;
  }
  
  .event-date-overlay {
    position: absolute;
    bottom: -14px;
    left: 16px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
  }
  
  .event-card .bg-light {
    padding-top: 24px;
  }
  
  .blog-item img {
    display: block;
    object-fit: cover;
  }
  
  .blog-content h6 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }
  
  /* ============================================
     CONTACT AREA
     ============================================ */
  .contact-area .card {
    border-radius: 12px;
  }
  
  .contact-area .form-control {
    border-radius: 8px;
  }
  
  .contact-area i {
    width: 24px;
    text-align: center;
  }
  
  /* ============================================
     PAGE TITLE / BANNER
     ============================================ */
  .page-title {
    position: relative;
    overflow: hidden;
    height: 35vh;
    padding-top: 140px;
    padding-bottom: 60px;
  }
  
  .page-title .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 1;
  }
  
  .page-title .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
  }
  
  .page-title .container {
    position: relative;
    z-index: 3;
  }
  
  .page-title h2 {
    text-shadow: 0 0 5px rgba(255, 255, 255, 1), 
                 0 0 30px rgba(255, 255, 255, 0.9),
                 0 0 60px rgba(255, 255, 255, 0.9), 
                 0 0 90px rgba(255, 255, 255, 0.9),
                 0 0 120px rgba(255, 255, 255, 0.9), 
                 0 0 180px rgba(255, 255, 255, 0.9);
  }
  
  .gradient-with-stroke {
    background: linear-gradient(90deg, #f59e0b, #ebc107);
    -webkit-background-clip: text;
    color:linear-gradient(90deg, #f59e0b, #ebc107);
    -webkit-text-stroke: 2px linear-gradient(90deg, #f59e0b, #ebc107);
    font-weight: 900;
  }
  
  /* ============================================
     FOOTER
     ============================================ */
  footer {
    background-color: #f8f9fa;
    color: #212529;
    padding: 4rem 0 2rem;
    font-family: "Poppins", sans-serif;
  }
  
  footer .col-lg-3 img {
    max-width: 150px;
    margin-bottom: 1rem;
  }
  
  footer p.small {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  footer h5,
  footer h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
  }
  
  footer ul {
    padding: 0;
    list-style: none;
  }
  
  footer ul li a {
    color: #212529;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  footer ul li a:hover {
    color: #0d6efd;
    text-decoration: underline;
  }
  
  footer .col-lg-2 a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #212529;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  footer .col-lg-2 a:hover {
    color: #0d6efd;
    transform: translateX(5px);
  }
  
  /* Social brand colors */
  footer .col-lg-2 a:hover i.fa-facebook-square { color: #1877f2; }
  footer .col-lg-2 a:hover i.fa-instagram { color: #e1306c; }
  footer .col-lg-2 a:hover i.fa-twitter { color: #1da1f2; }
  footer .col-lg-2 a:hover i.fa-linkedin { color: #0077b5; }
  footer .col-lg-2 a:hover i.fa-music { color: #000000; }
  
  footer .mt-3 a {
    color: #212529;
    margin-right: 0.7rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  
  footer .mt-3 a:hover {
    color: #0d6efd;
    transform: translateY(-3px);
  }
  
  footer .text-muted {
    font-size: 0.85rem;
    margin-top: 2rem;
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
  }
  
  footer .text-muted a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
  }
  
  footer .text-muted a:hover {
    color: #0d6efd;
  }
  
  @media (max-width: 992px) {
    footer .text-center.text-lg-start {
      text-align: center !important;
      margin-bottom: 2rem;
    }
  
    footer .mt-3 a {
      margin-right: 0.5rem;
    }
  }


  /* ============================================
   THEME BUTTON VARIANTS
   ============================================ */

/* Outline theme button (green border) */
.btn-outline-theme {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-theme:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* Secondary theme button (yellow) */
.btn-secondary-theme {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #212529;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary-theme:hover {
  background-color: #e6ac00;
  border-color: #e6ac00;
  color: #212529;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 192, 2, 0.4);
}

/* ============================================
 SECTION TITLE STYLING
 ============================================ */

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.section-title.text-start::after {
  margin: 0.5rem 0 0;
}