/*================================================
Optimized CSS for Jarvis and Sam Website
Only includes styles actually used by the website
=================================================*/

/* CSS Variables */
:root {
  --fontFamily: 'Inter', sans-serif;
  --headingFont: 'Inter', sans-serif;
  --mainColor: #6600FF;
  --mainColor2: #43A5FE;
  --mainColor3: #ff4800;
  --secounderyColor: #F2EDEB;
  --paragraphColor: #7A7A7A;
  --paragraphColorSecond: #B9B9BA;
  --gridColor: linear-gradient(94deg, var(--mainColor2) 21.18%, #0064C1 104.4%);
  --whiteColor: #ffffff;
  --blackColor: #16171A;
  --LightBg: #fcfaf8;
  --DarkBg: #05051E;
  --fontSize: 17px;
  --transition: .5s;
  /* Common text colors for consistency */
  --contentTextColor: rgba(224, 224, 224, 0.9);  /* Main content text - softer than pure white */
  --contentTextSecondary: rgba(224, 224, 224, 0.7);  /* Secondary text - less emphasis */
  --headingColor: #FFFFFF;  /* Keep headings white for emphasis */
}

/* Base Styles */
body {
  padding: 0;
  margin: 0;
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  background-color: var(--DarkBg);
  color: var(--contentTextColor);
  padding-top: 55px; /* Reduced from 70px for less spacing */
}

body.dark-theme {
  background-color: var(--DarkBg);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: var(--headingFont);
  color: var(--headingColor);
}

a {
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}

a:hover {
  color: var(--mainColor);
  text-decoration: none;
}

p {
  color: var(--contentTextColor);
  margin-bottom: 15px;
  line-height: 1.8;
  font-family: var(--fontFamily);
}

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

/* Utility Classes */
.ptb-100 {
  padding-top: 70px; /* Reduced from 100px */
  padding-bottom: 70px; /* Reduced from 100px */
}

.pt-100 {
  padding-top: 70px; /* Reduced from 100px */
}

.pb-100 {
  padding-bottom: 70px; /* Reduced from 100px */
}

.ptb-70 {
  padding-top: 50px; /* Reduced from 70px */
  padding-bottom: 50px; /* Reduced from 70px */
}

.pt-70 {
  padding-top: 50px; /* Reduced from 70px */
}

.pt-50 {
  padding-top: 40px; /* Reduced from 50px */
}

.pb-70 {
  padding-bottom: 50px; /* Reduced from 70px */
}

/* Button Styles */
.default-btn {
  background: rgba(0, 191, 255, 0.35);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 191, 255, 0.7);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 24px;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.3px;
  min-width: 140px;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 191, 255, 0.3);
}

.default-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.default-btn:hover {
  color: #FFFFFF;
  background: rgba(0, 191, 255, 0.25);
  border-color: rgba(0, 191, 255, 0.6);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 191, 255, 0.4);
  text-decoration: none;
}

.default-btn:hover::before {
  left: 100%;
}

.default-btn:active {
  transform: translateY(0) scale(0.98);
  transition: all 0.1s ease;
}

.default-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.default-btn:hover i {
  transform: translateX(3px);
}

/* Red Button Variant for Try Demo */
.default-btn.red-btn {
  background: rgba(255, 72, 0, 0.35);
  border: 2px solid rgba(255, 72, 0, 0.7);
  box-shadow: 0 8px 32px rgba(255, 72, 0, 0.3);
}

.default-btn.red-btn:hover {
  background: rgba(255, 72, 0, 0.25);
  border-color: rgba(255, 72, 0, 0.6);
  box-shadow: 0 12px 40px rgba(255, 72, 0, 0.4);
}

/* Purple Button Variant for Survey Submit */
.default-btn.purple-btn {
  background: rgba(102, 126, 234, 0.35);
  border: 2px solid rgba(102, 126, 234, 0.7);
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.default-btn.purple-btn:hover {
  background: rgba(102, 126, 234, 0.25);
  border-color: rgba(102, 126, 234, 0.6);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4);
}

/* Section Titles */
.section-title {
  max-width: 1000px;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  margin-right: auto;
  margin-left: auto;
}

