  /* --- Global & Typography Rules --- */
    a {
      color: #666;
      transition: color 0.3s ease;
    }
    a:hover {
      color: #FBAB18;
    }

  /* Custom Client Section Styling */
.clients-section {
  background: linear-gradient(135deg, #0e1117 0%, #161b22 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-img {
  max-width: 65px;
  filter: drop-shadow(0px 4px 10px rgba(253, 133, 34, 0.3));
}

.sub-heading {
  color: #FD8623;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
}

.main-heading {
  color: #ffffff;
  font-family: 'Alfa Slab One', serif;
  font-size: 32px;
  line-height: 1.25;
}

.section-desc {
  color: #a0a6b2;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}




/* --- Ticker Track & Motion --- */
.ticker-wrap {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    padding: 30px 0 !important;
    background: transparent !important;
    display: block !important;
}

.ticker-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    -webkit-animation: infiniteScroll 85s linear infinite !important;
    animation: infiniteScroll 85s linear infinite !important;
}

/* Pause track motion on hover */
.ticker-track:hover {
    /*-webkit-animation-play-state: paused !important;*/
    /*animation-play-state: paused !important;*/
}

/* Force items NOT to shrink and stay inline */
.logo-card {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin-right: 25px !important; 
    position: relative !important;
    width: 220px !important; 
    height: 110px !important;
    padding: 2px !important; 
    border-radius: 12px !important;
    background: #f8f9fa !important; 
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease !important;
    cursor: pointer !important;
}

.card-inner {
    width: 100% !important;
    height: 100% !important;
    background: #ffffff !important;
    border-radius: 10px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0px !important;
    transition: background 0.4s ease !important;
}

.client-logo {
    max-width: 85% !important;
    max-height: 70% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    transition: all 0.7s ease !important;
}

/* --- Gradient Hover Interaction --- */
.logo-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
    background: linear-gradient(135deg, #FF8C00 0%, #FFB703 50%, #8E2DE2 100%) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25) !important;
}

.logo-card:hover .client-logo {
    transform: scale(1.05) !important;
}

/* --- KEYFRAMES (No !important allowed inside keyframe steps) --- */
@-webkit-keyframes infiniteScroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@keyframes infiniteScroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

/* --- Enhanced Clients Section with Cinematic Overlay --- */
.clients-section {
    position: relative !important;
    overflow: hidden !important;
    padding: 80px 0 !important;
    
    /* 1. The Setup: Gradient overlay layer sits on top, background image sits underneath */
    background: 
        linear-gradient(180deg, rgba(17, 24, 39, 0.65) 0%, rgba(10, 15, 26, 0.85) 50%, rgba(17, 24, 39, 0.95) 100%),
        url('images/bg-wayno.jpg') !important; /* Reuses your existing pattern image asset */
        
    /* 2. Controls how the image behaves background-wise */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important; /* Creates a cool subtle parallax effect when scrolling past */
}

/* Subtle styling touch to make the section description text pop over the new background texture */
.section-desc {
    color: #a3a3a3 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}



/* --- PREMIUM HERO GRID SECTION REFACTOR --- */

/* Sub-header label */
.hero-subtext {
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 4px !important;
    color: #FD8623 !important; /* Beautiful branding orange signature accent */
    text-transform: uppercase !important;
    display: block !important;
    margin-bottom: 12px !important;
}

/* Master Typography Headline Style */
.hero-main-title {
    font-family: 'Barlow', sans-serif !important;
    font-size: 56px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -1.5px !important;
    color: #111111 !important;
    margin-bottom: 24px !important;
}

/* Clean, balanced body description block */
.hero-lead-paragraph {
    font-family: 'Barlow', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.75 !important;
    color: #555555 !important;
    max-width: 540px !important;
    margin-bottom: 35px !important;
}

/* Flex layout spacing for the buttons */
.hero-action-group {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
    flex-wrap: wrap !important;
}

/* Solid Book Us button layout reset */
.btn-premium-cta {
    background: #10665D !important;
    color: #ffffff !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 16px 38px !important;
    border-radius: 30px !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(16, 102, 93, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-block !important;
}

.btn-premium-cta:hover {
    background: #148776 !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(16, 102, 93, 0.4) !important;
}

/* Minimalist Inline Video Play Trigger */
.btn-play-link {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    gap: 12px !important;
    transition: all 0.3s ease !important;
}

.play-icon-trigger {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FD8623 !important;
    font-size: 12px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease !important;
    padding-left: 3px !important; /* Visual optical center adjustment for icon alignment */
}

.play-text {
    font-family: 'Barlow', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    color: #111111 !important;
    transition: color 0.3s ease !important;
}

/* Play link element hover behaviors */
.btn-play-link:hover .play-icon-trigger {
    background: #FD8623 !important;
    color: #ffffff !important;
    transform: scale(1.08) !important;
    box-shadow: 0 10px 25px rgba(253, 134, 35, 0.3) !important;
}

.btn-play-link:hover .play-text {
    color: #FD8623 !important;
}

/* Responsiveness adjustments for smaller screens */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 38px !important;
    }
    .hero-action-group {
        gap: 15px !important;
    }
}



/* Card Styling */
.custom-card {
    background: #f4f4f2;
    border: none;
    border-radius: 12px;
    border-top: 4px solid #f5a623; /* Matching your top highlight color */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

/* First card accent (keeping photo style without top border accent if preferred) */
.custom-card.profile-card {
    border-top: none;
}

/* Smooth Lift Hover Effect */
.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* Icon Container Styling */
.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(245, 166, 35, 0.15); /* Soft background circle matching branding */
    color: #0b5d51; /* Dark teal accent from your theme */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.custom-card:hover .icon-wrapper {
    background-color: #0b5d51;
    color: #ffffff;
}

/* Typography Enhancements */
.card-subtitle-accent {
    color: #f5a623;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-title-main {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.card-text-body {
    color: #666666;
    font-size: 0.92rem;
    line-height: 1.6;
}



.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-heading {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    color: #f5a623;
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
}

.intro-lead {
    font-size: 1.15rem;
    color: #555555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 35px auto;
}

/* Three Nouns Badges */
.noun-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0b5d51; /* Deep teal theme color */
    background-color: rgba(11, 93, 81, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    margin: 5px 8px;
    transition: all 0.3s ease;
}

.noun-badge:hover {
    background-color: #0b5d51;
    color: #ffffff;
    transform: translateY(-2px);
}



.site-footer {
    background-color: #0b0c10; /* Clean dark theme */
    color: #a9a9a9;
    padding: 60px 0 30px 0;
    font-size: 0.9rem;
    position: relative;
}

.footer-heading {
    font-family: 'Cinzel', serif;
    color: #f5a623; /* Your signature orange */
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-text {
    line-height: 1.6;
}

/* Social Links Styles */
.footer-social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links li {
    margin-bottom: 12px;
}

.footer-social-links a {
    color: #a9a9a9;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-social-links a i {
    width: 24px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.footer-social-links a:hover {
    color: #f5a623;
}

.footer-social-links a:hover i {
    transform: scale(1.15);
}

/* Bottom Bar Utilities */
.footer-bottom-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 40px;
    padding-top: 25px;
}

.footer-legal-links a {
    color: #a9a9a9;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

.credit-link {
    color: #a9a9a9;
    text-decoration: none;
}

.credit-link:hover {
    color: #f5a623;
}

/* Back to Top Smooth Positioning */
.btn-scroll-top {
    background-color: #f5a623;
    color: #ffffff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-scroll-top:hover {
    background-color: #e0941b;
    color: #ffffff;
    transform: translateY(-3px);
}



/* Glassmorphism Logo Cards */
.client-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 16px 20px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

/* Hover Effects */
.client-card:hover {
  transform: translateY(-6px) scale(1.03);
  background: #ffffff;
  border-color: #FD8623;
  box-shadow: 0 12px 25px rgba(253, 133, 34, 0.25), 0 4px 10px rgba(0, 0, 0, 0.3);
}

.client-logo {
  max-height: 55px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.9;
  transition: all 0.35s ease;
}

.client-card:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .main-heading {
    font-size: 24px;
  }
  .client-card {
    height: 75px;
    padding: 10px 14px;
  }
  .client-logo {
    max-height: 42px;
  }
}





/* Section Container Styling */
.connect-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.connect-heading-sub {
    color: #f5a623;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.connect-heading-main {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    color: #111111;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Service Tags Styling */
.service-tag {
    display: inline-block;
    background-color: #f4f4f2;
    color: #444444;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(0,0,0,0.03);
}

/* Custom Primary Buttons */
.btn-theme-teal {
    background-color: #0b5d51;
    color: #ffffff !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.88rem;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(11, 93, 81, 0.15);
}

.btn-theme-teal:hover {
    background-color: #08463d;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(11, 93, 81, 0.25);
}

/* Social & Contact Elements */
.social-icon-btn {
    color: #111111;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.2s ease;
}

.social-icon-btn:hover {
    color: #f5a623;
}

.contact-meta-item {
    font-size: 0.92rem;
    color: #555555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-meta-item i {
    color: #f5a623;
}



/* Premium Portfolio Grid Layout Update */
.premium-portfolio-wrapper {
    background-color: #F8F6F0 !important; /* Forces the warm ivory studio palette */
    border-top: 2px solid #FD8522 !important;
    border-radius: 12px !important;
    padding: 50px 40px !important;
    margin-top: -40px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05) !important;
}

.portfolio-category-title {
    font-family: 'Cinzel', serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 25px !important;
    position: relative !important;
    display: inline-block !important;
}

.premium-img-card {
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.premium-img-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
}

.premium-video-card-frame {
    background: linear-gradient(135deg, #3a3b3c 0%, #1e1f20 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 14px !important;
    padding: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25) !important;
}

/* Luxury Custom Frame for Video Playbacks */
.premium-video-card-frame {
    background: linear-gradient(135deg, #2c2d2e 0%, #18191a 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important; /* Elegant gold stroke */
    border-radius: 14px !important;
    padding: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    position: relative;
    text-align: left;
}

.video-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 6px 12px 6px;
}

.video-brand-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-brand-logo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.video-brand-name {
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500;
    color: #e0e0e0 !important;
}

.video-frame-action-icon {
    color: #8e8e93;
    font-size: 14px;
}

/* Custom Playback Placeholder View */
.video-preview-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
}

.video-preview-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-preview-wrapper:hover img {
    transform: scale(1.03);
}

/* Premium Gold Accent Play Button */
.custom-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 45px;
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 2;
}

