@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Orbitron:wght@700&family=Rajdhani:wght@600&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: rgb(255, 255, 255);
  color: #333;
}

html {
  scroll-behavior: smooth;
}


.navbar {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.781);
  box-shadow: 0 2px rgba(218, 218, 218, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
}

/* Left Section - Logo */
.nav-left {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  white-space: nowrap;
}

.logo-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
  color: #db0000;
  line-height: 1;
  letter-spacing: 0.5px;
}

.logo-title .logo-drone {
  color: #000000;
}

.logo-subtitle {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 0.8rem;
  color: #1e293b;
  line-height: 1.1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .logo-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 35px;
  }
}


/* Center Nav Links */
.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.nav-links>li>a {
  text-decoration: none;
  color: #070707;
  font-weight: 700;
  padding: 8px 12px;
  transition: all 0.3s;
}

.nav-links>li>a:hover,
.nav-links>li.dropdown:hover>a {
  background: rgb(255, 11, 11);
  color: white;
  border-radius: 10px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
  /* invisible bridge to prevent hover loss */
}

.dropdown>a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drop-icon {
  width: 10px;
  height: 10px;
  filter: invert(30%);
  transition: all 0.3s;
}

.nav-links>li.dropdown:hover .drop-icon {
  filter: invert(100%) brightness(200%);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  background: rgb(255, 255, 255);
  flex-direction: column;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 10;
  border-radius: 8px;
  overflow: hidden;
  min-width: 120px;
  padding: 0;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content li a {
  color: rgb(207, 0, 0);
  padding: 12px 16px;
  display: block;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 0;
}

.dropdown-content li a:hover {
  background: rgb(255, 11, 11);
  color: white;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

/* Right Contact Button */
.contact-button {
  margin-left: 20px;
}

/* Menu icon (mobile) */
.menu-icon {
  display: none;
}

.menu-icon img {
  height: 28px;
  cursor: pointer;
}

/* Sidebar */
.sidebar {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 240px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  z-index: 2000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.sidebar li {
  margin: 10px 0;
}

.sidebar li a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 12px;
  display: block;
  transition: 0.3s;
}

.sidebar li a:hover {
  background: #e91515;
  color: white;
  border-radius: 6px;
}

/* Sidebar Dropdown */
.sidebar-link {
  color: black;
  font-weight: 500;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.sidebar-link:hover {
  background: #e71414;
  color: white;
  border-radius: 6px;
}

#sidebar-submenu {
  display: none;
  /* Hidden by default */
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-top: 5px;
  padding-left: 10px;
}

#sidebar-submenu li a {
  font-size: 0.95rem;
  padding: 8px 12px;
}

/* NAV Responsive */
@media (max-width: 1000px) {

  .nav-links,
  .contact-button {
    display: none;
  }

  .menu-icon {
    display: block;
  }
}

/*hero section*/
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.hero-content {
  color: white;
  padding: 20px;
  max-width: 90%;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  font-size: 1rem;
  color: white;
  animation: bounce 2s infinite;
}

.scroll-down span {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}

.scroll-down i {
  font-size: 1.5rem;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 768px) {
  .hero-video {
    display: none;
  }

  .hero-section {
    background: url('../assets/images/agridrone.webp') no-repeat center center/cover;
  }
}


/*About page*/
.about-section {
  padding: 60px 20px;
  background-color: whitesmoke;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  align-items: stretch;
  /* equal height */
}

/* Left Half - Image Slider */
.about-slider {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 40px;
  /* Padding creates space so image isn't too big */
  background: #ffffff;
}

.about-slideshow {
  width: 100%;
  position: relative;
  overflow: hidden;
  /* Clips the absolute images inside */
}

.about-slideshow img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Right Half - Content */
.about-content {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 80px 60px;
  /* More padding for better spacing */
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertically center content */
}

.about-content h2 {
  font-size: 2rem;
  color: #d60000;
  text-align: center;
}

.about-subtitle {
  font-size: 1.65rem !important;
  color: #d60000 !important;
  text-align: center;
  margin-top: -5px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.about-content p {
  margin: 20px 0;
  line-height: 1.6;
  color: #000;
  text-align: justify;
}

/* Mission Cards (Now inside right col) */
.mission-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  justify-content: space-between;
}

.card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  width: calc(33.33% - 10px);
  /* 3 cards in a row */
  color: #000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1rem;
  color: #8a1e1e;
  margin: 10px 0 8px;
}

.card p {
  font-size: 0.95rem;
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.card i {
  color: #ff0000;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

/* Mobile Responsive for About */
@media (max-width: 900px) {

  .about-slider,
  .about-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-slider {
    height: 400px;
    min-height: auto;
    padding: 20px;
    /* Reduced padding for mobile so image remains visible */
  }

  .about-content {
    padding: 40px 20px;
  }

  .card {
    width: 100%;
  }
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reusable animation class */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.active {
  animation: fadeInUp 1s ease forwards;
}


@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-slideshow {
    max-width: 100%;
    height: 100%;
  }

  .about-slider {
    height: 300px;
  }

  .mission-cards {
    justify-content: center;
  }
}

/* count up */
.counter-section {
  background-color: rgba(238, 238, 238, 0.233);
  padding: 40px 20px;
  color: rgb(255, 255, 255);
  text-align: center;
  position: relative;
}

.counter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.counter-box {
  flex: 1 1 calc(20% - 20px);
  background: rgba(255, 255, 255, 0.05);
  background-color: #c70000;
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  min-width: 180px;
}

.counter-box:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.438);
}