.section-title h2 {
  margin-bottom: 0;
  font-size: 42px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.sub-title-2 {
  margin-bottom: 6px; /* Optimal spacing between subtitle and title */
}

.sub-title-2 p {
  background: linear-gradient(90deg, #00BFFF, #FF3333) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 900 !important; /* Bold weight to match header gradient vibrancy */
  padding-left: 0 !important;
  position: relative;
  font-size: 16px !important; /* Reduced from 20px for better proportion */
  display: block; /* Changed from inline-block for consistent alignment */
  text-transform: uppercase !important;
  letter-spacing: 1px !important; /* Slightly increased for better readability */
}

/* Additional paragraph description under h2 */
.section-title .section-description,
.section-description {
  margin-top: 10px; /* Reduced from 12px for tighter grouping */
  font-size: 18px;
  color: var(--contentTextColor);
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

/* Responsive adjustments for section titles */
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 30px; /* Reduced from 50px for mobile */
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .sub-title-2 {
    margin-bottom: 5px; /* Slightly tighter on mobile */
  }
  
  /* Title (h2) adjustments for mobile - reduced size */
  h2 {
    font-size: 28px !important;
  }
  
  .section-title h2 {
    font-size: 28px !important;
  }
  
  .section-title .section-description,
  .section-description {
    font-size: 16px;
    margin-top: 8px; /* Reduced from 10px */
  }
}

@media (max-width: 480px) {
  .section-title {
    margin-bottom: 20px; /* Further reduced for small mobile */
  }
  
  /* Further reduce h2 titles on very small screens */
  h2 {
    font-size: 24px !important;
  }
  
  .section-title h2 {
    font-size: 24px !important;
  }
  
  .sub-title-2 {
    margin-bottom: 4px; /* Compact spacing on small screens */
  }
  
  .section-title .section-description,
  .section-description {
    font-size: 14px;
    margin-top: 6px; /* Further reduced */
  }
}

/* Header Styles */
.navbar-area {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border-bottom: 1px solid #1A243D;
}

.navbar-area .navbar {
  padding: 10px 20px; /* Reduced vertical padding from 15px to 10px */
}

.navbar-area .navbar .navbar-brand {
  font-size: 28px;
  line-height: 1;
  padding: 0;
  font-family: var(--fontFamily);
  font-weight: 900;
  color: var(--whiteColor);
  flex: 1;
  max-width: calc(100% - 60px);
}

.navbar-area .navbar .navbar-brand h3 {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.5rem;
}

.navbar-area .navbar .navbar-brand h5 {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.1rem;
}

.navbar-area .navbar .navbar-toggler {
  color: var(--whiteColor);
  box-shadow: unset;
  border: none;
  padding: 0;
}

.navbar-area .navbar .navbar-toggler .burger-menu span {
  height: 3px;
  width: 30px;
  margin: 5px 0;
  display: block;
  background: var(--whiteColor);
}

.navbar-area .navbar .navbar-nav {
  margin: auto;
}

.navbar-area .navbar .navbar-nav .nav-item {
  position: relative;
  margin-right: 30px;
}

.navbar-area .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.navbar-area .navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: var(--whiteColor);
  transition: var(--transition);
  font-weight: 500;
  font-size: 16px;
  padding: 25px 0;
}

.navbar-area .navbar .navbar-nav .nav-item .nav-link:hover,
.navbar-area .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--whiteColor);
}

.navbar-area .navbar .navbar-nav > .nav-item > .nav-link:after {
  position: absolute;
  bottom: 20px;
  left: 0;
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--mainColor2);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.navbar-area .navbar .navbar-nav > .nav-item > .nav-link.active:after,
.navbar-area .navbar .navbar-nav > .nav-item > .nav-link:hover:after {
  visibility: visible;
  opacity: 1;
  width: 100%;
}

/* Override regular nav link underline rule specifically for dropdown toggles */
.navbar-area .navbar .navbar-nav > .nav-item.dropdown > .dropdown-toggle:after {
  /* Reset underline properties */
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  background-color: transparent !important;
  visibility: visible !important;
  opacity: 1 !important;
  
  /* Apply dropdown arrow properties */
  display: inline-block;
  margin-left: 8px;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid #FFFFFF;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: all 0.3s ease;
}

/* Ensure dropdown toggle gets same underline as regular nav items using ::before */
.navbar-area .navbar .navbar-nav > .nav-item.dropdown > .dropdown-toggle:before {
  position: absolute;
  bottom: 20px;
  left: 0;
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--mainColor2);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.navbar-area .navbar .navbar-nav > .nav-item.dropdown > .dropdown-toggle:hover:before {
  visibility: visible;
  opacity: 1;
  width: 100%;
}

.navbar-area .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-toggle::after {
  border-top-color: var(--mainColor2);
}


/* Fix navigation white line issue - override navbar underline styles (excluding dropdown arrows) */
.navbar-area .navbar .navbar-nav > .nav-item:not(.dropdown) > .nav-link:after {
  display: none !important;
}

.navbar-area .navbar .navbar-nav > .nav-item:not(.dropdown) > .nav-link:hover:after,
.navbar-area .navbar .navbar-nav > .nav-item:not(.dropdown) > .nav-link.active:after {
  display: none !important;
}

/* Hide the underline before element for dropdowns but keep the arrow after element */
.navbar-area .navbar .navbar-nav > .nav-item.dropdown > .dropdown-toggle:before {
  display: none !important;
}

.navbar-area .navbar .navbar-nav > .nav-item.dropdown > .dropdown-toggle:hover:before {
  display: none !important;
}

/* Re-add proper hover effects without bottom lines */
.navbar-area .navbar .navbar-nav .nav-item .nav-link:hover,
.navbar-area .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--mainColor2) !important;
  transition: color 0.3s ease;
}

