/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
   :root {
    /* Primary green palette */
    --primary-color:        #7ecc30;
    --primary-color-hover:  #6bb82a;
    --primary-bg:           #4f8f1f;   /* dark green — used for solid backgrounds, text accents */
    --primary-dark:         #4f8f1f;
    --primary-light:        #e8f7d8;
    --primary-mid:          #cdebb0;
    --primary-surface:      #f3faea;   /* very light green tint for section backgrounds */
  
    /* Secondary / accent */
    --secondary-color:      #f59e0b;
  
    /* Surfaces */
    --surface:              #ffffff;
    --surface-2:            #f6fbf0;   /* light green-tinted surface */
    --surface-3:            #eef7e4;   /* slightly deeper green-tinted surface */
  
    /* Text */
    --text-main:            #0f1a08;
    --text-body:            #3d4d2e;
    --text-muted:           #7a8f6a;
  
    /* Cards */
    --card-border:          rgba(78, 143, 31, 0.15);
    --card-shadow:          rgba(78, 143, 31, 0.10);
  
    /* Success */
    --success:              #22c55e;
  }
  
  
  /* ============================================================
     BASE & RESET
     ============================================================ */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    font-family: sans-serif;
    background: var(--surface);
    color: var(--text-main);
    overflow-x: hidden;
  }
  
  
  /* ============================================================
     TYPOGRAPHY UTILITIES
     ============================================================ */
  .text-primary   { color: var(--primary-color) !important; }
  .text-secondary { color: var(--secondary-color) !important; }
  
  .section-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
  }
  
  .section-headline {
    font-family: sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 0.75rem;
  }
  
  .section-sub {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .section-title {
    font-weight: 700;
    font-size: 32px;
    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;
  }
  
  .section-subtitle {
    color: var(--text-muted);
    font-size: 15px;
  }
  
  .gradient-with-stroke {
    background: linear-gradient(90deg, #f59e0b, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
  }
  
  
  /* ============================================================
     BACKGROUND UTILITIES
     ============================================================ */
  .bg-primary   { background-color: var(--primary-bg) !important; color: #fff; }
  .bg-secondary { background-color: var(--secondary-color) !important; }
  
  .hover-primary { transition: color 0.3s ease; }
  .hover-primary:hover { color: var(--primary-color) !important; }
  
  
  /* ============================================================
     BUTTONS
     ============================================================ */
  
  /* Bootstrap .btn-primary override */
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-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;
  }
  
  /* Solid dark-green button */
  .btn-primary-main {
    background: var(--primary-bg);
    border: none;
    color: #fff;
    font-family: sans-serif;
    font-weight: 700;
    padding: 0.85rem 2.4rem;
    border-radius: 6px;
    letter-spacing: 0.04em;
    transition: all 0.25s ease;
  }
  .btn-primary-main:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(78, 143, 31, 0.30);
  }
  
  /* Outline primary button */
  .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/amber button */
  .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: #e08e00;
    border-color: #e08e00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  }
  
  /* About section CTA */
  .btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    color: var(--primary-bg);
    text-decoration: none;
    padding: 0.75rem 1.8rem;
    border: 1.5px solid rgba(78, 143, 31, 0.35);
    border-radius: 6px;
    transition: all 0.25s ease;
  }
  .btn-about:hover {
    background: var(--primary-bg);
    color: #fff;
    border-color: var(--primary-bg);
    box-shadow: 0 8px 24px rgba(78, 143, 31, 0.25);
  }
  
  /* Blog "Read More" link */
  .btn-blog {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-bg);
    text-decoration: none;
    margin-top: 1.2rem;
    letter-spacing: 0.04em;
    transition: gap 0.2s ease, color 0.2s ease;
  }
  .btn-blog:hover {
    color: var(--secondary-color);
    gap: 10px;
  }
  
  /* Pricing buttons */
  .btn-pricing {
    display: block;
    text-align: center;
    padding: 0.8rem;
    border-radius: 6px;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    transition: all 0.25s ease;
    text-decoration: none;
    margin-top: auto;
  }
  .btn-pricing-outline {
    border: 1.5px solid rgba(78, 143, 31, 0.35);
    color: var(--primary-bg);
    background: transparent;
  }
  .btn-pricing-outline:hover {
    background: var(--primary-light);
    color: var(--primary-bg);
    border-color: var(--primary-bg);
  }
  .btn-pricing-solid {
    background: var(--primary-bg);
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(78, 143, 31, 0.28);
  }
  .btn-pricing-solid:hover {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 10px 28px rgba(78, 143, 31, 0.38);
  }
  
  /* Hero CTA */
  .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: #fff;
    font-family: sans-serif;
    font-weight: 700;
    padding: 1rem 2.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
  }
  .btn-cta:hover {
    background: #fff;
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 255, 255, 0.2);
  }
  
  
  /* ============================================================
     NAVBAR
     ============================================================ */
  #mainNav {
    background-color: transparent !important;
    padding: 1rem 0;
    z-index: 1030;
    transition: all 0.3s ease;
  }
  
  .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-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));
  }
  
  #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);
  }
  #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;
  }
  
  
  /* ============================================================
     HERO SLIDER
     ============================================================ */
  .slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
  }
  
  .slider-bg,
  .slider-fade-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.06);
    filter: brightness(0.5);
  }
  .slider-bg.active,
  .slider-fade-layer.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
  }
  
  /* Green gradient overlay */
  .slider-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(79, 143, 31, 0.72) 0%,
      rgba(55, 105, 15, 0.52) 50%,
      rgba(0, 0, 0, 0.42) 100%
    );
  }
  
  .slider-content {
    position: absolute;
    inset: 0;
    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;
  }
  
  .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 pill */
  .slider-tagline {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--secondary-color);
    padding: 6px 20px;
    border: 1px solid rgba(245, 158, 11, 0.5);
    border-radius: 999px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    background: rgba(245, 158, 11, 0.08);
  }
  
  .slider-title {
    font-family: sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 0, 0, 0.6);
  }
  
  .slide-content .lead {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    max-width: 520px;
    margin: 0 auto 2rem;
  }
  
  .slide-content .btn-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    font-family: sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.85rem 2.6rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.35);
  }
  .slide-content .btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--primary-bg);
    box-shadow: 0 12px 36px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
  }
  
  #services-rotator {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    margin-top: 0.5rem;
    display: inline-block;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-down { opacity: 0; transform: translateY(20px); }
  
  .slider-prev,
  .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.25s ease;
    font-size: 1rem;
  }
  .slider-prev { left: 28px; }
  .slider-next { right: 28px; }
  .slider-prev:hover,
  .slider-next:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
  }
  
  .scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.65;
  }
  .scroll-hint span {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
  }
  .scroll-hint-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  
  .single_slider {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  @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; }
  }
  
  
  /* ============================================================
      ANIMATIONS
     ============================================================ */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.2); }
  }
  
  @keyframes scrollInfinite {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  
  .animate-fade {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.75s ease forwards;
    animation-delay: var(--delay, 0s);
  }
  .slide-content:not(.d-none) .animate-fade {
    opacity: 0;
    animation: fadeUp 0.75s forwards;
  }
  
  .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; }
  
  
  /* ============================================================
     SERVICE CARDS
     ============================================================ */
  .home-services {
    padding: 6rem 0;
    background: var(--surface);
  }
  
  .service-card {
    background: var(--surface);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .service-card:hover {
    border-color: rgba(78, 143, 31, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--card-shadow);
  }
  .service-card:hover::before { opacity: 1; }
  
  .icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    color: var(--primary-bg);
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .service-card:hover .icon-wrapper {
    background: var(--primary-mid);
    transform: scale(1.1) rotate(3deg);
  }
  
  .service-card .badge.bg-primary {
    background: var(--primary-light) !important;
    color: var(--primary-bg);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(78, 143, 31, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
  }
  
  .service-title {
    font-family: sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.65rem;
  }
  
  .service-desc {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.7;
    flex-grow: 1;
  }
  
  .service-card ul.list-unstyled li {
    font-size: 0.82rem;
    color: var(--text-body);
    margin-bottom: 0.3rem;
  }
  .service-card ul.list-unstyled li i { color: var(--primary-color); }
  
  .service-card .btn-outline-danger {
    border-color: rgba(78, 143, 31, 0.3);
    color: var(--primary-bg);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 6px;
    padding: 6px 16px;
    transition: all 0.25s ease;
    align-self: flex-start;
  }
  .service-card .btn-outline-danger:hover {
    background: var(--primary-bg);
    border-color: var(--primary-bg);
    color: #fff;
  }
  
  .service-overlay {
    position: absolute;
    bottom: -40px;
    right: -40px;
    font-size: 90px;
    color: rgba(78, 143, 31, 0.05);
    transition: 0.4s ease;
    pointer-events: none;
  }
  .service-card:hover .service-overlay {
    bottom: -15px;
    right: -10px;
  }
  
  
  /* ============================================================
      PRICING SECTION
     ============================================================ */
  .pricing-section {
    padding: 6rem 0;
    background: var(--surface-2);
    position: relative;
    overflow: hidden;
  }
  .pricing-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 143, 31, 0.07) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    pointer-events: none;
  }
  
  .pricing-card {
    background: var(--surface);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  }
  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(78, 143, 31, 0.14);
    border-color: rgba(78, 143, 31, 0.25);
  }
  .pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: var(--surface);
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(78, 143, 31, 0.18);
  }
  .pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
  }
  
  .pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  }
  
  .pricing-name {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 4px;
  }
  .pricing-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }
  .pricing-amount {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 1.75rem;
  }
  .pricing-amount .price {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-bg);
    line-height: 1;
  }
  .pricing-amount .cycle {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-bottom: 6px;
  }
  .pricing-divider {
    border-color: var(--card-border);
    margin-bottom: 1.5rem;
  }
  .pricing-features li {
    font-size: 0.88rem;
    color: var(--text-body);
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .pricing-features li i {
    color: var(--success);
    font-size: 0.8rem;
    flex-shrink: 0;
  }
  
  
  /* ============================================================
      ABOUT SECTIONS
     ============================================================ */
  .about-preview-section {
    padding: 6rem 0;
    background: var(--surface);
    position: relative;
  }
  .about-preview-section::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 40%;
    background: radial-gradient(ellipse at right, rgba(78, 143, 31, 0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .about-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
  }
  .about-label-line {
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
  }
  
  .about-body {
    font-weight: 400;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }
  
  .about-img-wrap {
    position: relative;
  }
  .about-img-wrap img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
  }
  .about-img-wrap::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 2px solid rgba(78, 143, 31, 0.15);
    border-radius: 22px;
    pointer-events: none;
    z-index: -1;
  }
  .about-stat-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--surface);
    border: 1.5px solid rgba(78, 143, 31, 0.15);
    border-radius: 14px;
    padding: 1.2rem 1.6rem;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 16px 40px rgba(78, 143, 31, 0.12);
  }
  .stat-num {
    font-family: sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary-bg);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
  }
  
  .about-section {
    background-color: #f8f9fa;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .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: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  .section_title a.read-more:hover {
    text-decoration: underline;
    color: var(--primary-dark);
  }
  
  .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-section .about-img-wrapper { max-width: 250px; margin: 0 auto; }
  .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-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; }
  }
  
  
  /* ============================================================
      BLOG & EVENT CARDS
     ============================================================ */
  .blog-section {
    padding: 6rem 0;
    background: var(--surface-3);
  }
  
  .blog-card {
    background: var(--surface);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  }
  .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(78, 143, 31, 0.12);
    border-color: rgba(78, 143, 31, 0.25);
  }
  
  .blog-img-wrap {
    overflow: hidden;
    height: 200px;
    flex-shrink: 0;
  }
  .blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
  
  .blog-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-bg);
    font-size: 2rem;
    opacity: 0.5;
  }
  
  .blog-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .blog-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.65rem;
  }
  .blog-title {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 0.6rem;
    line-height: 1.4;
  }
  .blog-excerpt {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.7;
    flex-grow: 1;
  }
  
  .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, var(--secondary-color), #e08e00);
    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; }
  
  
  /* ============================================================
      CTA SECTION
     ============================================================ */
  .cta-section {
    padding: 7rem 0;
    background: var(--primary-bg);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right,   rgba(245, 158, 11, 0.2)  0%, transparent 60%),
                radial-gradient(ellipse at bottom left, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta-tag {
    display: inline-block;
    border: 1px solid rgba(245, 158, 11, 0.55);
    color: var(--secondary-color);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
  }
  .cta-headline {
    font-family: sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }
  .cta-headline span { color: var(--secondary-color); }
  .cta-body {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  
  
  /* ============================================================
      BRAND LOGO 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);
  }
  
  
  /* ============================================================
     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;
    inset: 0;
    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);
  }
  
  
  /* ============================================================
      CONTACT AREA
     ============================================================ */
  .contact-area .card        { border-radius: 12px; }
  .contact-area .form-control { border-radius: 8px; }
  .contact-area i            { width: 24px; text-align: center; }
  
  
  /* ============================================================
      FOOTER
     ============================================================ */
  footer {
    background-color: #f8f9fa;
    color: #212529;
    padding: 4rem 0 2rem;
    font-family: 'DM Sans', 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: var(--primary-color); 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: var(--primary-color); transform: translateX(5px); }
  
  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: #000; }
  
  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: var(--primary-color); 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: var(--primary-color); }
  
  @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; }
  }