.video-preview-wrapper:hover .custom-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

.custom-play-overlay i {
    color: #ffffff;
    font-size: 20px;
}

/* Footer Control UI Alignment */
.video-footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 6px 4px 6px;
    margin-top: 4px;
}

.video-footer-left {
    display: flex;
    gap: 16px;
    color: #8e8e93;
    font-size: 14px;
}

.watch-on-yt-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif !important;
    font-size: 12px !important;
    color: #d4af37 !important; /* Premium Gold link text */
    font-weight: 500;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.watch-on-yt-badge:hover {
    color: #ffffff !important;
}

.watch-on-yt-badge i {
    font-size: 14px;
    color: #ff0000;
}


/* 1. Complete Outer Luxury Gold Frame */
.premium-video-card-frame {
    background: linear-gradient(135deg, #2c2d2e 0%, #18191a 100%) !important;
    border: 1.5px solid #d4af37 !important; /* Elegant gold outer stroke */
    border-radius: 14px !important;
    padding: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), 0 0 12px rgba(212, 175, 55, 0.2) !important;
    position: relative;
    overflow: hidden;
}

/* 2. Top Inner Gold Sheen Trim */
.video-preview-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    border-top: 1px solid rgba(212, 175, 55, 0.7) !important; /* Top edge accent */
}