/* Contact Us Button Styling - Global */
.contact-btn {
  background: linear-gradient(90deg, #00BFFF, #FF3333) !important;
  border: none !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 25px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  margin-left: 15px !important;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #0099CC, #CC0000) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0, 191, 255, 0.3) !important;
  text-decoration: none !important;
}

/* Force Contact Us button to be visible - Maximum specificity override */
.navbar-area .container .navbar .collapse.navbar-collapse .btn.contact-btn,
.navbar-area .container .navbar .navbar-collapse .contact-btn,
.navbar-area .navbar-collapse .contact-btn,
.collapse.navbar-collapse .contact-btn,
.navbar-area .btn.contact-btn,
a.contact-btn.btn {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1000 !important;
  position: relative !important;
  margin-left: 15px !important;
  background: linear-gradient(90deg, #00BFFF, #FF3333) !important;
  border: 2px solid rgba(0, 191, 255, 0.7) !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 25px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  min-width: 100px !important;
  height: auto !important;
  width: auto !important;
  max-width: none !important;
  float: none !important;
  clear: none !important;
  transform: none !important;
}

/* Mobile Contact Us button styling - Maximum specificity */
.offcanvas .offcanvas-body .mobile-contact-btn-container,
.offcanvas .mobile-contact-btn-container {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 20px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  text-align: center !important;
}

.offcanvas .offcanvas-body .mobile-contact-btn-container .contact-btn,
.offcanvas .mobile-contact-btn-container .contact-btn {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-left: 0 !important;
  width: 100% !important;
  max-width: 200px !important;
  text-align: center !important;
  margin: 0 auto !important;
}

/* Mobile Contact Button Container */
.mobile-contact-btn-container {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.mobile-contact-btn-container .contact-btn {
  margin-left: 0 !important;
  width: 100%;
  max-width: 200px;
  text-align: center;
}

/* Dropdown Styles */
.navbar-area .nav-item.dropdown {
  position: relative;
}

.navbar-area .dropdown-menu,
.navbar-area .enhanced-dropdown,
.navbar-area .dropdown-menu.enhanced-dropdown,
.navbar-area .nav-item .dropdown-menu.enhanced-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: block !important;
  visibility: hidden;
  opacity: 0;
  min-width: 200px;
  padding: 10px 0;
  margin: 0;
  font-size: 16px;
  background: #05051E !important;
  border: 2px solid rgba(0, 191, 255, 0.6) !important;
  border-radius: 12px !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9) !important;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.navbar-area .dropdown-menu.show {
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}

.navbar-area .dropdown-item,
.navbar-area .enhanced-dropdown .dropdown-item,
.navbar-area .dropdown-menu.enhanced-dropdown .dropdown-item {
  display: block;
  width: 100%;
  padding: 12px 20px !important;
  clear: both;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95) !important;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background: transparent !important;
  border: 0;
  transition: all 0.3s ease !important;
  font-size: 15px;
}

.navbar-area .dropdown-item:hover,
.navbar-area .dropdown-item:focus,
.navbar-area .enhanced-dropdown .dropdown-item:hover,
.navbar-area .enhanced-dropdown .dropdown-item:focus,
.navbar-area .dropdown-menu.enhanced-dropdown .dropdown-item:hover,
.navbar-area .dropdown-menu.enhanced-dropdown .dropdown-item:focus {
  color: #FFFFFF !important;
  background: rgba(0, 191, 255, 0.3) !important;
  text-decoration: none;
  border-radius: 8px !important;
  transform: translateX(0) !important;
}


/* Mobile Menu */
.offcanvas {
  background-color: #05051E !important;
  border: none;
  width: 80% !important;
}

.offcanvas-header {
  background-color: #05051E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  font-family: var(--fontFamily);
}

.offcanvas-body {
  background-color: #05051E;
  padding: 20px;
  font-family: var(--fontFamily);
}

.offcanvas .navbar-nav .nav-link {
  color: var(--contentTextColor) !important;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-family: var(--fontFamily);
  font-weight: 500;
}

.offcanvas .navbar-nav .nav-link:hover {
  color: #00BFFF !important;
  background: rgba(0, 191, 255, 0.1);
  padding-left: 10px;
}

/* Mobile Dropdown Styles */
.offcanvas .nav-item.dropdown {
  position: relative;
}

.offcanvas .dropdown-menu,
.offcanvas .enhanced-dropdown,
.offcanvas .dropdown-menu.enhanced-dropdown {
  position: static;
  display: none;
  width: 100%;
  padding: 0;
  margin: 0;
  background: rgba(5, 5, 30, 0.95) !important;
  border: 1px solid rgba(0, 191, 255, 0.5) !important;
  border-radius: 10px !important;
  backdrop-filter: blur(15px) !important;
  box-shadow: none;
  transform: none;
  opacity: 1;
  margin-top: 10px !important;
  border-left: 2px solid rgba(0, 191, 255, 0.3);
}

.offcanvas .dropdown-menu.show {
  display: block;
}

.offcanvas .dropdown-item,
.offcanvas .enhanced-dropdown .dropdown-item,
.offcanvas .dropdown-menu.enhanced-dropdown .dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 25px;
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  background: transparent !important;
  border: 0;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.offcanvas .dropdown-item:last-child {
  border-bottom: none;
}

.offcanvas .dropdown-item:hover,
.offcanvas .enhanced-dropdown .dropdown-item:hover,
.offcanvas .dropdown-menu.enhanced-dropdown .dropdown-item:hover {
  color: #FFFFFF !important;
  background: rgba(0, 191, 255, 0.2) !important;
  padding-left: 30px !important;
  text-decoration: none;
}

.offcanvas .btn-close {
  background: none;
  border: none;
  color: var(--contentTextColor);
  font-size: 24px;
  opacity: 1;
}

/* Hero Section */
.hero-section-2 {
  background: none;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 60px; /* Reduced from 100px */
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1; /* Ensure hero doesn't overlap blog section */
}

.hero-content-2 {
  text-align: center;
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.hero-content-2 h2 {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--whiteColor);
}

.hero-content-2 h2 .sub-head {
  background: var(--gridColor);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-content-2 .main-heading {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  white-space: nowrap;
  line-height: 1.3;
}

.hero-content-2 .main-heading .sub-head {
  font-size: 2.8rem;
  color: #00BFFF;
  display: block;
  margin-top: 1.2rem;
}

.hero-content-2 .hero-description {
  margin-bottom: 2rem !important;
  line-height: 1.6;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.hero-content-2 .hero-description p {
  font-size: 1.2rem;
  white-space: normal;
  display: inline-block;
  width: auto;
  max-width: 100%;
  color: var(--contentTextColor);
}

.hero-content-2 .hero-btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Floating Icons Animation */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.floating-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: float 15s infinite ease-in-out;
  opacity: 0.6;
  z-index: 0;
}

.floating-icon i {
  font-size: 60px;
  background: linear-gradient(90deg, #00BFFF, #FF3333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
}

/* Individual floating icon positioning */
.floating-icon.icon-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-icon.icon-2 {
  top: 20%;
  right: 8%;
  animation-delay: -2s;
}

.floating-icon.icon-3 {
  top: 60%;
  left: 3%;
  animation-delay: -4s;
}

.floating-icon.icon-4 {
  top: 70%;
  right: 5%;
  animation-delay: -1s;
}

.floating-icon.icon-5 {
  top: 40%;
  left: 15%;
  animation-delay: -3s;
}

.floating-icon.icon-6 {
  top: 50%;
  right: 15%;
  animation-delay: -5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(3deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(10px) rotate(-3deg); }
}

/* Hero text animations */
[data-animation] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-animation="fade-up"] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

[data-animation="fade-zoom-in"] {
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  transition: all 0.8s ease;
}

[data-animation].animate,
[data-animation="fade-up"].animate {
  opacity: 1;
  transform: translateY(0);
}

[data-animation="fade-zoom-in"].animate {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Animation delays */
[data-delay="0.1"] { transition-delay: 0.1s; }
[data-delay="0.2"] { transition-delay: 0.2s; }
[data-delay="0.3"] { transition-delay: 0.3s; }
[data-delay="0.4"] { transition-delay: 0.4s; }
[data-delay="0.5"] { transition-delay: 0.5s; }

/* About Section */
.about-section {
  padding-bottom: 100px;
}

.about-content {
  padding-left: 50px;
}

/* Apply consistent section title styling to About section */
.about-content .sub-title-2 {
  margin-bottom: 6px; /* Match the global sub-title-2 spacing */
}

.about-content .sub-title-2 p {
  background: linear-gradient(90deg, #00BFFF, #FF3333) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 900 !important;
  padding-left: 0 !important;
  position: relative;
  font-size: 16px !important;
  display: block;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.about-content h2 {
  color: var(--whiteColor);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  color: var(--contentTextColor);
  font-size: 17px;
  text-align: left;
  line-height: 1.8;
}

.about-content ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 35px;
}

.about-content ul li {
  color: var(--contentTextColor);
  margin-bottom: 10px;
  padding-left: 40px;
  position: relative;
  font-weight: 500;
  font-size: 18px;
}

.about-content ul li i {
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 24px;
  color: var(--mainColor2);
}

/* About Icons Grid */
.about-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 10px;
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.1), rgba(255, 51, 51, 0.1));
  border-radius: 12px;
  transition: all 0.3s ease;
  min-height: 120px;
}

.about-icon-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.2), rgba(255, 51, 51, 0.2));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about-icon-item i {
  font-size: 36px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #00BFFF, #FF3333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-icon-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--contentTextColor);
}

