/* ==========================================================================
   Vernotec - Complete Redesign
   Simplified, AWS Compatible, Perfect Alignment
   ========================================================================== */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-wide {
  max-width: 100%; /* Full screen width */
  padding: 0 40px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

.highlight {
  color: #D4AF37;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}

.btn-primary {
  background: #D4AF37;
  color: white;
}

.btn-primary:hover {
  background: #C5A028;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #D4AF37;
  border-color: #D4AF37;
}

.btn-outline:hover {
  background: #D4AF37;
  color: white;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Header - Reduced Size */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  /* Pure White */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header .container {
  max-width: 100%;
  padding-left: 60px;
  padding-right: 30px;
  /* Shifted buttons more to the right */
}

@media (max-width: 1200px) {
  .header .container {
    padding: 0 30px;
  }
}

@media (max-width: 1024px) {
  .header .container {
    padding: 0 20px;
  }

  .nav {
    display: none !important;
    /* Hide desktop nav for tablets */
  }

  .mobile-toggle {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .header .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .logo-title {
    font-size: 1.1rem;
  }

  .logo-subtitle {
    font-size: 0.55rem;
  }

  .header-actions {
    gap: 12px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  /* Pushes everything else to the right */
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-toggle {
  background: none;
  border: none;
  color: #D4AF37;
  /* Birla Red */
  font-size: 1.15rem;
  /* Reduced size */
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 5px;
}

.search-toggle:hover {
  color: #0f172a;
  transform: scale(1.1);
}

/* Logo - Smaller */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.2));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(-5deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-size: 0.65rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Desktop Navigation - Compact */
.nav {
  display: flex;
  margin-right: 80px;
  /* Increased space to shift nav further left */
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-item {
  border-right: 1px solid #e2e8f0;
}

.nav-item:last-child {
  border-right: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
  padding: 30px 18px;
  /* Reduced side padding */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: block;
}

.nav-link:hover,
.nav-link.active {
  color: #D4AF37;
  /* Birla Red */
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #D4AF37;
}

/* Dropdown Menu Styles - Premium Glassmorphism */
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  /* Brighter Glass Dropdown */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: all 0.3s ease;
  z-index: 1000;
  border-top: 3px solid #D4AF37;
}

/* Invisible bridge to prevent menu from closing when moving mouse */
.nav-item.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.nav-item.dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
}

.dropdown-item-custom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-transform: none;
}

.dropdown-item-custom:last-child {
  margin-bottom: 0;
}

.dropdown-item-custom:hover {
  background: #f8fafc;
  color: #D4AF37;
}

.dropdown-item-custom i {
  color: #D4AF37;
  font-size: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.dropdown-item-custom:hover i {
  background: #D4AF37;
  color: white;
  transform: scale(1.1);
}

/* Mega Menu Styles */
.nav-item.mega-dropdown {
  position: static; /* Required for full-width mega menu relative to header/nav */
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #f0f9ff; /* Soft Light Blue */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 50px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  border-top: 1px solid #f1f5f9;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Arrow Indicator */
.nav-item.mega-dropdown:hover::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffb703; /* Mango Yellow Arrow */
  z-index: 1001;
  animation: arrowFade 0.3s ease;
}

@keyframes arrowFade {
  from { opacity: 0; transform: translate(-50%, 5px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.mega-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.mega-menu-col {
  padding-right: 20px;
}

.mega-menu-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
}

.mega-menu-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ffb703; /* Mango Yellow */
}

.mega-menu-list {
  padding: 0;
  margin: 0;
}

.mega-menu-list li {
  margin-bottom: 12px;
}

.mega-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  transition: all 0.2s ease;
  padding: 5px 0;
}

.mega-menu-link i {
  color: #ffb703; /* Mango Yellow */
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.mega-menu-link:hover {
  color: #ffb703; /* Mango Yellow */
  transform: translateX(5px);
}

.dropdown-toggle i {
  font-size: 0.7rem;
  margin-left: 6px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.nav-item.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Mobile Dropdown - Premium Integrated Look */
.mobile-dropdown {
  background: transparent;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown.active {
  background: rgba(255, 255, 255, 0.04);
}

.mobile-submenu {
  list-style: none;
  padding: 5px 0 10px 20px;
  display: none;
  text-align: left;
  border-left: 1px solid #D4AF37;
  margin-left: 5px;
}

.mobile-dropdown.active .mobile-submenu {
  display: block;
  animation: fadeInMobile 0.5s ease;
}

@keyframes fadeInMobile {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-submenu-link {
  display: block;
  padding: 10px 0;
  font-size: 1.1rem;
  color: #475569; /* Darker submenu */
  font-weight: 600;
  transition: all 0.2s ease;
}

.mobile-submenu-link:hover {
  color: #D4AF37;
}

.mobile-submenu-link i {
  display: none;
  /* Hide icons for cleaner look */
}

.mobile-nav-footer {
  margin-top: auto;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-contact-info {
  margin-bottom: 20px;
}

.mobile-contact-info p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 5px;
}

.mobile-contact-info i {
  color: #D4AF37;
  margin-right: 8px;
}

.mobile-socials {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.mobile-socials a {
  font-size: 1.4rem;
  color: #0f172a; /* Dark social icons */
  transition: all 0.3s ease;
}

.mobile-socials a:hover {
  color: #D4AF37;
  transform: translateY(-5px);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  width: 32px;
  /* Reduced size */
  height: 32px;
}

.toggle-line {
  width: 22px;
  /* Reduced width */
  height: 2px;
  /* Thinner lines */
  background: #0f172a;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  /* Full Screen */
  height: 100vh;
  background: rgba(255, 255, 255, 0.95); /* Bright Glass */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 1051;
  transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  /* Smoother slide */
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px 40px;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  filter: drop-shadow(0 0 10px rgba(237, 28, 36, 0.3));
  /* Subtle red glow for focus */
}

.mobile-logo img {
  width: 55px;
  /* Larger logo */
  height: 55px;
  transition: transform 0.3s ease;
}

.mobile-logo:hover img {
  transform: scale(1.05);
}

.mobile-logo-text {
  display: flex;
  flex-direction: column;
}

.m-title {
  font-weight: 800;
  font-size: 1.2rem;
  color: #0f172a; /* Dark Text */
  line-height: 1;
}

.m-subtitle {
  font-size: 0.55rem;
  color: #64748b; /* Darker subtitle */
  letter-spacing: 1px;
  margin-top: 4px;
}

.mobile-close {
  font-size: 1.8rem;
  cursor: pointer;
  color: #0f172a; /* Dark Text */
  background: none;
  border: none;
  transition: transform 0.3s ease;
}

.mobile-close:hover {
  transform: rotate(90deg);
}

.mobile-main-nav {
  flex-grow: 1;
  display: block;
  /* Removed centering */
  padding-top: 10px;
  /* Moves links up */
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  text-align: left;
  /* Professional left alignment */
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  font-size: 1.25rem;
  /* Professional compact size */
  font-weight: 700;
  color: #0f172a; /* Dark Text */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link.active {
  color: #D4AF37;
}

.mobile-nav-link:hover {
  color: #D4AF37;
  padding-left: 10px;
}

.mobile-dropdown-toggle {
  display: flex !important;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero-bg, .hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg img, .slide-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease-out;
}

.swiper-slide-active .slide-bg-img {
  transform: scale(1.15) !important;
}

.hero-overlay, .hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.hero-badge {
  display: inline-block;
  background: #D4AF37;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: #e5e7eb;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-features .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e7eb;
}

.hero-features .feature i {
  color: #10b981;
}

/* Sections */
.section {
  padding: 40px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-subtitle {
  display: inline-block;
  background: #D4AF37;
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
}

/* About Section - Pro Layout */
.about {
  background: #ffffff;
  padding: 40px 0;
}

.about .container {
  max-width: 1200px;
}

.feature-item-pro {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: 0.3s;
}

.feature-item-pro:hover {
  transform: translateX(10px);
}

.feature-icon-pro {
  min-width: 60px;
  height: 60px;
  background: #f0f9ff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb703; /* Mango Yellow */
  font-size: 1.5rem;
  box-shadow: 0 10px 20px rgba(240, 249, 255, 1);
}

.feature-text-pro h4 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 5px;
  font-weight: 700;
}

.feature-text-pro p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Image Wrapper & Experience Badge */
.about-img-wrap {
  position: relative;
  padding: 20px;
}

.about-img-wrap img {
  position: relative;
  z-index: 2;
  border: 8px solid #ffffff;
}

.img-border-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(#ffb703 20%, transparent 20%);
  background-size: 15px 15px;
  opacity: 0.2;
  z-index: 1;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #ffb703;
  color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 15px 35px rgba(255, 183, 3, 0.3);
  min-width: 160px;
}

.exp-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.85rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Stats Section Update */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 80px;
  padding: 40px;
  background: #f0f9ff;
  border-radius: 30px;
}

/* Infinite Logo Marquee */
.client-strip-section {
  padding: 15px 0 5px 0;
  position: relative;
  background: linear-gradient(-45deg, #0f172a, #1e293b, #202b3c, #0f172a);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  overflow: hidden;
  border-bottom: 2px solid #D4AF37;
}

.client-strip-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.client-success-strip {
  margin-top: 0;
  padding: 20px 0 10px;
  text-align: center;
  background: #ffffff;
}

.client-strip-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.client-slider-container {
  overflow: hidden;
  padding: 5px 0;
  position: relative;
  white-space: nowrap;
  z-index: 1; /* Above the dot pattern */
}

/* Gradient Mask for Smooth Fade at Edges */
.client-slider-container::before,
.client-slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.client-slider-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0) 100%);
}

.client-slider-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0) 100%);
}

.client-logos-track {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  animation: logoScroll 25s linear infinite;
}

.client-logo-item {
  height: 60px;
  min-width: 140px;
  width: auto;
  opacity: 1;
  filter: none;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
  padding: 10px 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logo-item img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.client-logo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.15);
}

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* New Solutions Section - XPS Style */
.xps__solution {
  background: #e2e8f0;
  padding: 100px 0;
  overflow: hidden;
}

.xps__solution .inner_header {
  margin-bottom: 60px;
}

.xps__solution .inner_header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.xps__solution .inner_header h2 span {
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.xps__solution .inner_header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #D4AF37;
  border-radius: 2px;
}

/* Soltion Carousel Item */
.soltion .item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  margin: 15px;
}

.soltion .item:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

.soltion figure {
  margin: 0;
  height: 350px;
  overflow: hidden;
}

.soltion figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.soltion .item:hover figure img {
  transform: scale(1.15);
}

.solution_info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transform: translateY(60px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.soltion .item:hover .solution_info {
  transform: translateY(0);
  background: linear-gradient(to top, #D4AF37 0%, rgba(212, 175, 55, 0.95) 100%);
}

.solution_info img {
  width: 45px !important;
  height: 45px !important;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 5px;
}

.sol_name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.2;
}

.sol_desc {
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.soltion .item:hover .sol_desc {
  opacity: 1;
  transform: translateY(0);
}

/* Soltion Owl Nav & Dots */
.soltion.owl-theme .owl-nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.soltion.owl-theme .owl-nav [class*='owl-'] {
  width: 50px;
  height: 50px;
  background: #f8fafc !important;
  color: #0f172a !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.soltion.owl-theme .owl-nav [class*='owl-']:hover {
  background: #D4AF37 !important;
  color: white !important;
  transform: scale(1.1);
}

.soltion.owl-theme .owl-dots {
  margin-top: 30px;
}

.soltion.owl-theme .owl-dot span {
  width: 10px;
  height: 10px;
  background: #e2e8f0;
  transition: 0.3s;
}

.soltion.owl-theme .owl-dot.active span {
  width: 30px;
  background: #D4AF37;
}

@media (max-width: 1300px) {
  .services-nav-next {
    right: 0 !important;
  }

  .services-nav-prev {
    left: 0 !important;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #D4AF37, #C5A028);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
  margin-top: 5px;
}

/* Services */
.services {
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4AF37, #C5A028);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-top: 15px;
  margin-bottom: 12px;
  font-size: 1.35rem;
  color: #1a1a1a;
  min-height: 3.4rem;
  /* Standardizes 1 and 2 line titles */
  display: flex;
  align-items: center;
}

.service-card p {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 20px;
  min-height: 4rem;
  /* Standardizes description height */
  line-height: 1.5;
}

.service-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.4;
}

.service-list i {
  color: #10b981;
  font-size: 0.85rem;
  margin-top: 3px;
}

/* Services Swiper Styles */
.services-swiper {
  padding: 20px 10px 60px !important;
  margin: 0 -10px;
}

.services-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.services-swiper .service-card {
  width: 100%;
  margin-bottom: 10px;
}

.services-pagination {
  bottom: 10px !important;
}

.services-nav-next,
.services-nav-prev {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #D4AF37 !important;
}

.services-nav-next:after,
.services-nav-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.services-nav-next {
  right: 0;
}

.services-nav-prev {
  left: 0;
}

@media (max-width: 768px) {

  .services-nav-next,
  .services-nav-prev {
    display: none;
  }
}

/* Solutions */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.solution-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  border-color: #D4AF37;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.solution-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #D4AF37, #C5A028);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.solution-title h3 {
  margin-bottom: 5px;
}

.solution-tag {
  background: #D4AF37;
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.solution-features {
  margin: 20px 0;
  flex: 1;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #555;
}

.solution-features i {
  color: #10b981;
}

.solution-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.solution-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #D4AF37;
}

/* ==========================================================================
   CONTACT SECTION - CLEAN MINIMALIST LIGHT
   ========================================================================== */
.contact {
  background: #f8fafc;
  /* Airy, modern light gray */
  position: relative;
  overflow: hidden;
  color: #1a1a1a;
  border-top: 1px solid #f1f5f9;
}

.contact .section-header h2,
.contact .section-header .section-desc {
  color: #1a1a1a;
}

.contact .section-header .section-subtitle {
  background: #D4AF37;
  color: #fff;
}

/* Contact Info Items - Specific Override for Light Theme */
.contact-info .info-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02) !important;
  backdrop-filter: none !important;
  padding: 24px;
  border-radius: 12px;
  transition: 0.3s;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-info .info-card:hover {
  transform: translateY(-5px);
  border-color: #D4AF37 !important;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.08) !important;
}

.contact-info .info-details h4 {
  color: #1e293b !important;
}

.contact-info .info-details p {
  color: #64748b !important;
}

/* Map Container */
.map-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 0;
}