.video-preview-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-preview-wrapper:hover img {
    transform: scale(1.03);
}

/* 3. Signature Glowing YouTube Red Play Button */
.custom-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 46px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%) !important;
    border-radius: 14px !important; /* Authentic rounded play pill */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.65) !important; /* Soft red play glow */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}

/* Hover: Intensified red glow and subtle scale pulse */
.video-preview-wrapper:hover .custom-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(135deg, #FF1A1A 0%, #E60000 100%) !important;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.95), 0 0 10px rgba(255, 255, 255, 0.3) !important;
}

.custom-play-overlay i {
    color: #ffffff !important;
    font-size: 18px !important;
    margin-left: 3px; /* Visual balance adjustment for the icon */
}

/* 4. Grounded Metallic Gold Bottom Strip */
.premium-video-card-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #aa7c11 0%, #f3e5ab 50%, #d4af37 100%) !important;
    opacity: 0.9;
}




/* 5. Clean Header & Footer UI text */
.video-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 6px 12px 6px;
}

.video-brand-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-brand-name {
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500;
    color: #e0e0e0 !important;
}

.video-footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 6px 4px 6px;
    margin-top: 4px;
}

.video-footer-left {
    display: flex;
    gap: 16px;
    color: #8e8e93;
    font-size: 14px;
}