.logo-center {
  grid-column: 2;
  grid-row: 2;
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.2), rgba(255, 51, 51, 0.2));
}

/* Features Section */
.features-section-2 {
  background: none;
  position: relative;
}

.single-features-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.single-features-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.2);
}

.product-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.1), rgba(255, 51, 51, 0.1));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.product-icon i {
  font-size: 36px;
  background: linear-gradient(90deg, #00BFFF, #FF3333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.single-features-box:hover .product-icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.single-features-box h3 {
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.single-features-box p {
  min-height: 80px;
  margin-bottom: 15px;
  color: var(--contentTextColor);
}

.feature-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-list {
  margin-top: 15px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--contentTextColor);
  transition: all 0.3s ease;
  min-height: 24px;
}

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

.feature-item i {
  color: #00BFFF;
  margin-right: 10px;
  font-size: 20px;
  min-width: 20px;
  margin-top: 3px;
}

/* Product Detail Sections */
.product-detail-section {
  padding: 40px 0;
  scroll-margin-top: 80px;
  position: relative;
}

.product-detail-card {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-detail-card h3 {
  margin-bottom: 20px;
  color: #FFFFFF;
  font-size: 1.8rem;
}

.product-detail-card h4 {
  margin-bottom: 15px;
  color: #00BFFF;
  font-size: 1.4rem;
}

.feature-detail-item {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.feature-detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.25);
}

.feature-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.1), rgba(255, 51, 51, 0.1));
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.feature-detail-icon i {
  font-size: 22px;
  background: linear-gradient(90deg, #00BFFF, #FF3333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-detail-content {
  flex: 1;
}

.feature-detail-item h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.feature-detail-item p {
  font-size: 0.95rem;
  color: var(--contentTextColor);
  line-height: 1.5;
}

/* Brand Section */
.brand-section-2 {
  padding-bottom: 50px;
}

.customers-grid {
  display: grid;
  gap: 15px;
  justify-content: center;
  margin: 0 auto 60px auto;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1400px;
  padding: 0 20px;
}

.customer-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.customer-logo {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  max-width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

/* Mobile adjustments for customer grid */
@media (max-width: 992px) {
  .customers-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .customers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 600px;
  }
  
  .customer-logo {
    height: 100px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .customers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 400px;
  }
  
  .customer-logo {
    height: 90px;
    padding: 10px;
  }
}

.customer-logo:hover {
  background-color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.customer-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s ease;
  display: block;
  margin: 0 auto;
}

/* Contact Section */
.contact-section-new {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(5, 5, 30, 0.8) 0%, rgba(5, 5, 30, 1) 100%);
  position: relative;
  overflow: hidden;
}