.counter-box .icon {
  margin-bottom: 15px;
  color: #fff;
  transition: transform 0.4s ease;
}

.counter-box:hover .icon {
  transform: rotate(10deg);
}

.counter-box .counter {
  font-size: 2rem;
  font-weight: medium;
  margin-bottom: 10px;
}

.counter-box h3 {
  margin-top: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes bounceInUpBox {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
  }

  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.05);
  }

  80% {
    transform: translateY(5px) scale(0.98);
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.animate-counter {
  opacity: 0;
  transform: translateY(100px);
  will-change: transform, opacity;
}

/* Applied dynamically via JS with staggered delay */
.animate-counter.active {
  animation: bounceInUpBox 1s ease forwards;
}




@media (max-width: 768px) {
  .counter-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .counter-box {
    flex: 1 1 45%;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .counter-box {
    flex: 1 1 100%;
  }
}

/* products page */
.product-section {
  padding: 40px 0;
  text-align: center;
  background-color: #df0000;
  color: #fff;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #fff;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.tab-button {
  background: #ffffff;
  border: none;
  color: #c70000;
  padding: 12px 24px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.tab-button.active,
.tab-button:hover {
  background: #ff0101;
  color: white;
}

.product-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
  width: 95%;
  padding: 0 20px;
  box-sizing: border-box;
}

.product-left,
.product-right {
  flex: 1;
  min-width: 320px;
  max-width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 480px;
  box-sizing: border-box;
}

.product-left {
  align-items: flex-end;
}

.product-right {
  align-items: flex-start;
}

.product-image {
  display: none;
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
}

.product-image.active {
  display: block;
}

.product-info {
  display: none;
  text-align: left;
  color: white;
  min-height: 450px;
  font-family: 'Inter', sans-serif;
}

.product-info.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInZoom 0.8s ease forwards;
}

.product-info h3 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  margin-bottom: 10px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.product-info p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 16px;
  max-width: 600px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 600px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.spec-item i {
  color: #ff3b3b;
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
}

.spec-item strong {
  color: #ffffff;
  font-weight: 600;
}

.highlights {
  margin-bottom: 10px;
}

.highlight {
  display: inline-block;
  background: white;
  color: black;
  padding: 8px 18px;
  margin: 5px 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.learn-more {
  background: white;
  color: #c70000;
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.learn-more:hover {
  background: #e5e5e5;
}

@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .product-content {
    flex-direction: column;
  }

  .product-tabs {
    margin-bottom: 20px;
    gap: 10px;
  }

  .product-left,
  .product-right {
    max-width: 100%;
    padding: 10px;
    min-height: auto;
    height: auto;
    justify-content: center;
  }

  .product-left {
    align-items: center;
    margin-bottom: 10px;
  }

  .product-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
  }

  .product-info {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    min-height: 350px;
  }

  .product-info.active {
    display: flex;
  }

  .product-info h3 {
    font-size: 1.8rem;
    text-align: center;
  }

  .product-info p {
    text-align: center;
    font-size: 1.05rem;
  }

  .product-specs {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 auto 25px;
    text-align: left;
    max-width: 320px;
  }

  .spec-item {
    font-size: 0.95rem;
  }
}

/* video shot page */

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  background: #020024;
  background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(255, 255, 255, 1) 0%, rgba(235, 235, 235, 1) 100%);
}