.watch-on-yt-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif !important;
    font-size: 12px !important;
    color: #d4af37 !important; /* Gold text for branding cohesion */
    font-weight: 500;
    text-decoration: none !important;
}

.watch-on-yt-badge i {
    color: #ff0000;
}

/* Signature Glowing YouTube Red Play Button with Gold Rim */
.custom-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 46px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%) !important;
    border-radius: 14px !important;
    
    /* Elegant gold border matching the outer card theme */
    border: 2.5px solid #d4af37 !important; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.65) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}

/* Keeps the gold border crisp during hover scale */
.video-preview-wrapper:hover .custom-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(135deg, #FF1A1A 0%, #E60000 100%) !important;
    border-color: #f3e5ab !important; /* Slightly brighter gold on hover for a lighting effect */
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.95), 0 0 10px rgba(212, 175, 55, 0.4) !important;
}

/* 1. Refined Footer Bar Layout & Subtle Top Sheen Divider */
.video-footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 6px 6px 6px;
    margin-top: 6px;
    border-top: 1px solid rgba(212, 175, 55, 0.15) !important; /* Gentle gold top separator line */
}

/* 2. Left Control Icons (Share & Clock) Styling */
.video-footer-left {
    display: flex;
    gap: 16px;
}

.video-footer-left i {
    font-size: 16px !important;
    color: #cbd5e1 !important; /* Light silver/white outline tone matching the screenshot */
    cursor: pointer;
    transition: color 0.2s ease;
}

.video-footer-left i:hover {
    color: #d4af37 !important; /* Glow gold on hover */
}

/* 3. Fully Gold "Watch on YouTube" Badge Component */
.watch-on-yt-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #c5a358 !important; /* Elegant, deep gold text color */
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.watch-on-yt-badge:hover {
    color: #f3e5ab !important; /* Slightly brighter gold shine on hover */
}




.watch-on-yt-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important; /* Slightly bolder profile to mimic the official logo look */
    color: #c5a358 !important;
    text-decoration: none !important;
    letter-spacing: 0.3px !important; /* Cleans up readability */
}


/* Portfolio Section Context Fixes */
#portfolio.jumbotron-globe {
    background: #fff !important; /* Rich, deep dark background instead of stark white */
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

/* Luxury Typography Styles */
.portfolio-header-container {
    position: relative;
    z-index: 2;
}

.portfolio-pre-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #cca43b; /* Premium muted gold */
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.portfolio-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000; /* Clean white to contrast with the dark theme */
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

/* Elegant Underline Divider */
.portfolio-gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #cca43b, transparent);
    margin: 0 auto;
}


/* Container for the navbar items */
.navbar-container {
  display: flex;
  align-items: center; /* Vertically centers logo, menu, and button */
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #3b3f45; /* Your dark gray background */
  border-radius: 12px;
  position: relative;
}



/* Navigation links list */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem; /* Creates clean, equal spacing between links */
  list-style: none;
  margin: 0;
  padding: 0;
}




.jumbotron {
  /* Set your background image path */
  background-image: 
    linear-gradient(rgba(238, 245, 248, 0), rgba(238, 245, 248, 0)), /* Semi-transparent light overlay matching your current theme */
    url('images/bg.jpg');

  /* Core responsiveness rules */
  background-size: cover;          /* Ensures image fills the container without distortion */
  background-position: center center; /* Keeps main focal point centered */
  background-repeat: no-repeat;    /* Prevents tiling */
  
  /* Padding adjustment to give breathing space for header and content */
  padding: 160px 0 100px 0;
  position: relative;
  min-height: 100vh;               /* Optional: forces hero section to fill full screen height */
  display: flex;
  align-items: center;
}

/* Adjustments for Mobile Viewports */
@media (max-width: 768px) {
  .jumbotron {
    padding: 130px 0 60px 0;
    min-height: auto;
    /* Shifts focal center slightly on vertical mobile screens if needed */
    background-position: center top; 
  }
}

.hero-subtext {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FD8522; /* High-visibility orange tag accent */
  display: inline-block;
  margin-bottom: 15px;
}

.hero-main-title {
  font-family: "Anton", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #141619;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-lead-paragraph {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
}

.hero-action-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}