.contact-content-wrapper {
  padding: 0;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.contact-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 191, 255, 0.15));
  border-radius: 24px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 191, 255, 0.4);
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(0, 191, 255, 0.2);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.contact-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 191, 255, 0.4);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 191, 255, 0.25));
  border-color: rgba(0, 191, 255, 0.6);
  text-decoration: none;
  color: inherit;
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.contact-card .contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.4), rgba(255, 51, 51, 0.4));
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 191, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 191, 255, 0.4);
}

.contact-card .contact-icon i {
  font-size: 24px;
  background: linear-gradient(90deg, #00BFFF, #FF3333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-card-content {
  flex: 1;
  text-align: left;
}

.contact-card-content h4 {
  margin-bottom: 6px;
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.contact-link {
  color: var(--contentTextColor);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  display: block;
  line-height: 1.4;
  font-weight: 400;
}

.contact-card:hover .contact-link {
  color: #FFFFFF;
}

.contact-form-wrapper {
  position: relative;
  padding: 60px 40px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 191, 255, 0.2));
  border: 2px solid rgba(0, 191, 255, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 191, 255, 0.3);
  overflow: hidden;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated background effect for contact form */
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
  animation: rotateGlow 20s linear infinite;
  pointer-events: none;
}

/* Sweep effect on hover for contact form */
.contact-form-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.2), transparent);
  transition: left 0.8s ease;
  pointer-events: none;
}

.contact-form-wrapper:hover::after {
  left: 100%;
}

.contact-form-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 191, 255, 0.4);
  border-color: rgba(0, 191, 255, 0.6);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 191, 255, 0.3));
}

.contact-form-wrapper h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #00BFFF, #FF3333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.contact-form-wrapper .form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 8px;
  padding: 12px;
  height: 50px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
  background: rgba(255,255,255,0.15);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
  color: #fff;
}

.contact-form-wrapper .form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

.contact-form-wrapper textarea.form-control {
  height: auto;
  min-height: 100px;
  resize: vertical;
}

/* Social Media Section */
.social-media-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 191, 255, 0.1));
  border-radius: 15px;
  padding: 20px;
  margin-top: 12px;
  border: 1px solid rgba(0, 191, 255, 0.4);
  backdrop-filter: blur(4px);
}

.social-media-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-weight: 600;
  text-align: center;
}

.social-media-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.social-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.4), rgba(255, 51, 51, 0.4));
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 1px solid rgba(0, 191, 255, 0.3);
  box-shadow: 0 6px 16px rgba(0, 191, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.social-icon:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 191, 255, 0.4);
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.55), rgba(255, 51, 51, 0.55));
  border-color: rgba(0, 191, 255, 0.6);
  text-decoration: none;
}

.social-icon:hover::before {
  left: 100%;
}

.social-icon i {
  font-size: 28px;
  background: linear-gradient(90deg, #00BFFF, #FF3333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.15);
}

/* Footer */
.footer-area {
  background-color: var(--DarkBg);
}

.footer-widget-info {
  padding: 40px 0;
}

.footer-widget h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #FFFFFF;
  font-weight: 600;
}

.footer-widget p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--contentTextColor);
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 8px;
}

.footer-widget ul li a {
  color: var(--contentTextColor);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  line-height: 1.3;
}

.footer-widget ul li a:hover {
  color: #00BFFF;
}