.contact-form .form-group {
  margin-bottom: 24px;
  width: 100%;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #D4AF37, #C5A028);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Contact Form - Light Theme */
.contact-right {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  backdrop-filter: none !important;
  padding: 40px;
  border-radius: 20px;
}

.contact-right h3 {
  color: #1e293b !important;
  text-align: center;
  margin-bottom: 25px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff !important;
  border: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8 !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #D4AF37 !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
  outline: none;
}

.contact-form select {
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%2364748b"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"/></svg>') !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 16px !important;
  padding-right: 45px !important;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  margin-top: 10px;
  justify-content: center;
}

/* Form Validation Styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: #10b981;
}

/* Footer - Reduced Width */
.footer {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

.footer-logo-text h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 2px;
}

.footer-logo-text p {
  font-size: 0.6rem;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.footer-desc {
  color: #bbb;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #D4AF37;
  transform: translateY(-2px);
}

.footer-col h5 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #bbb;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #444;
  border-radius: 6px;
  color: white;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: #888;
}

.newsletter-form button {
  padding: 10px 20px;
  background: #D4AF37;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-form button:hover {
  background: #C5A028;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #bbb;
  font-size: 0.85rem;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #D4AF37;
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #C5A028;
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  /* Contact Section Responsive */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .desktop-nav {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  /* Contact Section Mobile */
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 50px 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  /* Contact Section Small Mobile */
  .contact-left,
  .contact-right {
    padding: 20px;
  }

  .info-card {
    padding: 15px;
  }

  .contact-form button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Animation for form focus */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-wrapper>* {
  animation: fadeIn 0.5s ease-out;
}

/* Loading state for form */
.form-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.form-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  z-index: 1;
}

.form-loading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #D4AF37;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 2;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ============================================================
   HERO SLIDER - Professional Full-Screen Swiper
   ============================================================ */

.hero-video-section {
  padding-top: 0 !important;
  height: 100vh; /* Full viewport height */
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Gradient Overlay - Slate gradient matching dark theme palette */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.55) 60%, rgba(15, 23, 42, 0.35) 100%);
  z-index: 1;
}

