/* ==========================================================================
   AARAA Custom UI Styles (Extracted from Inline HTML)
   ========================================================================== */

:root {
    --ai-red: #ea2a31;
    --fab-size: 60px;
    --fab-gap: 14px;
    --fab-pad: 18px;
}

/* Accessibility */
.visually-hidden {
    position: absolute !important; width: 1px !important; height: 1px !important;
    padding: 0 !important; margin: -1px !important; overflow: hidden !important;
    clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important;
}

/* Preloader */
.ai-preloader {
    position: fixed; inset: 0; z-index: 9999; background: var(--ai-red);
    display: grid; place-items: center; opacity: 1; visibility: visible;
    transition: opacity .4s ease, visibility .4s ease;
    animation: aiFadeOut .4s ease forwards; animation-delay: 4s;
}
@keyframes aiFadeOut { to { opacity: 0; visibility: hidden; } }
.ai-preloader__video { width: 700px; height: 250px; }
@media (max-width: 460px) { .ai-preloader__video { width: 90vw; height: calc(90vw * .625); } }

/* Floating CTAs */
#ai-floating-cta {
    position: fixed; right: var(--fab-pad); bottom: var(--fab-pad);
    display: grid; gap: var(--fab-gap); z-index: 9999; pointer-events: none;
    margin: 0 !important; padding: 0 !important; line-height: 0;
}
#ai-floating-cta a.ai-fab {
    width: var(--fab-size); height: var(--fab-size); display: inline-flex;
    align-items: center; justify-content: center; pointer-events: auto;
    text-decoration: none; background: transparent; border: 0; border-radius: 0;
    box-shadow: none; transition: transform .18s ease; overflow: hidden;
    margin: 0 !important; padding: 0 !important;
}
#ai-floating-cta a.ai-fab:hover { transform: translateY(-2px) scale(1.03); }
#ai-floating-cta a.ai-fab img { width: 100%; height: 100%; object-fit: contain; display: block; }
@media (max-height: 600px) { #ai-floating-cta { bottom: calc(var(--fab-pad) + 40px); } }
@media print { #ai-floating-cta { display: none !important; } }

/* Video Popup */
.video-popup {
    position: fixed; inset: 0; width: 100%; height: 100%; z-index: 999999;
    display: flex; align-items: center; justify-content: center; opacity: 0;
    visibility: hidden; transition: .45s ease; overflow: hidden; padding: 20px;
    background: linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.88)), url('../images/kudligi-drone-poster.webp') center/cover no-repeat;
    isolation: isolate;
}
.video-popup.active { opacity: 1; visibility: visible; pointer-events: auto; }
.video-popup-overlay { position: absolute; inset: 0; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.video-popup-content {
    position: relative; width: min(92vw,1280px); aspect-ratio: 16/9; max-height: 88vh;
    border-radius: 28px; overflow: hidden; background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 80px rgba(237,47,57,.12);
    transform: translateY(25px) scale(.96); transition: .45s ease;
}
.video-popup.active .video-popup-content { transform: translateY(0) scale(1); }
.video-container { width: 100%; height: 100%; }
.video-container iframe { width: 100%; height: 100%; border: none; display: block; }
.video-close {
    position: absolute; top: 18px; right: 18px; width: 52px; height: 52px;
    border: none; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff;
    font-size: 30px; line-height: 1; cursor: pointer; z-index: 5;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: .35s ease;
}
.video-close:hover { background: #ed2f39; transform: rotate(90deg) scale(1.08); }
@media(max-width: 768px) {
    .video-popup { padding: 14px; }
    .video-popup-content { width: 100%; max-height: 75vh; border-radius: 18px; }
    .video-close { width: 42px; height: 42px; font-size: 22px; top: 10px; right: 10px; }
}

/* Typography & Headers */
.font-roboto { font-family: 'Roboto Condensed', sans-serif; }
.font-montserrat { font-family: 'Montserrat', sans-serif; }
.heading-125 { font-size: 125px; font-weight: 700; line-height: 1.1; }
.heading-125-light { font-size: 125px; font-weight: 400; line-height: 1.1; }
.heading-80 { font-size: 80px; font-weight: 400; line-height: 1.1; }
.heading-80-bold { font-size: 80px; font-weight: 700; line-height: 1.1; }
.heading-75 { font-size: 75px; font-weight: 400; line-height: 1.1; }
.text-large-black { font-size: 24px; color: #000; line-height: 1.6; }
.text-large-white { font-size: 24px; color: #fff; line-height: 1.6; }
.heading-uppercase { text-transform: uppercase; }
@media (max-width: 768px) {
    .heading-125, .heading-125-light, .heading-80, .heading-80-bold, .heading-75 { font-size: 9vw !important; line-height: 1.2 !important; }
    .text-large-black, .text-large-white { font-size: 16px !important; line-height: 1.5 !important; }
}

/* Responsive Burger Header */
.rb-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff !important; /* White background */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s ease;
}
.rb-header.scrolled,
.rb-header.header-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.rb-nav { max-width: 1400px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 80px; position: relative; }
.rb-logo { display: flex; align-items: center; text-decoration: none; color: white; font-size: 24px; font-weight: bold; z-index: 1001; flex-shrink: 0; }
.rb-logo img { height: 50px; width: auto; }
.rb-burger { display: none; flex-direction: column; justify-content: center; align-items: center; width: 30px; height: 30px; background: transparent; border: none; cursor: pointer; z-index: 1002; position: relative; }
.rb-burger span { display: block; width: 25px; height: 3px; background: #222; margin: 3px 0; transition: all 0.3s ease; border-radius: 2px; }
.rb-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.rb-burger.active span:nth-child(2) { opacity: 0; }
.rb-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
.rb-links { flex: 1; display: flex; align-items: center; justify-content: space-between; padding: 0 40px; }
.rb-menu-wrap { flex: 1; display: flex; justify-content: center; }
.rb-menu { display: flex; list-style: none; gap: 10px; }
.rb-menu > li { position: relative; }
.rb-menu > li > a { display: block; padding: 10px 20px; color: #222; text-decoration: none; font-size: 16px; font-weight: 600; transition: all 0.3s ease; position: relative; }
.rb-menu > li > a:hover { color: #ed2f39; transform: translateY(-2px); }
.rb-menu > li > a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: #ed2f39; transform: translateX(-50%); transition: width 0.3s ease; }
.rb-menu > li:hover > a::after { width: 80%; }
.rb-submenu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 220px; background: #ed2f39; list-style: none; padding: 10px 0; border-radius: 8px; opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(-10px); transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.has-sub:hover .rb-submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.rb-submenu li { padding: 0; }
.rb-submenu a { display: block; padding: 12px 20px; color: white; text-decoration: none; font-size: 14px; transition: all 0.3s ease; position: relative; overflow: hidden; }
.rb-submenu a::before { content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 0; background: white; transition: height 0.3s ease; }
.rb-submenu a:hover { background: rgba(255, 255, 255, 0.1); padding-left: 25px; }
.rb-submenu a:hover::before { height: 100%; }

/* Nested Submenus (.rb-submenu-2) */
.has-sub-2 { position: relative; }
.rb-submenu-2 {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: #d01f29;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.has-sub-2:hover .rb-submenu-2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.has-sub-2 > a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.rb-actions { display: flex; gap: 15px; align-items: center; flex-shrink: 0; }
.rb-btn { padding: 12px 25px; border-radius: 30px; text-decoration: none; font-size: 14px; font-weight: 600; transition: all 0.3s ease; display: inline-block; position: relative; overflow: hidden; }
.rb-btn--ghost { color: #222; border: 2px solid rgba(0, 0, 0, 0.15); background: transparent; }
.rb-btn--ghost:hover { border-color: #ed2f39; background: transparent; color: #ed2f39; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(237, 47, 57, 0.1); }
.rb-btn--primary { background: #ed2f39; color: white; border: 2px solid #ed2f39; }
.rb-btn--primary:hover { background: #d01f29; border-color: #d01f29; transform: translateY(-2px); box-shadow: 0 5px 20px rgba(237, 47, 57, 0.4); }

@media (max-width: 1024px) {
    .rb-burger { display: flex; }
    .rb-links { position: fixed; top: 0; right: -100%; width: 100%; max-width: 400px; height: 100vh; background: #ffffff; flex-direction: column; justify-content: flex-start; padding: 100px 30px 30px; transition: right 0.3s ease; overflow-y: auto; box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05); }
    .rb-links.active { right: 0; }
    .rb-menu-wrap { width: 100%; }
    .rb-menu { flex-direction: column; width: 100%; gap: 0; }
    .rb-menu > li { width: 100%; border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
    .rb-menu > li > a { padding: 15px 0; font-size: 18px; color: #222 !important; }
    .rb-menu > li > a:hover { color: #ed2f39 !important; }
    .rb-menu > li > a::after { display: none; }
    /* Mobile Submenu Fixes */
    .rb-submenu,
    .has-sub:hover .rb-submenu,
    .has-sub.active .rb-submenu {
        position: static !important;
        transform: none !important;
        left: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        background: rgba(237, 47, 57, 0.08) !important;
        border-radius: 0;
        box-shadow: none;
        padding-left: 20px;
    }
    .rb-submenu a {
        color: #333 !important;
    }
    .rb-submenu a:hover {
        color: #ed2f39 !important;
    }
    .rb-submenu a::before {
        background: #ed2f39 !important;
    }
    .rb-submenu-2,
    .has-sub-2:hover .rb-submenu-2,
    .has-sub-2.active .rb-submenu-2 {
        position: static !important;
        transform: none !important;
        left: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        background: rgba(0, 0, 0, 0.03) !important;
        border-radius: 0;
        box-shadow: none;
        padding-left: 20px;
    }
    .rb-submenu-2 a {
        color: #444 !important;
    }
    .rb-submenu-2 a:hover {
        color: #ed2f39 !important;
    }
    .has-sub.active .rb-submenu { display: block !important; animation: slideDown 0.3s ease; }
    .has-sub-2.active .rb-submenu-2 { display: block !important; animation: slideDown 0.3s ease; }
    .has-sub-2 > a { position: relative; }
    .has-sub-2 > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
        color: #222 !important;
    }
    .has-sub-2.active > a::after {
        transform: translateY(-50%) rotate(180deg);
    }
    @keyframes slideDown { from { opacity: 0; max-height: 0; } to { opacity: 1; max-height: 500px; } }
    .rb-actions { width: 100%; flex-direction: column; gap: 10px; margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(0, 0, 0, 0.06); }
    .rb-btn { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
    .rb-nav { padding: 0 15px; height: 70px; }
    .rb-logo { font-size: 20px; }
    .rb-logo img { height: 40px; }
    .rb-links { max-width: 100%; }
}


/* Seamless Marquee — base layer (detailed rules in brand_marquee.css) */
.tf-marquee { padding: 40px 0; background: #fff; overflow: hidden; }
.marquee-wrapper.seamless-marquee { display: flex; width: 100%; position: relative; overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: scroll-marquee 50s linear infinite; }
/* Fix: hover on the stationary container, not the moving track */
.tf-marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* YouTube Hero Base */
.page-title-home, .fullscreen-video-banner, .video-banner, .swiper, .swiper-wrapper, .swiper-slide {
    background: none !important; box-shadow: none !important; filter: none !important;
}
.youtube-bg-wrapper {
    position: absolute !important; top: 0; left: 0; width: 100% !important; height: 100vh !important;
    overflow: hidden !important; z-index: -1 !important; pointer-events: none;
}
.youtube-bg-wrapper iframe {
    position: absolute !important; top: 0; left: -100% !important; width: 300% !important;
    height: 100% !important; border: none !important;
}
.yt-hero { position: relative; overflow: hidden; }
.yt-hero__inner { position: relative; min-height: 100vh; }
.yt-hero__poster { position: absolute; inset: 0; background: #000 url('../image/section/section-about-h2.jpg') center/cover no-repeat; transition: opacity .4s; }
.yt-hero__wrap { position: absolute; inset: 0; overflow: hidden; background: #000; pointer-events: none; z-index: -1; }
.yt-hero__iframe { position: absolute; inset: 0; width: 300%; height: 100%; left: -100%; opacity: 0; transition: opacity .4s; pointer-events: none; }
body.yt-ready .yt-hero__iframe { opacity: 1; }
body.yt-ready .yt-hero__poster { opacity: 0; }
@media (max-width: 768px) { .yt-hero__inner { min-height: 70vh; } }

/* Why Choose Us Features */
.why-choose-us { font-family: 'Montserrat', sans-serif; max-width: 1200px; margin: 0 auto; padding: 80px 20px; text-align: center; }
.why-choose-us .title { font-size: 40px; color: #222; margin-bottom: 40px; font-weight: 700; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.feature { background-color: #f5f5f5; padding: 20px 25px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: center; gap: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.feature:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.checkmark { color: #ed2f39; font-size: 24px; font-weight: bold; }
.feature-text { font-size: 18px; color: #333; font-weight: 600; }

/* ==========================================
   Blog Section Styling (Home Page Strip)
   ========================================== */
.blog-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f2f5;
  border: 1px solid #e1e3e8;
  color: #1f2328;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  outline: none;
}
.blog-nav-btn:hover {
  background: #ea2a31;
  color: #fff;
  border-color: #ea2a31;
}
.blog-slider-container {
  overflow: hidden;
  margin-top: 20px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.blog-slide-card {
  flex: 0 0 340px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-slide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.blog-card-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  pointer-events: none;
}
.blog-slide-card:hover .blog-card-img-wrap img {
  transform: scale(1.07);
}
.blog-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #ea2a31;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
}
.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #888;
  font-size: 12px;
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card-title a {
  color: #1f2328;
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-card-title a:hover {
  color: #ea2a31;
}
.blog-card-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
  margin-top: auto;
}
.blog-card-link {
  color: #ea2a31;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-link i {
  transition: transform 0.2s ease;
}
.blog-card-link:hover i {
  transform: translateX(4px);
}
.blog-card-tag {
  color: #999;
  font-size: 12px;
}

@media(max-width: 992px) {
  .blog-slide-card {
    flex: 0 0 280px;
  }
  .blog-card-img-wrap {
    height: 170px;
  }
}
@media(max-width: 480px) {
  .blog-slide-card {
    flex: 0 0 240px;
  }
  .blog-card-img-wrap {
    height: 150px;
  }
  .blog-card-excerpt {
    font-size: 13px;
  }
}

/* ==========================================================================
   AARAA Custom Blog Gallery & Lightbox Styles
   ========================================================================== */
.gallery-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #1f2328;
  margin: 35px 0 20px;
  border-left: 4px solid #ea2a31;
  padding-left: 15px;
}

.gallery-grid-container {
  margin: 25px 0 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  background: #f5f5f7;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  background: #ea2a31;
  align-self: flex-start;
  padding: 3px 8px;
  border-radius: 3px;
}

.gallery-caption {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  background: rgba(234, 42, 49, 0.85);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s ease, background-color 0.2s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 2;
  opacity: 0;
}

.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: scale(1.1);
}

/* Lightbox Modal Styles */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 24, 0.97);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
  padding: 30px;
  user-select: none;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  z-index: 10010;
}

.lightbox-close-btn:hover {
  background: #ea2a31;
  transform: scale(1.05) rotate(90deg);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, opacity 0.2s;
  z-index: 10010;
}

.lightbox-nav-btn:hover {
  background: #ea2a31;
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev-btn {
  left: 30px;
}

.lightbox-next-btn {
  right: 30px;
}

@media (max-width: 768px) {
  .lightbox-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .lightbox-prev-btn { left: 15px; }
  .lightbox-next-btn { right: 15px; }
  .lightbox-modal { padding: 15px; }
  .lightbox-close-btn { top: 15px; right: 15px; width: 40px; height: 40px; font-size: 20px; }
}

.lightbox-content-area {
  max-width: 90vw;
  max-height: 75vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content-area img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-modal.active .lightbox-content-area img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-caption-area {
  margin-top: 20px;
  text-align: center;
  color: #fff;
  max-width: 600px;
}

.lightbox-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lightbox-desc {
  font-size: 14px;
  color: #ccc;
  line-height: 1.4;
}

.lightbox-number-counter {
  margin-top: 15px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ==========================================================================
   Visuals Carousel Section (Blog Details Page)
   ========================================================================== */
.visuals-section {
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.visuals-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 15px;
}

.visuals-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
}

.visuals-controls {
  display: flex;
  gap: 10px;
}

.visuals-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.visuals-btn:hover {
  background: #ea2a31;
  color: #fff;
  border-color: #ea2a31;
}

.visuals-carousel-wrapper {
  overflow: hidden;
  padding: 10px 15px;
}

.visuals-grid {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.visual-card {
  flex: 0 0 360px;
  aspect-ratio: 4/3;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  cursor: pointer;
  background: #f5f5f7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.visual-card:hover img {
  transform: scale(1.05);
}

.visual-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ea2a31;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Sidebar CTA button & enhancing styles */
.cta-card button {
  background: #ea2a31;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

.cta-card button:hover {
  background: #d01f29;
}

/* --- Prevent header menu items from wrapping and squeezing --- */
.menu-primary-menu .menu-item .item-link,
.rb-menu > li > a {
    white-space: nowrap !important;
}

/* Replace hardcoded inline margins with dynamic flex push to prevent menu squeeze */
.custom-header-buttons {
    margin-left: auto !important;
}

/* Ensure the menu and buttons container fills the header content space correctly */
.header .header-content .header-left {
    flex: 1 !important;
    width: 100% !important;
}
.header .main-menu {
    flex: 1 !important;
}
.header .menu-primary-menu {
    width: 100% !important;
}

/* ==========================================================================
   Checkbox Visibility Fix for Contact Form
   ========================================================================== */
.check-box input[type="checkbox"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: #ffffff !important;
    border: 2px solid #cccccc !important;
    height: 20px !important;
    width: 20px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    position: relative !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: all 0.2s ease !important;
    outline: none !important;
}

.check-box input[type="checkbox"]:hover {
    border-color: #ed2f39 !important;
}

.check-box input[type="checkbox"]:checked {
    background-color: #ed2f39 !important;
    border-color: #ed2f39 !important;
}

.check-box input[type="checkbox"]::before {
    content: "\e985" !important;
    font-family: "icomoon" !important;
    font-size: 11px !important;
    color: #ffffff !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0) !important;
    transition: transform 0.15s cubic-bezier(0.12, 0.4, 0.29, 1.46) !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.check-box input[type="checkbox"]:checked::before {
    transform: translate(-50%, -50%) scale(1) !important;
}

.check-box label {
    cursor: pointer !important;
    user-select: none !important;
    margin: 0 !important;
    font-family: "Barlow", sans-serif !important;
    font-size: 14px !important;
    line-height: 20px !important;
}

/* Hero Video Gradient Overlay Mask */
.yt-hero__inner::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1; pointer-events: none;
}

/* Text Overlay Container */
.hero-overlay-content {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    justify-content: center; z-index: 2; color: #fff; padding-top: 0;
}
.hero-text-wrap { max-width: 680px; margin-bottom: 80px; }
.hero-title {
    font-family: 'Outfit', sans-serif; font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 800; line-height: 1.1; color: #fff !important; margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-desc {
    font-family: 'Montserrat', sans-serif; font-size: clamp(0.95rem, 1.8vw, 1.25rem);
    line-height: 1.6; color: rgba(255,255,255,0.9) !important; margin-bottom: 32px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}
.hero-actions .tf-btn {
    border-radius: 6px; font-weight: 700;
}

/* Metrics Section & Grid */
.hero-metrics-section {
    position: relative; width: 100%; z-index: 10;
    margin-top: 30px; /* Position cleanly below the video banner */
    padding: 20px 0;
}
.hero-metrics-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
    background: transparent; border: none; box-shadow: none; padding: 0;
}
.metric-item { display: flex; align-items: flex-start; gap: 20px; }
.metric-icon {
    font-size: 2.2rem; color: #ed2f39; /* AARAA Brand Red */
    width: auto; height: auto; background: transparent; border: none; border-radius: 0;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    margin-top: 4px;
}
.metric-text h3 {
    font-family: 'Outfit', sans-serif; font-size: 1.85rem; font-weight: 800; margin: 0 0 4px;
    color: #111 !important; line-height: 1.1;
}
.metric-text p {
    font-family: 'Montserrat', sans-serif; font-size: 0.8rem; margin: 0;
    color: #555 !important; line-height: 1.4; text-transform: none; letter-spacing: 0.2px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero-metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
}
@media (max-width: 768px) {
    .hero-overlay-content { justify-content: flex-end; padding-bottom: 60px; }
    .hero-text-wrap { margin-bottom: 40px; }
    .hero-metrics-section {
        margin-top: 15px;
        padding: 15px 10px;
    }
}
@media (max-width: 576px) {
    .hero-metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 15px; }
    .metric-item { gap: 12px; }
    .metric-icon { font-size: 1.8rem; margin-top: 2px; }
    .metric-text h3 { font-size: 1.45rem; }
    .metric-text p { font-size: 0.72rem; }
}