.copy-right-area {
  padding: 20px 0;
}

.copy-right-area .cpr-center {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copy-right-area .cpr-center p {
  color: var(--contentTextColor);
  margin-bottom: 0;
  font-size: 0.8rem;
}

/* Footer Contact & Social Media Grid (5x2) */
.footer-contact-social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5px;
  max-width: 380px;
  margin-bottom: 30px;
}

.footer-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.2), rgba(255, 51, 51, 0.2));
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(0, 191, 255, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.3), rgba(255, 51, 51, 0.3));
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 191, 255, 0.2);
  text-decoration: none;
}

.footer-btn i {
  font-size: 22px;
  background: linear-gradient(90deg, #00BFFF, #FF3333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.footer-btn:hover i {
  transform: scale(1.1);
}

/* Go to Top Button */
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: 20px;
  right: 20px;
  background: var(--gridColor);
  color: var(--whiteColor);
  z-index: 4;
  width: 43px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  font-size: 27px;
  transition: var(--transition);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.go-top:hover {
  background-color: var(--blackColor);
  color: var(--whiteColor);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .floating-icon {
    width: 90px;
    height: 90px;
  }
  
  .floating-icon i {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  /* About Section Mobile Layout - Text before Logo Grid */
  .about-section .row {
    display: flex;
    flex-direction: column;
  }
  
  .about-section .col-lg-5 {
    order: 2; /* Logo grid comes second */
    margin-top: 20px;
  }
  
  .about-section .col-lg-7 {
    order: 1; /* Text content comes first */
  }
  
  body {
    font-size: 14px;
    padding-top: 50px; /* Keep mobile spacing compact */
  }
  
  .ptb-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .pt-100 {
    padding-top: 60px;
  }
  
  .pb-100 {
    padding-bottom: 60px;
  }
  
  .default-btn {
    padding: 10px 18px;
    font-size: 14px;
    min-width: 120px;
    border-radius: 40px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .hero-section-2 {
    padding-top: 60px;
    min-height: auto;
    padding-bottom: 40px;
  }
  
  .hero-content-2 h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .hero-content-2 .main-heading {
    font-size: 1.4rem;
    white-space: nowrap;
    margin-bottom: 1rem;
  }
  
  .hero-content-2 .main-heading .sub-head {
    font-size: 1.2rem;
    margin-top: 1rem;
    white-space: nowrap;
  }
  
  .hero-content-2 .hero-description p {
    font-size: 0.9rem;
  }
  
  .hero-content-2 .hero-btn-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 0 0.5rem;
  }
  
  .hero-content-2 .hero-btn-wrapper .default-btn {
    margin-right: 0 !important;
    flex: 1;
    max-width: none;
    min-width: auto;
    padding: 8px 12px !important;
    font-size: 12px !important;
    white-space: nowrap;
  }
  
  .floating-icon {
    width: 60px;
    height: 60px;
  }
  
  .floating-icon i {
    font-size: 28px;
  }
  
  .about-content {
    padding-left: 0;
  }
  
  .about-content .sub-title-2 p {
    font-size: 14px !important;
    text-align: center;
  }
  
  .about-content h2 {
    font-size: 32px;
    text-align: center;
  }
  
  .about-content p,
  .about-content ul {
    text-align: center;
  }
  
  .about-content ul {
    display: inline-block;
    text-align: left;
  }
  
  .about-icons-grid {
    grid-template-columns: repeat(3, 1fr) !important; /* Maintain 3x3 grid on mobile */
    gap: 5px; /* Reduced gap for mobile */
    padding: 10px;
  }
  
  .about-icon-item {
    padding: 8px 4px; /* Reduced padding for smaller items */
    min-height: 70px; /* Reduced minimum height */
  }
  
  .about-icon-item i {
    font-size: 20px; /* Smaller icons for mobile 3x3 */
    margin-bottom: 4px;
  }
  
  .about-icon-item span {
    font-size: 9px; /* Smaller text for mobile 3x3 */
    line-height: 1.2;
  }
  
  .logo-center {
    grid-column: 2; /* Keep center position in 3x3 grid */
    grid-row: 2;
  }
  
  .single-features-box {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .product-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .product-icon i {
    font-size: 25px;
  }
  
  .single-features-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    height: auto;
  }
  
  .feature-item {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  
  .feature-item i {
    font-size: 16px;
    min-width: 16px;
    margin-right: 8px;
  }
  
  .customer-logo img {
    max-height: 45px;
  }
  
  /* Mobile footer padding for sitemap and products columns */
  .footer-widget-info .col-md-6.col-6 {
    padding-left: 25px;
    padding-right: 25px;
  }
  
.contact-section-new {
  padding: 60px 0;
}
  
  .contact-content-wrapper {
    padding: 20px 15px;
    border-radius: 15px;
  }
  
  .contact-card {
    padding: 15px;
  }
  
  .contact-form-wrapper {
    padding: 20px 15px;
    margin-top: 20px;
  }
  
  .contact-form-wrapper h3 {
    font-size: 1.3rem;
    text-align: center;
  }
  
  .navbar-area .navbar .navbar-brand {
    font-size: 30px;
  }
  
  .navbar-area .navbar {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar-area .navbar .navbar-brand {
    font-size: 24px;
    flex: 1;
    max-width: calc(100% - 50px);
  }
  
  .navbar-area .navbar .navbar-brand h3 {
    font-size: 1.1rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .navbar-area .navbar .navbar-brand h5 {
    font-size: 0.9rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .navbar-area .navbar .other-all-option {
    flex-shrink: 0;
    margin-left: 10px;
  }
  
  .navbar-area .navbar .navbar-toggler {
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Social Media Section Mobile */
  .social-media-section {
    padding: 15px;
    margin-top: 15px;
  }
  
  .social-media-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .social-media-icons {
    gap: 10px;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
  }
  
  .social-icon i {
    font-size: 20px;
  }
  
  /* Footer Mobile Responsive */
  .footer-contact-social-grid {
    max-width: 280px;
    gap: 4px;
    margin: 0 auto 20px auto;
    justify-self: center;
  }
  
  .footer-btn {
    width: 40px;
    height: 40px;
  }
  
  .footer-btn i {
    font-size: 20px;
  }
}

/* Gradient Text Utility */
.gradient-text {
  background: linear-gradient(90deg, #00BFFF, #FF3333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Smooth Scrolling */
html {
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 70px;
  }
  
  section {
    scroll-margin-top: 70px;
  }
}

/* Privacy Policy Text for Forms - Common Style */
.form-privacy-text {
  color: #e0e0e0;
  font-size: 0.85rem;
  margin: 0;
  text-align: left;
}

.form-privacy-text a {
  color: #667eea;
  text-decoration: none;
}

.form-privacy-text a:hover {
  color: #8099ff;
  text-decoration: underline;
}

/* Mobile smaller text */
@media (max-width: 768px) {
  .contact-section-new {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .form-privacy-text {
    font-size: 0.7rem;
  }
}

/* Product Page Typography Classes for Mobile Consistency */
.product-feature-title {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
}

.product-feature-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.7;
}

.product-use-case-title {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-weight: 700;
}

.product-use-case-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
}

.product-cta-title {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 800;
}

.product-cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile responsive typography for product pages */
@media (max-width: 768px) {
  /* Global paragraph text size reduction for mobile */
  p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }
  
  .product-feature-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #FFFFFF !important;
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
  }
  
  .product-feature-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .product-use-case-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #FFFFFF !important;
  }
  
  .product-use-case-description {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  
  .product-cta-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFFFFF !important;
  }
  
  .product-cta-description {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  /* Global paragraph text size reduction for smaller mobile */
  p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }
  
  .product-feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #FFFFFF !important;
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
  }
  
  .product-feature-description {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .product-use-case-title {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #FFFFFF !important;
  }
  
  .product-use-case-description {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  
  .product-cta-title {
    font-size: 1.3rem;
    color: #FFFFFF !important;
  }
  
  .product-cta-description {
    font-size: 0.8rem;
  }
}

/* Reusable CTA Box Styles - Modern Gradient Box Design */
.cta-box {
  position: relative;
  padding: 60px 40px;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 191, 255, 0.2));
  border: 2px solid rgba(0, 191, 255, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 191, 255, 0.3);
  overflow: hidden;
  text-align: center;
  margin: 40px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated background effect */
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 191, 255, 0.1) 0%, transparent 50%);
  animation: rotateGlow 20s linear infinite;
  pointer-events: none;
}

/* Sweep effect on hover */
.cta-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.2), transparent);
  transition: left 0.8s ease;
  pointer-events: none;
}