/* Large Diagonal Red Pattern - High-End Aesthetic */
.hero-diagonal-pattern {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(237, 28, 36, 0.12),
    rgba(237, 28, 36, 0.12) 1px,
    transparent 1px,
    transparent 15px
  );
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(to right, black 30%, transparent 100%);
}

.hero-diagonal-logo {
  position: absolute;
  bottom: 40px;
  left: 5%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 5px;
  animation: heroIn 0.7s ease 0.5s forwards;
  opacity: 0;
}

.hero-diagonal-logo .logo-brand {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  text-transform: uppercase;
}

.hero-diagonal-logo .logo-brand span {
  color: #D4AF37;
}

.hero-diagonal-logo .logo-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Inner wrapper above overlay */
.hero-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 80px 0 40px;
}

/* Custom padding for hero container to push content slightly right for pro look */
.hero-video-section .container {
  padding-left: 5%;
}

/* Slide Content - Left Aligned */
.hero-slide-content {
  max-width: 900px;
  margin-left: 0;
  text-align: left;
  color: #fff;
}

.hero-tagline {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 0.5px;
  animation: heroIn 0.7s ease 0.1s forwards;
  opacity: 0;
}

/* Report Badge */
.hero-report-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  animation: heroIn 0.7s ease 0.4s forwards;
  opacity: 0;
}