.carousel_heading {
  font-size: 1.8rem;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.carousel {
  position: relative;
  width: 80vw;
  height: 700px;
  background-color: #111;
  overflow: hidden;
  border-radius: 12px;
}

.carousel_track-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.carousel_track {
  position: relative;
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.carousel_slide,
.carousel_video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.carousel_slide {
  text-align: center;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
}

.carousel_slide.is-selected {
  transform: translateX(0);
}

.carousel_slide.is-selected~.carousel_slide {
  transform: translateX(100%);
}

.carousel_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel_title {
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  top: 50px;
  width: 100%;
  text-align: center;
}

.carousel_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.carousel_btn.jsPrev {
  left: 20px;
}

.carousel_btn.jsNext {
  right: 20px;
}

.carousel_nav {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.carousel_dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #666;
  border: none;
  cursor: pointer;
}

.carousel_dot.is-selected {
  background: #1bb9ed;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel {
    width: 95vw;
    height: 400px;
  }

  .carousel_heading {
    font-size: 2rem;
  }

  .carousel_title {
    font-size: 1rem;
  }
}

/* blogs page */

/* blogs page */

.blog-section {
  padding: 6.5rem 2rem;
  background: #f5f5f5;
  /* Dronetribes theme whitesmoke background - no light blue tint! */
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.blog-container {
  max-width: 1480px;
  /* Expanded maximum width to stretch content closer to the screen edges */
  width: 95%;
  /* Reduces the outer left and right margins */
  margin: 0 auto;
  display: flex;
  gap: 5.5rem;
  /* Generous gap in the center separating blogs and the poster */
  align-items: stretch;
}

/* Left Column Styling */
.blog-left-content {
  width: 66%;
  /* Slightly narrower to give more space for the center gap and poster */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.blog-left-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.blog-brand-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.blog-section-subtitle {
  font-size: 1.15rem;
  font-weight: 800;
  color: #db0000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
}

.blog-section-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.15;
  margin: 0;
}

.blog-view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: fit-content;
  border: 1.5px solid #0f172a;
  background: transparent;
  color: #0f172a;
  padding: 0.85rem 1.85rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.blog-view-more-btn svg {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.blog-view-more-btn:hover {
  background: #db0000;
  border-color: #db0000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(219, 0, 0, 0.15);
}

.blog-view-more-btn:hover svg {
  transform: translateX(4px);
}

/* Carousel Wrapper */
.blog-carousel-wrapper {
  width: 100%;
  overflow: visible;
  position: relative;
}

/* Scrollable Container */
.blog-carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1.5rem 0.5rem 2.5rem 0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #db0000 #f5f5f5;
  /* Red thumb, whitesmoke track for Firefox */
}

/* Elegant themed custom scrollbar for Chrome, Edge, Safari, Opera */
.blog-carousel-track::-webkit-scrollbar {
  height: 6px;
  /* High-precision elegant scrollbar line */
  display: block;
  /* Visible by default for desktop mouse accessibility */
}

.blog-carousel-track::-webkit-scrollbar-track {
  background: #eaeaea;
  /* Light grey track background */
  border-radius: 10px;
}

.blog-carousel-track::-webkit-scrollbar-thumb {
  background: rgba(219, 0, 0, 0.4);
  /* Transparent brand-red overlay */
  border-radius: 10px;
  transition: all 0.3s ease;
}

.blog-carousel-track::-webkit-scrollbar-thumb:hover {
  background: #db0000;
  /* Glowing red solid highlight on hover */
}

/* Card Styling */
.blog-carousel-card {
  width: 265px;
  /* Sized perfectly so exactly 3 cards fit fully visible inside the right column on desktop! */
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dddddd;
  /* Premium warm neutral light grey border - zero blue tint */
  padding: 1.15rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  outline: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.blog-carousel-card:last-child {
  margin-right: 2rem;
  /* Symmetrical breathing room at the end of the scrollbar carousel track */
}

.blog-card-img-wrapper {
  width: 100%;
  height: 165px;
  /* Proportional 16:10 height for the 265px card width */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  /* Warm neutral border framing the image */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background-color: #eaeaea;
  /* Premium neutral grey placeholder - no blue tint! */
}

.blog-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card-meta {
  margin: 1.1rem 0 0.5rem 0;
  font-size: 0.8rem;
  color: #7a7a7a;
  /* Neutral medium grey - zero blue tint */
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s ease;
}

.blog-card-title {
  font-size: 1.1rem;
  /* Slightly smaller to fit beautifully in the 265px card width */
  font-weight: 700;
  color: #1a1a1a;
  /* Pure neutral dark charcoal - zero blue/slate tint */
  margin: 0 0 0.6rem 0;
  line-height: 1.45;
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.9em;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: #4a4a4a;
  /* Pure neutral dark grey - zero blue/slate tint */
  line-height: 1.55;
  margin: 0 0 1.25rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4.1rem;
}

.blog-card-readmore {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: #db0000;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.01em;
  font-family: 'Inter', sans-serif;
}

.blog-card-readmore svg {
  transition: transform 0.3s ease;
}

/* Elevated Hover Styling */
.blog-carousel-card:hover {
  background: #ffffff;
  border-color: rgba(219, 0, 0, 0.25);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-8px);
}

.blog-carousel-card:hover .blog-card-img-wrapper {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.blog-carousel-card:hover .blog-card-img-wrapper img {
  transform: scale(1.04);
}

.blog-carousel-card:hover .blog-card-title {
  color: #db0000;
}

.blog-carousel-card:hover .blog-card-readmore svg {
  transform: translateX(4px);
}

/* Dedicated Offer Poster Sidebar Styles */
.blog-right-sidebar {
  width: 30%;
  /* Expanded width to make the poster significantly larger */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Vertically center the poster perfectly within the blog section */
  border-left: 1.5px solid rgba(15, 23, 42, 0.08);
  /* Minimal vertical separator line */
  padding-left: 3rem;
  /* Spacious breathing room from the divider */
}

.blog-sidebar-poster-card {
  position: relative;
  width: 100%;
  height: auto;
  /* Proportional fluid height scaling */
  aspect-ratio: 1 / 1.45;
  /* Locks exact original poster proportions to prevent top/bottom cropping */
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid rgba(219, 0, 0, 0.28);
  /* Highly defined crimson brand border to highlight the poster */
  box-shadow: 0 10px 35px rgba(219, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
  /* Elegant default red brand glow */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}

.blog-poster-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #db0000;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(219, 0, 0, 0.35);
  font-family: 'Rajdhani', sans-serif;
}

.blog-poster-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-color: #eaeaea;
}

.blog-poster-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-poster-action-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 35px 15px 18px 15px;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 4;
}

.blog-poster-action-overlay span {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  border-bottom: 2px solid #db0000;
  padding-bottom: 4px;
}

/* Standalone poster interactive animations */
.blog-sidebar-poster-card:hover {
  transform: translateY(-8px);
  border-color: rgba(219, 0, 0, 0.6);
  /* Vibrant border on hover */
  box-shadow: 0 20px 45px rgba(219, 0, 0, 0.24);
  /* Powerful red brand highlight glow */
}

.blog-sidebar-poster-card:hover .blog-poster-img-wrapper img {
  transform: scale(1.04);
}

.blog-sidebar-poster-card:hover .blog-poster-action-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .blog-container {
    gap: 3rem;
    /* Generous responsive gap */
  }

  .blog-left-content {
    width: 65%;
  }

  .blog-right-sidebar {
    width: 31%;
    padding-left: 2rem;
  }
}