.cta-box:hover::after {
  left: 100%;
}

.cta-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 191, 255, 0.4);
  border-color: rgba(0, 191, 255, 0.6);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 191, 255, 0.3));
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Corner accents */
.cta-box-corners {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #00BFFF;
}

.cta-box-corners.top-left {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 25px;
}

.cta-box-corners.top-right {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 25px;
}

.cta-box-corners.bottom-left {
  bottom: -2px;
  left: -2px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 25px;
}

.cta-box-corners.bottom-right {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 25px;
}

/* CTA Box Content */
.cta-box-content {
  position: relative;
  z-index: 2;
}

.cta-box-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00BFFF, #FF3333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.cta-box-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-box-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Style Variants */

/* Variant 1: Neon Glow */
.cta-box.cta-neon {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.cta-box.cta-neon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(45deg, #00BFFF, #FF3333, #00BFFF);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: borderRotate 4s linear infinite;
  pointer-events: none;
}

@keyframes borderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Variant 2: Glass Morphism */
.cta-box.cta-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Variant 3: Floating Card */
.cta-box.cta-float {
  animation: float 6s ease-in-out infinite;
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.2), rgba(255, 51, 51, 0.2));
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Variant 4: Minimal Clean */
.cta-box.cta-minimal {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 45px 30px;
}