/* Premium Call to Actions matching the graphic style */
.btn-premium-cta {
  background-color: #0b6354;
  color: #ffffff !important;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(11, 99, 84, 0.25);
  transition: all 0.3s ease;
}

.btn-premium-cta:hover {
  background-color: #08493e;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 99, 84, 0.35);
}

.btn-play-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
  color: #141619 !important;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.play-icon-trigger {
  width: 45px;
  height: 45px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FD8522;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-play-link:hover .play-icon-trigger {
  transform: scale(1.1);
  color: #e06c12;
}

/* --- Tablet and Desktop Scale Up --- */
@media screen and (min-width: 768px) {
  .hero-main-title {
    font-size: 48px;
  }
}

@media screen and (min-width: 992px) {
  .jumbotron {
    padding: 180px 0 100px 0;
  }
  .hero-main-title {
    font-size: 56px;
    line-height: 1.1;
  }
  .hero-lead-paragraph {
    font-size: 16px;
  }
}



/* Force top alignment so paragraph sits right below heading */
footer.site-footer .row {
    align-items: flex-start !important;
}

footer.site-footer .col-md-5,
footer.site-footer .col-md-4 {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    height: auto !important;
}

/* Fix spacing directly under the left heading */
footer.site-footer .footer-heading {
    margin-bottom: 12px !important;
    padding-bottom: 0 !important;
    font-family: 'Cinzel', sans-serif !important; /* Force matching font */
}

footer.site-footer .footer-text {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Fix bottom row alignment & pull 'TOP' inside container */
.footer-bottom-divider {
    position: relative;
}

.btn-scroll-top {
    position: relative !important;
    right: 0 !important;
    top: 0 !important;
}



/* Mobile Responsive Adjustments (Screens 768px and below) */
@media (max-width: 768px) {
    .hero-section {
        height: auto !important; /* Prevents text from overflowing a locked height */
        padding-top: 60px;
        padding-bottom: 40px;
        min-height: 100vh; /* Ensures it still takes up the screen but can grow if needed */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-section h1 {
        font-size: 2rem !important; /* Scales down the massive headline */
        line-height: 1.2 !important;
        margin-bottom: 15px;
    }

    .hero-section p {
        font-size: 0.95rem !important; /* Slightly reduces body text to save vertical space */
        line-height: 1.5 !important;
        margin-bottom: 25px;
    }

    /* Target your button wrapper to ensure they stay stacked or properly spaced */
    .hero-btn-container {
        display: flex;
        flex-direction: column; /* Stacks buttons vertically on mobile if they are wide */
        gap: 12px;
        width: 100%;
    }
    
    .hero-btn-container .btn {
        width: 100%; /* Makes buttons full width on mobile for easier tapping */
        text-align: center;
    }
}






    /* --- Small Screen Layouts --- */
    .jumbotron-welcome h1 {
      font-size: 30px;
      padding: 30px 30px 0px 30px;
    }
    .jumbotron-welcome p {
      font-size: 16px;
      padding: 10px 30px 0px 30px;
    }
    .jumbotron h1 {
      animation-delay: .3s; 
      font-family: 'Raleway', sans-serif; 
      font-size: 18px; 
      font-weight: 600; 
      color: #FBAB17; 
      line-height: 13px;
    }
    .jumbotron h2 {
      font-family: 'Cinzel', serif; 
      font-size: 25px; 
      color: #000; 
      line-height: 35px;
      -webkit-text-stroke-width: 1px;
      -webkit-text-stroke-color: #FFF;
    }
    .jumbotron h3 {
      font-family: "Anton", sans-serif; 
      font-size: 35px; 
      color: #000; 
      line-height: 10px; 
      margin-top: -15px;
      -webkit-text-stroke-width: 1px;
      -webkit-text-stroke-color: #FFF;
    }

    #image_wrapper {
      border: 1px solid orange;
      background-position: absolute;
    }

    /* --- Large Desktop Screens (Responsive Adaptations) --- */
    @media screen and (min-width: 601px) { 
      .mouse-wrap {
        margin-top: 8% !important;
        bottom: 50px;
      }
      .jumbotron h1 {
        font-size: 30px; 
        line-height: 64px;
      }
      .jumbotron h2 {
        font-size: 55px; 
        line-height: 75px;
        -webkit-text-stroke-width: 0px;
      }
      .jumbotron h3 {
        font-size: 40px; 
        line-height: 55px;
      }
      .btn-bookme {  
        border-radius: 15px; 
        width: 180px;
        height: 60px;
        padding: 20px; 
        font-size: 14px;
      }
      .jumbotron-welcome h1 {
        font-size: 50px;
      }
      .jumbotron-welcome p {
        font-size: 18px;
      }
    }


















    /* 1. Fix the parent navbar alignment so items are perfectly centered vertically */
.header_area.sticky-header .navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}