@media (max-width: 991px) {
  .blog-container {
    flex-direction: column;
    align-items: stretch;
    gap: 3rem;
  }

  .blog-left-content {
    width: 100%;
  }

  .blog-left-header {
    margin-bottom: 1.5rem;
  }

  .blog-right-sidebar {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: none;
    /* Remove vertical divider on tablet/mobile */
    padding-left: 0;
    border-top: 1.5px solid rgba(15, 23, 42, 0.08);
    /* Clean horizontal divider separator */
    padding-top: 2.5rem;
    /* Breathing room below divider */
    margin-top: 0.5rem;
  }

  .blog-sidebar-poster-card {
    width: 290px;
    height: auto;
    /* Proportional responsive height scaling */
    aspect-ratio: 1 / 1.45;
    /* Lock aspect ratio on mobile/tablet stacking */
  }

  .blog-section-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 575px) {
  .blog-section {
    padding: 4.5rem 1rem;
  }

  .blog-left-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .blog-view-more-btn {
    width: 100%;
    text-align: center;
  }

  .blog-carousel-card {
    width: 280px;
  }

  .blog-card-img-wrapper {
    height: 170px;
  }
}

/* Modal Popup Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 120px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  animation: fadeIn 0.5s ease;
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 80%;
  max-height: 80%;
  border-radius: 8px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #ff4c4c;
}

/* trestimonail */

.testimonial-heading {
  font-size: 1.2rem;
  color: white;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  position: relative;
}

.testimonial-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: white;
  margin: 2px auto 0;
  border-radius: 5px;
}


.testimonial-section {
  background: linear-gradient(135deg, #c73333, #a81313);
  padding: 50px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: auto;
  height: auto;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.07);
  border: 2px solid white;
  padding: 30px 20px;
  color: white;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  animation: pop-bounce 0.6s ease forwards;
}

.testimonial-card.active {
  display: flex;
}

.testimonial-card .quote {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  font-size: 1rem;
}

.author-info span {
  font-size: 0.85rem;
  color: #ddd;
}

/* Controls */
.testimonial-controls {
  margin-top: 20px;
}

.testimonial-controls button {
  background-color: white;
  color: #982a2a;
  border: none;
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 50%;
  margin: 0 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.testimonial-controls button:hover {
  transform: scale(1.2);
}

/* Animation */
@keyframes pop-bounce {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .testimonial-card {
    padding: 20px 15px;
  }

  .author-info {
    flex-direction: column;
    text-align: center;
  }
}

/* our fecatues */

.bento-section {
  padding: 40px 0;
  /* Adjusted padding */
  background-color: #ffffff;
  min-height: auto;
  /* Remove fixed height constraint */
  display: flex;
  flex-direction: column;
  /* Stack grid and new row */
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* Gap between grid and new row */
}

.bento-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  /* Full width */
  padding: 0 40px;
  /* Padding for full page alignment */
  margin: 0 auto;
  box-sizing: border-box;
  /* Ensure padding includes in width */
}

/* Columns */
.side-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Reduced gap for better spacing */
  flex: 1;
  /* Side columns take 1 unit */
  min-width: 280px;
}

.center-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 2;
  /* Center column takes 2 units (double side columns) */
  min-width: 320px;
}