.badge-pattern {
  width: 45px;
  height: 45px;
  background: repeating-linear-gradient(
    -45deg,
    #D4AF37,
    #D4AF37 2px,
    transparent 2px,
    transparent 8px
  );
  position: relative;
}

.badge-text {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Heading */
.hero-slide-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem) !important; /* Slightly larger for pro feel */
  color: #fff !important;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-highlight {
  color: #D4AF37; /* Gold accent */
  position: relative;
  display: inline;
}

/* Description */
.hero-desc {
  font-size: 1.15rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 0 25px !important;
  text-align: left;
}

/* CTA Buttons */
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 0 !important;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #ffb703 0%, #D4AF37 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  text-decoration: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 183, 3, 0.6);
  color: #fff;
  filter: brightness(1.05);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #D4AF37;
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}



/* Navigation Arrows */
.hero-nav-next,
.hero-nav-prev {
  width: 50px !important;
  height: 50px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease !important;
}

.hero-nav-next::after,
.hero-nav-prev::after {
  font-size: 14px !important;
  color: #fff !important;
}

.hero-nav-next:hover,
.hero-nav-prev:hover {
  background: #D4AF37 !important;
  border-color: #D4AF37 !important;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5) !important;
}

/* Pagination Dots */
.hero-pagination {
  bottom: 24px !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  transition: all 0.3s !important;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff !important;
  width: 28px !important;
  border-radius: 5px !important;
}