/* 2. Force the navigation list items into a standard row structure */
.header_area.sticky-header .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    margin: 0 !important;
}



/* 3. Keep standard alignment on individual items, ensuring they don't break flex limits */
.header_area.sticky-header .navbar-nav .nav-item {
    display: flex !important;
    align-items: center !important;
}



/* 4. Fix the Phone Button overlapping bug */
.header_area.sticky-header .nav-item.phone {
    display: inline-flex !important;
    align-items: center !important;
}

.header_area.sticky-header .nav-item.phone .nav-link.phone {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important; /* Prevents button breaking onto two lines */
    height: auto !important;
    margin-left: 20px !important;   /* Creates clear space between Pricing/Music and the button */
    top: 0 !important;              /* Resets any stray absolute jumps */
}



/* 5. Clean up phone icon centering inside the yellow button box */
.header_area.sticky-header .nav-item.phone .nav-link.phone span {
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 6px;
}




/* 1. Remove excess inner padding causing the double layer effect */
.header_area.sticky-header .main_menu {
    background: transparent !important;
}

.header_area.sticky-header .navbar {
    padding: 4px 15px !important; /* Tightens top/bottom & side inner spacing */
    background: transparent !important;
}

/* 2. Fix wide menu item spacing */
.header_area.sticky-header .navbar-nav .nav-item {
    margin-right: 0 !important; /* Overrides template default margin-right */
}

.header_area.sticky-header .navbar-nav .nav-item .nav-link {
    padding: 8px 10px !important; /* Controls horizontal link spacing tightly */
}

/* 3. Reduce gap before the phone button */
.header-cta-wrapper {
    margin-left: 22px !important;
}



/* ==========================================================
   NEW CUSTOM FLOATING NAVBAR INJECTION (OPTIMIZED FOR HEIGHT & ALIGNMENT)
   ========================================================== */
/*.header_area.sticky-header {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    z-index: 9999;
    background: rgba(24, 26, 30, 0.82) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 198, 94, 0.2);
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
*/

    /* --- Floating Header & Premium Navigation UI --- */
    .header_area.sticky-header {
      position: fixed;
      top: 15px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      max-width: 1400px;
      z-index: 9999;
      background: rgba(24, 26, 30, 0.82) !important;
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 198, 94, 0.2);
      border-radius: 14px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