/* Top Box */
.top-box {
  width: 100%;
  max-width: none;
  /* Allow full fill */
  flex: 1;
  /* Equal height split */
  min-height: 280px;
  /* Increased height */
  background: #c70000;
  border-radius: 20px;
  text-align: center;
  padding: 40px 20px;
  color: white;
  margin-top: 0;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(5, 45, 223, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}


.top-box h5 {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 1px;
  opacity: 0.7;
}

.top-box h2 {
  margin-top: 8px;
  font-size: 28px;
}

/* Circle */
.logo-circle {
  width: 220px;
  height: 220px;
  background: #ffffff;
  border: 1px solid rgba(226, 226, 226, 0);
  border-radius: 50%;
  position: absolute;
  top: 170px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-circle img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* Bottom Split */
.bottom-box {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  /* Consitent gap */
  width: 100%;
  max-width: none;
  justify-content: space-between;
  flex: 1;
  /* Equal height split */
}

.bottom-box .bento-card {
  flex: 1;
  max-width: none;
}

/* Card Styling */
.bento-card {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  flex: 1;
  /* Fill available column height */
  min-height: 280px;
  /* Increased height */
  background: #c70000;
  border-radius: 20px;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  /* Increased padding slightly for better spacing */
  box-shadow: 0 4px 12px rgba(4, 54, 221, 0.15);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  /* Proper spacing between icon, title, text */
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(201, 10, 10, 0.3);
}

.bento-card img,
.bento-card i {
  /* FontAwesome specific sizing & alignment fixes */
  display: block;
  margin: 0 auto;
  font-size: 2.1rem;
  /* Reduced size for a sleeker, cleaner bento grid design */
  color: #ffffff;
  z-index: 2;
  position: relative;
}

.bento-card img {
  width: 50px;
  height: 50px;
  filter: brightness(0) invert(1);
}

.bento-card h3 {
  margin: 0;
  /* Handled by gap */
  font-size: 18px;
  color: #000000;
  background-color: white;
  padding: 5px 15px;
  border-radius: 12px;
  display: inline-block;
  /* Keeps the background only around text */
  text-align: center;
}


.bento-card p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
}

/* Scroll animation */
.bento-card,
.top-box {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.bento-card.visible,
.top-box.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Base Bottom Row Styling (Desktop) */
.bento-row-bottom {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: border-box;
  justify-content: center;
}

.bento-row-bottom .bento-card {
  flex: 1;
}

/* Responsive */
@media (max-width: 1150px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
  }

  .center-column {
    order: -1;
    width: 100%;
    flex: none;
  }

  .side-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    flex: none;
  }

  .bottom-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    margin-top: 20px;
  }

  .bento-card {
    flex: 1 1 250px;
    height: auto;
    min-height: 250px;
    width: 100%;
  }

  /* Hide the large decorative drone logo on smaller tablets where stack flow is disrupted */
  .logo-circle {
    display: none;
  }

  .top-box {
    width: 100%;
    max-width: 100%;
    min-height: 200px;
    height: auto;
  }

  /* New Row Mobile */
  .bento-row-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 20px;
  }

  .bento-row-bottom .bento-card {
    flex: 1 1 250px;
  }
}



