/*================================================
Optimized CSS for Jarvis and Sam Website
Only includes styles actually used by the website
=================================================*/

/* CSS Variables */
:root {
  --fontFamily: 'DM Sans', sans-serif;
  --headingFont: 'Plus Jakarta Sans', 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;
}

/* Base Styles */
body {
  padding: 0;
  margin: 0;
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  background-color: var(--DarkBg);
  color: #E0E0E0;
  padding-top: 70px;
}

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: #FFFFFF;
}

a {
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}

a:hover {
  color: var(--mainColor);
  text-decoration: none;
}

p {
  color: var(--paragraphColor);
  margin-bottom: 15px;
  line-height: 1.8;
  font-family: var(--fontFamily);
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 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: 16px 32px;
  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: 160px;
  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);
}

/* Section Titles */
.section-title {
  max-width: 775px;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  margin-right: auto;
  margin-left: auto;
}

.section-title h2 {
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
}

.sub-title-2 {
  margin-bottom: 25px;
}

.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: 20px !important;
  display: inline-block;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* 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: 15px 20px;
}

.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%;
}

/* 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;
}

.offcanvas-body {
  background-color: #05051E;
  padding: 20px;
}

.offcanvas .navbar-nav .nav-link {
  color: #E0E0E0 !important;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.offcanvas .navbar-nav .nav-link:hover {
  color: #00BFFF !important;
  background: rgba(0, 191, 255, 0.1);
  padding-left: 10px;
}

.offcanvas .btn-close {
  background: none;
  border: none;
  color: #E0E0E0;
  font-size: 24px;
  opacity: 1;
}

/* Hero Section */
.hero-section-2 {
  background: none;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.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: 1200px;
  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: rgba(255, 255, 255, 0.8);
}

.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: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: float 15s infinite ease-in-out;
  opacity: 0.8;
}

.floating-icon i {
  font-size: 100px;
  background: linear-gradient(90deg, #00BFFF, #FF3333);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 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;
}

.about-content h2 {
  color: var(--whiteColor);
  font-size: 55px;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--paragraphColorSecond);
  font-size: 17px;
}

.about-content ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 35px;
}

.about-content ul li {
  color: var(--paragraphColorSecond);
  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: #E0E0E0;
}

.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: #E0E0E0;
}

.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: #E0E0E0;
  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: #E0E0E0;
  line-height: 1.5;
}

/* Brand Section */
.brand-section-2 {
  padding-bottom: 100px;
}

.customers-grid {
  display: grid;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
  grid-template-columns: repeat(6, 1fr);
  max-width: 1200px;
  margin: 0 auto 60px auto;
}

.customer-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.customer-logo {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  padding: 20px;
  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;
}

.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 {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 191, 255, 0.1));
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 191, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 191, 255, 0.3);
}

.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: #E0E0E0;
  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 {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(0, 191, 255, 0.25);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
}

.contact-form-wrapper .form-control {
  background-color: rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(211, 211, 211, 0.3);
  border-radius: 8px;
  padding: 12px 15px;
  color: #FFFFFF;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  margin-bottom: 20px;
}

.contact-form-wrapper .form-control:focus {
  background-color: rgba(0, 0, 0, 0.7) !important;
  border-color: rgba(0, 191, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);
}

.contact-form-wrapper .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.contact-form-wrapper textarea.form-control {
  min-height: 150px;
  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: #E0E0E0;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 8px;
}

.footer-widget ul li a {
  color: #E0E0E0;
  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: #E0E0E0;
  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) {
  body {
    font-size: 14px;
    padding-top: 60px;
  }
  
  .ptb-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .pt-100 {
    padding-top: 60px;
  }
  
  .pb-100 {
    padding-bottom: 60px;
  }
  
  .default-btn {
    padding: 14px 24px;
    font-size: 14px;
    min-width: 140px;
    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: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .floating-icon {
    width: 60px;
    height: 60px;
  }
  
  .floating-icon i {
    font-size: 28px;
  }
  
  .about-content {
    padding-left: 0;
  }
  
  .about-content h2 {
    font-size: 28px;
  }
  
  .about-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
  }
  
  .about-icon-item {
    padding: 12px 5px;
    min-height: 90px;
  }
  
  .about-icon-item i {
    font-size: 24px;
    margin-bottom: 6px;
  }
  
  .about-icon-item span {
    font-size: 11px;
  }
  
  .logo-center {
    grid-column: 1 / span 2;
    grid-row: auto;
  }
  
  .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;
  }
  
  .customers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .customer-logo {
    width: 160px;
    height: 100px;
    padding: 15px;
  }
  
  .customer-logo img {
    max-height: 50px;
  }
  
  .contact-section-new {
    padding: 50px 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: 30px;
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 30px;
}

/* 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;
}

.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%;
}