/* Progress Bar */
.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 10;
}

.hero-progress-inner {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #D4AF37, #E6C280);
  border-radius: 0 2px 2px 0;
}

/* Scroll Down */
.hero-scroll-down {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.hero-scroll-down:hover {
  color: #fff;
}

.hero-scroll-icon {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroScrollBounce 2s ease-in-out infinite;
}

@keyframes heroScrollBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

/* Per-slide animation: reset hidden, then active animates in */
/* Page load animation for the video hero section content */
.hero-video-section .hero-tagline,
.hero-video-section .hero-slide-content h1,
.hero-video-section .hero-desc,
.hero-video-section .hero-actions,
.hero-video-section .hero-report-badge {
  opacity: 0;
  transform: translateY(20px);
}

.hero-video-section .hero-tagline {
  animation: heroIn 0.7s ease 0.1s forwards;
}

.hero-video-section .hero-slide-content h1 {
  animation: heroIn 0.7s ease 0.25s forwards;
}

.hero-video-section .hero-desc {
  animation: heroIn 0.7s ease 0.4s forwards;
}

.hero-video-section .hero-actions {
  animation: heroIn 0.7s ease 0.55s forwards;
}

.hero-video-section .hero-report-badge {
  animation: heroIn 0.7s ease 0.7s forwards;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-video-section {
    height: 100vh; 
    min-height: 450px;
  }
}

@media (max-width: 768px) {
  .hero-video-section .container {
    padding-left: 25px;
  }
  
  .hero-video-section h1 {
    font-size: 2.4rem !important;
    line-height: 1.1;
  }

  .hero-diagonal-logo {
    bottom: 30px;
    left: 25px;
  }

  .hero-diagonal-logo .logo-brand {
    font-size: 1.8rem;
  }
  
  .hero-diagonal-logo .logo-sub {
    font-size: 0.8rem;
  }

  .hero-report-badge {
    padding: 10px 15px;
  }

  .badge-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-video-section {
    height: 100vh;
    min-height: 380px;
  }

  .hero-video-section h1 {
    font-size: 2rem !important;
  }
  
  .hero-diagonal-logo .logo-brand {
    font-size: 1.5rem;
  }
}

/* Cleaned up height overrides */

/* ============================================================
   PARTNERS STRIP - Glassmorphism Logo Slider
   ============================================================ */
/* ============================================================
   PARTNERS STRIP - Premium Floating Glass Bar (Antigravity Edition)
   ============================================================ */
.partners-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  width: 100%;
  height: 100px;
  background: rgba(0, 0, 0, 0.3); /* Slightly darker for bottom flush */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Side fades for the sliding track */
.partners-strip::before,
.partners-strip::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.partners-strip::before {
  left: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.8), transparent);
}