/* Balanced CTA Button height */
.header-cta-wrapper .nav-link.phone {
    background: linear-gradient(135deg, #FFC65E, #d99f36) !important;
    color: #141619 !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    padding: 6px 16px !important; /* Thinner padding vertically */
    box-shadow: 0 4px 15px rgba(255, 198, 94, 0.2);
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}





.header_area.sticky-header .main_menu,
.header_area.sticky-header .navbar {
    background: transparent !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: auto !important; /* Strips framework minimum height minimums */
}



    .header_area.sticky-header .main_menu {
      background: transparent !important;
    }
    .header_area.sticky-header .navbar {
      background: transparent !important;
      padding: 8px 0;
    }
    .header_area.sticky-header .navbar-nav .nav-item .nav-link {
      color: rgba(255, 255, 255, 0.8) !important;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 10px 16px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    .header_area.sticky-header .navbar-nav .nav-item .nav-link:hover {
      color: #FFC65E !important;
      background: rgba(255, 198, 94, 0.08);
    }
    .header_area.sticky-header .navbar-nav .dropdown-menu {
      background: rgba(20, 22, 26, 0.95) !important;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 198, 94, 0.25);
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      margin-top: 10px;
      padding: 8px 0;
    }
    .header_area.sticky-header .navbar-nav .dropdown-menu .nav-item .nav-link {
      color: rgba(255, 255, 255, 0.75) !important;
      padding: 8px 20px;
      text-transform: none;
      font-size: 13px;
    }
    .header_area.sticky-header .navbar-nav .dropdown-menu .nav-item .nav-link:hover {
      background: rgba(255, 198, 94, 0.12) !important;
      color: #FFC65E !important;
      padding-left: 24px;
    }
    .header_area.sticky-header .nav-item.phone .nav-link.phone {
      background: linear-gradient(135deg, #FFC65E, #d99f36) !important;
      color: #141619 !important;
      font-weight: 700 !important;
      border-radius: 8px !important;
      padding: 10px 20px !important;
      margin-left: 10px;
      box-shadow: 0 4px 15px rgba(255, 198, 94, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }
    .header_area.sticky-header .nav-item.phone .nav-link.phone span i {
      color: #141619 !important;
    }
    .header_area.sticky-header .nav-item.phone .nav-link.phone:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 198, 94, 0.35);
    }
    .header-cta-wrapper {
      margin-left: 25px;
      display: inline-flex;
      align-items: center;
    }
    .header-cta-wrapper .nav-link.phone {
      background: linear-gradient(135deg, #FFC65E, #d99f36) !important;
      color: #141619 !important;
      font-weight: 700 !important;
      border-radius: 8px !important;
      padding: 10px 20px !important;
      box-shadow: 0 4px 15px rgba(255, 198, 94, 0.2);
      white-space: nowrap !important;
      display: inline-flex !important;
      align-items: center !important;
      position: relative !important;
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
      transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }
    .header-cta-wrapper .nav-link.phone:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 20px rgba(255, 198, 94, 0.35) !important;
    }
    .header-cta-wrapper .nav-link.phone span i {
      color: #141619 !important;
    }
    .header_area.sticky-header .navbar-nav .nav-item.dropdown {
      position: relative !important;
    }
    .header_area.sticky-header .navbar-nav .nav-item.dropdown .dropdown-menu {
      position: absolute !important;
      top: 100% !important;
      left: 0 !important;
      transform: none !important;
      margin-top: 5px !important;
      background: #1c1e22 !important;
      border: 1px solid rgba(255, 198, 94, 0.2) !important;
      border-radius: 6px !important;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
      min-width: 160px !important;
    }
    .header_area.sticky-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-item {
      width: 100% !important;
      display: block !important;
      margin: 0 !important;
    }
    .header_area.sticky-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-link {
      display: block !important;
      width: 100% !important;
      padding: 10px 15px !important;
      color: rgba(255, 255, 255, 0.8) !important;
      font-size: 13px !important;
      text-transform: none !important;
      line-height: auto !important;
    }
    .header_area.sticky-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-link:hover {
      background: rgba(255, 198, 94, 0.15) !important;
      color: #FFC65E !important;
    }

    /* ==========================================================
       FLOATING NAVBAR & RESPONSIVE TOGGLE FIX
       ========================================================== */
    .header_area.sticky-header {
      position: fixed;
      top: 15px;
      left: 50%;
      transform: translateX(-50%);
      width: 92%;
      max-width: 1400px;
      z-index: 9999;
      background: rgba(24, 26, 30, 0.95) !important;
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 198, 94, 0.2);
      border-radius: 14px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .header_area.sticky-header .main_menu,
    .header_area.sticky-header .navbar {
      background: transparent !important;
      padding: 8px 15px;
    }

    /* Mobile Toggler Styling */
    .header_area.sticky-header .navbar-toggler {
      border: 1px solid rgba(255, 198, 94, 0.4);
      padding: 6px 10px;
      border-radius: 6px;
      outline: none !important;
    }

    .header_area.sticky-header .navbar-toggler .icon-bar {
      background-color: #FFC65E;
      display: block;
      width: 22px;
      height: 2px;
      border-radius: 1px;
      margin: 4px 0;
    }

   @media (max-width: 991.98px) {
  /* 1. Limit menu height & enable smooth scrolling if screen is short */
  .header_area.sticky-header .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 80vh; /* Prevents overflow off the viewport */
    overflow-y: auto; /* Adds scrollbar if screen height is very low */
    background: #181a1e;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 8px;
    border: 1px solid rgba(255, 198, 94, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
  }

  .header_area.sticky-header .navbar-nav.menu_nav {
    margin-left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100%;
  }

  .header_area.sticky-header .navbar-nav .nav-item {
    width: 100%;
  }

  /* 2. Tighten vertical padding from 15px to 8px */
  .header_area.sticky-header .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 12px !important; /* Reduced vertical padding */
    border-radius: 6px;
    transition: all 0.3s ease;
    line-height: 1.4 !important;
    display: block;
    width: 100%;
  }

  .header_area.sticky-header .navbar-nav .nav-item .nav-link:hover {
    color: #FFC65E !important;
    background: rgba(255, 198, 94, 0.08);
  }

  /* 3. Style nested submenus for mobile */
  .header_area.sticky-header .navbar-nav .nav-item.dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    margin: 4px 0 8px 10px !important;
    padding: 4px 0 !important;
    width: calc(100% - 10px) !important;
    border: none !important;
  }

  .header_area.sticky-header .navbar-nav .nav-item.dropdown .dropdown-menu .nav-link {
    padding: 6px 12px !important;
    font-size: 12px !important;
  }

  /* 4. Ensure CTA phone button fits nicely at the bottom */
  .header-cta-wrapper {
    margin-left: 0 !important;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .header-cta-wrapper .nav-link.phone {
    width: 100% !important;
    justify-content: center !important;
    padding: 8px 14px !important;
  }
}


    

    /* Desktop Alignment Fix */
    @media (min-width: 992px) {
      .header_area.sticky-header .navbar-collapse {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
      }

      .header_area.sticky-header .navbar-nav.menu_nav {
        margin-left: auto !important;
        margin-right: 0 !important;
        display: flex !important;
        align-items: center !important;
        flex-direction: row !important;
      }

      .header-cta-wrapper {
        margin-left: 25px;
        display: inline-flex;
        align-items: center;
      }
    }

    /* Links & Dropdown Base Styles */
    .header_area.sticky-header .navbar-nav .nav-item .nav-link {
      color: rgba(255, 255, 255, 0.85) !important;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 10px 16px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .header_area.sticky-header .navbar-nav .nav-item .nav-link:hover {
      color: #FFC65E !important;
      background: rgba(255, 198, 94, 0.08);
    }

    .header-cta-wrapper .nav-link.phone {
      background: linear-gradient(135deg, #FFC65E, #d99f36) !important;
      color: #141619 !important;
      font-weight: 700 !important;
      border-radius: 8px !important;
      box-shadow: 0 4px 15px rgba(255, 198, 94, 0.2);
      white-space: nowrap !important;
      display: inline-flex !important;
      align-items: center !important;
    }

    .header_area.sticky-header .navbar-nav .nav-item .nav-link {
      padding: 8px 10px !important;
    }

    /* Compress individual link padding heights */
    .header_area.sticky-header .navbar-nav .nav-item .nav-link {
      color: rgba(255, 255, 255, 0.8) !important;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding-top: 15px !important;
      padding-bottom: 15px !important;
      padding-left: 14px !important;
      padding-right: 14px !important;
      border-radius: 8px;
      transition: all 0.3s ease;
      line-height: 20px !important;
    }

    .header_area.sticky-header .navbar-nav .nav-item .nav-link:hover {
      color: #FFC65E !important;
      background: rgba(255, 198, 94, 0.08);
    }

    /* ==========================================================
       NEW CUSTOM FLOATING NAVBAR INJECTION (OPTIMIZED FOR HEIGHT & ALIGNMENT)
       ========================================================== */
    .header_area.sticky-header {
      position: fixed;
      top: 25px;
      left: 50%;
      transform: translateX(-50%);
      width: 78%;
      max-width: 1400px;
      z-index: 9999;
      background: rgba(24, 26, 30, 0.82) !important;
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 198, 94, 0.2);
      border-radius: 14px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Force container padding reduction to compress height */
    .header_area.sticky-header .main_menu,
    .header_area.sticky-header .navbar {
      background: transparent !important;
      padding-top: 3px !important;
      padding-bottom: 3px !important;
      min-height: auto !important;
    }

    /* Compress individual link padding heights */
    .header_area.sticky-header .navbar-nav .nav-item .nav-link {
      color: rgba(255, 255, 255, 0.8) !important;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding-top: 15px !important;
      padding-bottom: 15px !important;
      padding-left: 14px !important;
      padding-right: 14px !important;
      border-radius: 8px;
      transition: all 0.3s ease;
      line-height: 20px !important;
    }

    .header_area.sticky-header .navbar-nav .nav-item .nav-link:hover {
      color: #FFC65E !important;
      background: rgba(255, 198, 94, 0.08);
    }

    /* Fix wide menu item spacing */
    .header_area.sticky-header .navbar-nav .nav-item {
      margin-right: 0 !important;
    }