@media (max-width: 768px) {
  .bento-card {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    min-height: 200px;
    margin: 0 auto;
  }

  .side-column,
  .bottom-box,
  .bento-row-bottom {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .bento-row-bottom .bento-card {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }
}

/* conatct page */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: linear-gradient(135deg, #721e1e, #982a2a);
  color: white;
  padding: 60px 30px;
  gap: 50px;
}

/* Left Side: Info */
.contact-left {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.contact-left h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ffffff;
}

.location-bubble {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 15px 20px;
  margin-bottom: 20px;
  width: fit-content;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.location-bubble p {
  margin: 0;
  color: rgb(0, 0, 0);
  font-size: 15px;
}

.contact-info {
  font-size: 15px;
  line-height: 1.8;
}

.contact-info i {
  margin-right: 10px;
  color: #ffffff;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;

}

.social-iconsc a {
  margin-right: 15px;
  font-size: 20px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-iconsc a:hover {
  transform: scale(1.2);
  color: #ff7d7d;
}

/* Right Side: Form */
.contact-form-container {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  background: white;
  color: #333;
  border-radius: 15px;
  padding: 30px 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-form-container h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #721e1e;
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
  resize: vertical;
}

.label {
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.radio-options {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.radio-options label {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-footer {
  text-align: center;
}

.contact-form-container button {
  background: #ff0000;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form-container button:hover {
  background: #000000;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .contact-form-container,
  .contact-left {
    max-width: 100%;
  }

  .location-bubble {
    width: 100%;
  }

  .social-icons a {
    font-size: 18px;
  }
}

/* 👇 Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 🎉 Thank you popup */
.thank-you-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: white;
  padding: 25px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 9999;
  transition: all 0.3s ease;
}

.thank-you-popup.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.popup-content h2 {
  margin-bottom: 10px;
  color: #ff0000;
}

/* footer */
.footer-section {
  background: #ffffff;
  color: #000000;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-left {
  flex: 1 1 300px;
}

.footer-left h3 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #ff0000;
}

.footer-left p {
  line-height: 1.6;
  color: #000000;
}

.footer-right {
  display: flex;
  flex: 2 1 600px;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-box {
  flex: 1;
  min-width: 180px;
}

.footer-box h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ff0000;
}

.footer-box p,
.footer-box a,
.footer-box li {
  font-size: 14px;
  color: #000000;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-box a:hover {
  color: #f00505;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #000000;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #863131;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #080808;
}

.footer-bottom a {
  color: #ff0000;
  text-decoration: none;
}


/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-logo {
  width: 150px;
  margin-bottom: 20px;
  animation: pulse 1.5s infinite;
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: #f0f0f0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: -50%;
  width: 50%;
  height: 100%;
  background: #c70000;
  animation: loading 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes loading {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}

/* Welcome Popup */
.welcome-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.welcome-popup.show {
  display: flex;
  /* Flex when showing */
  opacity: 1;
}

.welcome-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: transparent;
  padding: 0;
  border-radius: 12px;
  /* Removed jarring entrance zoom popIn animation for a flat, stable modal fade-in transition */
}

.welcome-content img {
  max-width: 800px;
  max-height: 85vh;
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  cursor: default;
  /* Removed click-to-zoom interactive cursor */
}

.close-welcome {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #fff;
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10001;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================================
   Match & Launch Customization Page Styles
   ========================================= */

.match-launch-section {
  padding: 60px 20px;
  background: url('../assets/images/premium_bg.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  min-height: calc(100vh - 100px);
}

.match-launch-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left Column: Visual & Summary */
.ml-visual-col {
  flex: 1;
  position: relative;
}

.ml-sticky-box {
  position: sticky;
  top: 100px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #db0000;
}

.ml-title {
  font-size: 2rem;
  color: #111;
  margin-bottom: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

.ml-subtitle {
  color: #666;
  margin-bottom: 20px;
  font-size: 1rem;
}

.ml-image-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
  background: #eaeaea;
}

.ml-drone-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.ml-drone-img:hover {
  transform: scale(1.03);
}

.ml-specs-summary {
  background: #1a1a1a;
  color: white;
  padding: 20px;
  border-radius: 12px;
}

.ml-specs-summary h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #db0000;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

#ml-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#ml-summary-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
}

#ml-summary-list li strong {
  color: #aaa;
}

#ml-summary-list li span {
  font-weight: 600;
  text-align: right;
  max-width: 60%;
}

/* Review Input Form */
.ml-review-box {
  margin-top: 25px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
}

.star-rating-input {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  gap: 5px;
}

.star-rating-input .fas {
  transition: color 0.2s;
}

.star-rating-input .fas.active {
  color: #f59e0b;
}

.review-input,
.review-textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 0.9rem;
  font-family: inherit;
  margin-bottom: 10px;
  background: #fdfdfd;
  box-sizing: border-box;
  color: #111;
}

.review-input:focus,
.review-textarea:focus {
  outline: none;
  border-color: #db0000;
}

.review-textarea {
  resize: vertical;
}

.review-submit-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.review-submit-btn:hover {
  background: #db0000;
}

.submitted-review {
  margin-bottom: 15px;
  padding: 12px;
  background: #fff;
  border-left: 4px solid #db0000;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.submitted-review .stars {
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.submitted-review .text {
  font-size: 0.85rem;
  color: #555;
  font-style: italic;
  margin: 0 0 5px 0;
  line-height: 1.4;
}

.submitted-review .author {
  font-size: 0.8rem;
  font-weight: 700;
  color: #111;
}

/* Right Column: Form */
.ml-form-col {
  flex: 1.2;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ml-section-heading {
  font-size: 1.4rem;
  color: #111;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ml-section-heading i {
  color: #db0000;
}

.mt-6 {
  margin-top: 2rem !important;
}

.ml-input-group {
  margin-bottom: 20px;
}

.ml-input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  font-size: 0.95rem;
}

.ml-input-group select,
.ml-input-group input,
.ml-input-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  background-color: #f9f9f9;
  color: #111;
}

.ml-input-group select:focus,
.ml-input-group input:focus,
.ml-input-group textarea:focus {
  outline: none;
  border-color: #db0000;
  box-shadow: 0 0 0 3px rgba(219, 0, 0, 0.1);
  background-color: #fff;
}

.ml-submit-btn {
  width: 100%;
  background: #db0000;
  color: white;
  border: none;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.ml-submit-btn:hover {
  background: #b30000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(219, 0, 0, 0.3);
}

.ml-submit-btn i {
  font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 900px) {
  .match-launch-container {
    display: flex;
    flex-direction: column;
  }

  .ml-visual-col,
  .ml-form-col {
    flex: 1;
    width: 100%;
  }

  .ml-sticky-box {
    position: relative;
    top: 0;
  }
}

@media (max-width: 480px) {
  .ml-form-col {
    padding: 20px;
  }
}

/* Category Selection Step */
.ml-category-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ml-header-text {
  margin-bottom: 40px;
}

.ml-header-text h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.ml-header-text p {
  font-size: 1.1rem;
  color: #555;
}

.ml-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.ml-category-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 30px 20px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-bottom: 4px solid transparent;
}

.ml-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(219, 0, 0, 0.15);
  border-bottom: 4px solid #db0000;
  background: rgba(255, 255, 255, 1);
}

.ml-card-img {
  width: 100px;
  height: 100px;
  background: #fdfdfd;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #db0000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.ml-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ml-category-card h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

.ml-category-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.ml-back-btn {
  background: none;
  border: none;
  color: #666;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.ml-back-btn:hover {
  color: #db0000;
}

/* Tool Cards UI */
.tool-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.tool-card {
  background: #fdfdfd;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 140px;
}

.tool-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.tool-card.selected {
  border-color: #db0000;
  background: #fff5f5;
  box-shadow: 0 0 0 1px #db0000;
}

.tool-card-img-wrapper {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-card-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tool-card-name {
  font-size: 0.85rem;
  color: #334155;
  font-weight: 600;
  line-height: 1.3;
}

/* Horizontal Scroll Section (Popular/Best Selling) */
.horizontal-scroll-section {
  margin-top: 40px;
  padding-top: 10px;
  border-top: 1px solid #eaeaea;
  width: 100%;
}

.horizontal-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px;
  scroll-snap-type: x mandatory;
}

.horizontal-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.horizontal-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.horizontal-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #db0000;
}

.product-scroll-card {
  position: relative;
  min-width: 220px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.product-scroll-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #db0000;
  background: rgba(255, 255, 255, 1);
}

.product-scroll-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid #eaeaea;
}