.partners-strip::after {
  right: 0;
  background: linear-gradient(to left, rgba(15, 23, 42, 0.8), transparent);
}

.partners-inner {
  width: 100%;
  overflow: hidden;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 100px; /* Large spacing for luxury feel */
  animation: partnersScroll 65s linear infinite; /* User requested 65s */
  width: max-content;
}

.partner-item {
  flex-shrink: 0;
  opacity: 0.5;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0) invert(1); /* Pure white logos */
}

.partner-item:hover {
  opacity: 1;
  transform: scale(1.15);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.partner-item img {
  height: 40px; /* More professional size */
  width: auto;
  max-width: 140px;
  opacity: 0.6;
  filter: grayscale(1) brightness(1.5); /* Safe grayscale treatment */
  transition: all 0.4s ease;
  object-fit: contain;
}

.partner-item:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1);
  transform: scale(1.1);
}

@keyframes partnersScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); } /* Matches 3 duplicate sets */
}

@media (max-width: 991px) {
  .partners-strip {
    width: 95%;
    bottom: 15px;
    height: 70px;
    padding: 0 20px;
  }
  .partners-track {
    gap: 60px;
    animation-duration: 40s;
  }
  .partner-item img {
    height: 35px;
  }
}

/* ============================================================
   INTERACTIVE MOTION - Solution Cards
   ============================================================ */
.solution-card-premium {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 1 / 1.25; /* Taller professional aspect ratio */
  cursor: pointer;
  border: none;
}

.solution-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.solution-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(30, 58, 138, 0.65), rgba(30, 58, 138, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  transition: all 0.5s ease;
}

.solution-icon-wrap {
  width: 120px;
  height: 120px;
  border: 7px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  margin-bottom: 25px;
  transition: all 0.5s ease;
  background: transparent;
  box-shadow: none;
  position: relative;
  z-index: 10;
  margin-top: 0;
}

.solution-icon-wrap i::before {
  /* Restore original font-family/icon logic */
  font-family: "bootstrap-icons";
}

.solution-card-premium h3 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.solution-card-premium p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.solution-card-premium:hover p {
  opacity: 1;
  transform: translateY(0);
}

.solution-link {
  display: none;
}

/* Hover Effects */
.solution-card-premium:hover .solution-content {
  background: rgba(212, 175, 55, 0.85); /* Premium brand color overlay */
}

.solution-card-premium:hover .solution-img img {
  transform: scale(1.1);
}

.solution-card-premium:hover .solution-icon-wrap {
  transform: scale(1.1);
  border-color: #fff;
}

/* ============================================================
   FAB and Tracking Modal Styles (Moved from index.html)
   ============================================================ */
.fab-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1050;
}
.btn-fab {
  background: #2563eb;
  color: white;
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  border: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-fab:hover {
  background: #1d4ed8;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
  color: white;
}
.btn-fab i { font-size: 1.2rem; }
.fab-label { font-weight: 600; letter-spacing: 0.5px; }

/* Timeline Styles */
.tracking-timeline-v2 {
  position: relative;
  padding-left: 20px;
  margin-left: 10px;
  border-left: 2px solid #e2e8f0;
}
.timeline-node { position: relative; padding-bottom: 25px; }
.timeline-node::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2563eb;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}
.timeline-node:last-child { padding-bottom: 0; }
.timeline-date { font-size: 0.75rem; color: #64748b; margin-bottom: 2px; }
.timeline-status { font-weight: 600; font-size: 0.9rem; color: #1e293b; }
.timeline-notes { font-size: 0.8rem; color: #475569; margin-top: 2px; }

/* Modal Styles */
.track-modal .modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.track-modal .form-control {
  flex: 1 1 auto !important;
  min-width: 65%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid #e2e8f0;
  padding: 10px 16px;
  font-size: 0.95rem;
  height: 45px;
}
.track-modal .form-control:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  border-color: #2563eb;
}
.track-modal .btn-primary {
  flex: 0 0 auto !important;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-weight: 600;
  padding: 0 24px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

@media (max-width: 576px) {
  .fab-label { display: none; }
  .btn-fab { padding: 15px; border-radius: 50%; }
  .fab-wrapper { bottom: 20px; right: 20px; }
}