/* Mobile Responsive CTA Box */
@media (max-width: 768px) {
  .cta-box {
    padding: 40px 25px;
    margin: 30px 0;
  }
  
  .cta-box-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .cta-box-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .cta-box-buttons {
    gap: 12px;
  }
  
  .cta-box-corners {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .cta-box {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .cta-box-title {
    font-size: 1.5rem;
  }
  
  .cta-box-description {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  
  .cta-box-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-box-buttons .default-btn {
    width: 100%;
    max-width: 200px;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-control {
  border-radius: 0;
  background-color: #f5f5f5 !important;
  box-shadow: unset !important;
  transition: var(--transition);
  border: none !important;
  border-radius: 3px;
  height: 60px;
  padding-left: 15px;
  color: var(--paragraphColor);
  font-size: 18px;
}

.form-control:focus {
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);
}

.form-control::placeholder {
  color: var(--paragraphColor);
  transition: var(--transition);
}

.form-control:focus::placeholder {
  color: transparent;
}

textarea.form-control {
  padding-top: 15px;
  height: auto;
}

/* Icon Circle */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(0, 191, 255, 0.2), rgba(255, 51, 51, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* Remove bottom margin when icon-circle is in a flex container for proper vertical alignment */
.d-flex .icon-circle {
  margin-bottom: 0;
}

.icon-circle i {
  font-size: 28px;
  background: linear-gradient(90deg, #00BFFF, #FF3333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Background Icons */
.product-bg-icons,
.contact-bg-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.product-bg-icons .bg-icon,
.contact-bg-icons .bg-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.03;
}

.product-bg-icons .bg-icon i,
.contact-bg-icons .bg-icon i {
  font-size: 120px;
  color: #00BFFF;
}

/* Container Fluid */
.container-fluid {
  max-width: 1560px;
}

/* Specific Customer Logo Adjustments */
.customer-logo img[src*="Customers_Stewards.png"],
.customer-logo img[src*="Customers_SpinMaster.png"] {
  max-width: 70%;
  max-height: 70%;
}

/* Latest Blog Section Styles - Match Blog Page Styling */
.latest-blog-section {
  background-color: var(--DarkBg);
  position: relative;
  z-index: 2; /* Ensure blog section is above hero section */
  overflow: visible; /* Allow cards to extend outside section bounds */
}

.latest-blog-card {
  background: rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.latest-blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.latest-blog-card:hover {
  transform: translateY(-5px); /* Restore hover effect now that z-index is fixed */
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  z-index: 10; /* Ensure hover card is on top without overlapping others */
}

.latest-blog-card:hover::before {
  left: 100%;
}

.latest-blog-card-link {
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.latest-blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.latest-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.latest-blog-card:hover .latest-blog-card-image img {
  transform: scale(1.05);
}

.latest-blog-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.latest-blog-card-date {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3; /* Ensure date stays above other elements */
}

.latest-blog-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: 'Newsreader', serif;
}

.latest-blog-card:hover .latest-blog-card-title {
  background: linear-gradient(90deg, #00BFFF, #FF3333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.latest-blog-card-excerpt {
  color: var(--contentTextSecondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-blog-card-tags {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.latest-blog-tag {
  background: transparent;
  color: var(--contentTextSecondary);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: capitalize;
}

/* Blog Swiper Mobile Styles */
.blog-swiper {
  padding-bottom: 80px; /* Space for pagination dots */
  position: relative;
  overflow: visible; /* Allow cards to extend outside container */
}

.blog-swiper .swiper-wrapper {
  padding-top: 20px; /* Add top padding to prevent clipping */
  padding-bottom: 20px; /* Add bottom padding for card shadows */
}

.blog-swiper .swiper-slide {
  height: auto;
  padding: 10px 5px; /* Add padding to prevent edge clipping */
}

/* Swiper Pagination - Neon Light Style (No Gradient) */
.blog-swiper .swiper-pagination {
  bottom: 0px !important; /* Position dots with more space below the card content */
  position: absolute !important;
  width: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  text-align: center !important;
  z-index: 5 !important; /* Ensure dots are above background but below cards */
}

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

.blog-swiper .swiper-pagination-bullet:hover {
  background: rgba(0, 191, 255, 0.5);
}

.blog-swiper .swiper-pagination-bullet-active {
  background: #00BFFF;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
  transform: scale(1.3);
  width: 12px;
  height: 12px;
}

/* Mobile responsive for latest blog */
@media (max-width: 767px) {
  .latest-blog-card-content {
    padding: 20px;
  }
  
  .latest-blog-card-title {
    font-size: 18px;
  }
  
  .latest-blog-card-image {
    height: 200px;
  }
  
  .blog-carousel-slide {
    padding: 0 5px;
  }
  
  /* More spacing for mobile blog swiper to avoid date/dots overlap */
  .blog-swiper {
    padding-bottom: 70px; /* Adequate space for pagination dots on mobile */
  }
  
  .blog-swiper .swiper-wrapper {
    padding-top: 15px; /* Slightly less top padding on mobile */
    padding-bottom: 15px;
  }
  
  .blog-swiper .swiper-pagination {
    bottom: 15px !important; /* Adjust for mobile */
  }
  
  .latest-blog-card-date {
    bottom: 15px; /* Slightly reduce bottom spacing on mobile */
    right: 15px;
  }
}