.scroll-card-info {
  padding: 12px;
}

.scroll-card-info h4 {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin: 0 0 5px 0;
  font-family: 'Rajdhani', sans-serif;
}

.scroll-card-desc {
  font-size: 0.85rem;
  color: #555;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.scroll-card-info .rating {
  color: #ffa41c;
  font-size: 0.9rem;
}

.scroll-card-info .rating span {
  color: #007185;
  margin-left: 4px;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-popular {
  background-color: #e63946;
}

.badge-best {
  background-color: #ff9f1c;
  color: #111;
}

.badge-top {
  background-color: #2a9d8f;
}

.badge-new {
  background-color: #4361ee;
}

/* ==========================================================================
   FLOATING INTERACTIVE TESTIMONIALS STYLE SYSTEM
   ========================================================================== */

.floating-testimonial-section {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  padding: 6.5rem 2rem;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.floating-testimonial-section .dot-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.08) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.8;
  z-index: 1;
}

.floating-testimonials-container {
  max-width: 1200px;
  height: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Center Branding */
.testimonial-center-branding {
  position: absolute;
  top: 35%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 4;
  pointer-events: none;
}

.testimonial-center-branding .branding-subtitle {
  font-size: 1.15rem;
  font-weight: 800;
  color: #db0000;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
}

.testimonial-center-branding .branding-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 0.04em;
  margin: 0.2rem 0 0 0;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.0;
}

/* Bottom Preview Block Placement */
.testimonial-bottom-preview-block {
  position: absolute;
  bottom: 6%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 580px;
  z-index: 6;
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

/* Premium Glassmorphic Testimonial Card */
.center-preview-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  padding: 1.5rem 1.85rem;
  box-shadow: 0 25px 50px -15px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(15, 23, 42, 0.03);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 1;
  transform: translateY(0);
}

.center-preview-card.updating {
  opacity: 0;
  transform: translateY(8px) scale(0.99);
}

/* Card Header Layout */
.preview-card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  width: 100%;
}

.preview-avatar-container {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}

.preview-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-avatar-initial {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.3rem;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
}

.node-avatar-initial-bg {
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.node-avatar-initial {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.6rem;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.preview-author-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.preview-author-name {
  font-size: 0.95rem;
  font-weight: 750;
  color: #0f172a;
  margin: 0 0 0.1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}

.preview-author-role {
  font-size: 0.78rem;
  font-weight: 700;
  color: #db0000;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Inter', sans-serif;
}

.preview-stars {
  color: #fbbf24;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.preview-quote {
  font-size: 0.98rem;
  color: #334155;
  line-height: 1.6;
  font-weight: 500;
  font-style: italic;
  margin: 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

/* Floating Avatars */
.floating-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: auto;
}

.floating-node.tag-left {
  flex-direction: row-reverse;
}

.node-avatar-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  background-clip: padding-box;
}

.node-avatar-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.node-tag {
  background: #0f172a;
  color: #ffffff;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

/* Node Animations */
.node-1 {
  animation: float-1 6s ease-in-out infinite;
}

.node-2 {
  animation: float-2 7s ease-in-out infinite;
}

.node-3 {
  animation: float-3 5.5s ease-in-out infinite;
}

.node-4 {
  animation: float-4 8s ease-in-out infinite;
}

.node-5 {
  animation: float-5 6.5s ease-in-out infinite;
}

.node-6 {
  animation: float-6 7.5s ease-in-out infinite;
}

.node-7 {
  animation: float-7 6.2s ease-in-out infinite;
}

.node-8 {
  animation: float-8 5.8s ease-in-out infinite;
}

/* Active & Hover States */
.floating-node.active .node-avatar-wrapper {
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(219, 0, 0, 0.25), 0 20px 30px rgba(15, 23, 42, 0.12);
  border-color: #db0000;
}

.floating-node.active .node-tag {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) translateY(4px);
}

.floating-node:hover {
  animation-play-state: paused;
  z-index: 10;
  cursor: pointer;
}

.floating-node:hover .node-avatar-wrapper {
  transform: scale(1.2);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
  border-color: #db0000;
}

.floating-node:hover .node-tag {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) translateY(4px);
}

/* Floating Animations */
@keyframes float-1 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes float-2 {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-10px) translateX(8px);
  }
}

@keyframes float-3 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(-2deg);
  }
}

@keyframes float-4 {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-8px) translateX(-6px);
  }
}

@keyframes float-5 {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-11px) translateX(7px);
  }
}

@keyframes float-6 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-13px) rotate(1deg);
  }
}

@keyframes float-7 {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-9px) translateX(-7px);
  }
}

@keyframes float-8 {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .floating-testimonial-section {
    padding: 5rem 1.5rem;
  }

  .floating-testimonials-container {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .testimonial-center-branding {
    position: static;
    transform: none;
    max-width: 550px;
    margin: 0;
  }

  .testimonial-center-branding h2 {
    font-size: 2.75rem;
  }

  .floating-node-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    z-index: 3;
  }

  .floating-node,
  .floating-node.tag-left {
    position: static !important;
    animation: none !important;
    transform: none !important;
    flex-direction: column !important;
    gap: 0.5rem;
    width: calc(25% - 1.5rem);
    min-width: 80px;
    align-items: center;
    text-align: center;
  }

  .node-avatar-wrapper {
    width: 60px;
    height: 60px;
  }

  .node-tag {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
  }

  .floating-node.active .node-tag {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: #db0000;
  }

  .floating-node:hover .node-tag {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

@media (max-width: 575px) {
  .testimonial-center-branding h2 {
    font-size: 2.25rem;
  }

  .center-preview-card {
    padding: 1.5rem 1.25rem;
  }

  .preview-quote {
    font-size: 0.95rem;
  }

  .floating-node,
  .floating-node.tag-left {
    width: calc(33.33% - 1rem);
  }

/* Latest Blogs Section on Index Page */
.latest-blogs-section {
  padding: 80px 5%;
  background-color: #f8fafc;
  width: 100%;
}

.blogs-header-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.view-all-blogs-btn {
  background-color: #0f172a;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-all-blogs-btn:hover {
  background-color: #dc2626;
  transform: translateY(-2px);
  color: white;
}

.index-blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blogs-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* Blog Card Styles for Index Page */
.blog-category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  background-color: rgba(15, 23, 42, 0.04);
  line-height: 1;
}
.tag-agri { color: #16a34a; background-color: rgba(22, 163, 74, 0.08); }
.tag-training { color: #db0000; background-color: rgba(219, 0, 0, 0.08); }
.tag-toy { color: #0284c7; background-color: rgba(2, 132, 199, 0.08); }
.tag-tech { color: #7c3aed; background-color: rgba(124, 58, 237, 0.08); }
.tag-news { color: #ea580c; background-color: rgba(234, 88, 12, 0.08); }

.blog-read-time {
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.02);
  border-color: rgba(203, 213, 225, 0.8);
}

.blog-card-img-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: #f1f5f9;
}

.blog-card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-card-img-container img {
  transform: scale(1.06);
}

.blog-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1; 
}

.blog-card-content h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  letter-spacing: -0.015em;
  transition: color 0.2s;
}

.blog-card:hover .blog-card-content h3 {
  color: #db0000;
}

.blog-card-content p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.25rem;
  margin-top: auto;
}

.blog-card-footer .blog-post-date {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* ==========================================
   CUSTOM CONTEXT MENU
   ========================================== */
.custom-context-menu {
  position: fixed;
  z-index: 100000;
  width: 220px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(15px) saturate(160%);
  -webkit-backdrop-filter: blur(15px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: none;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  transform: scale(0.95);
  opacity: 0;
  transform-origin: top left;
  transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.15s ease;
}

.custom-context-menu.active {
  display: block;
  transform: scale(1);
  opacity: 1;
}

.custom-context-menu .menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.custom-context-menu .menu-item i {
  font-size: 1rem;
  width: 16px;
  text-align: center;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.custom-context-menu .menu-item:hover {
  background: rgba(220, 38, 38, 0.15);
  color: #fff;
  border-left-color: #dc2626;
}

.custom-context-menu .menu-item:hover i {
  color: #ef4444;
}

.custom-context-menu .menu-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 6px 0;
  border: none;
}

/* Copy success toast notification */
.context-menu-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 100001;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.context-menu-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================
   VPN RESTRICTION OVERLAY
   ========================================== */
.vpn-blocked-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: radial-gradient(circle at center, #1a0505 0%, #0c0202 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 20px;
}

.vpn-blocked-card {
  max-width: 500px;
  width: 100%;
  background: rgba(20, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(220, 38, 38, 0.05);
  animation: vpnCardEntry 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes vpnCardEntry {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.vpn-icon-container {
  width: 80px;
  height: 80px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px auto;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
  position: relative;
}

.vpn-icon-container i {
  font-size: 2.2rem;
  color: #ef4444;
  animation: pulseIcon 2s infinite ease-in-out;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.6)); }
}

.vpn-blocked-card h1 {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.025em;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
}

.vpn-blocked-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.vpn-retry-btn {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.vpn-retry-btn:hover {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
  transform: translateY(-2px);
}

.vpn-retry-btn:active {
  transform: translateY(0);
}

.vpn-retry-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.vpn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: vpnSpinnerRotation 0.8s linear infinite;
}

@keyframes vpnSpinnerRotation {
  to { transform: rotate(360deg); }
}

.vpn-retry-btn.loading .vpn-spinner {
  display: inline-block;
}

.vpn-retry-btn.loading i {
  display: none;
}

/* ==========================================
   SCROLL TO TOP BUTTON (Mobile & Tablet)
   ========================================== */
.scroll-to-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-to-top-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.scroll-to-top-btn:hover {
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  transform: translateY(-2px) scale(1.05);
}

.scroll-to-top-btn:hover i {
  transform: translateY(-2px);
}

.scroll-to-top-btn:active {
  transform: translateY(0) scale(0.95);
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Restrict to Mobile and Tablet viewports (Hide on Desktop) */
@media (min-width: 1025px) {
  .scroll-to-top-btn {
    display: none !important;
  }
}