﻿:root {
  --primary-color: #da1212;
  --secondary-color: #041562;
  --primary-light: #ff44448c;
  --primary-dark: #b31010;
  --secondary-light: #1a3d8fa9;
  --secondary-dark: #02103a;
  --dark-color: #1a1a1a;
  --light-color: #ffffff;
  --accent-gold: #ffd700;
  --accent-silver: #c0c0c0;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-overlay: linear-gradient(45deg, rgba(218, 18, 18, 0.8), rgba(4, 21, 98, 0.8));
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Orbitron', monospace;
  font-weight: 600;
  line-height: 1.2;
}

/* Section Styles */
section:not(.hero-section) {
  padding: 80px 0;
  position: relative;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-tag {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--light-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  /* margin-bottom: 20px; */
  color: var(--secondary-color);
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}


.btn-primary-custom {
  background: var(--gradient-primary);
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  color: var(--light-color);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(218, 18, 18, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(218, 18, 18, 0.4);
  color: var(--light-color);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--light-color);
  background: transparent;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: var(--light-color);
  color: var(--dark-color);
  border-color: var(--light-color);
  transform: translateY(-2px);
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

section,
.preloader,
.top-bar,
header {
  overflow: hidden;
  width: 100%;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader-content {
  text-align: center;
  color: var(--light-color);
}

.wire-animation {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.wire-rope {
  width: 4px;
  height: 80px;
  background: var(--accent-silver);
  margin: 0 auto;
  position: relative;
  animation: wireSwing 2s ease-in-out infinite;
  transform-origin: top center;
}

.wire-rope::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

.hook {
  width: 20px;
  height: 15px;
  background: var(--accent-gold);
  border-radius: 50% 50% 0 0;
  margin: 0 auto;
  position: relative;
  animation: hookRotate 2s ease-in-out infinite;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes wireSwing {

  0%,
  100% {
    transform: rotate(-10deg);
  }

  50% {
    transform: rotate(10deg);
  }
}

@keyframes hookRotate {

  0%,
  100% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Top Bar */
.top-bar {
  background: var(--secondary-color);
  padding: 8px 0;
  font-size: 14px;
  color: var(--light-color);
}

.contact-info span {
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.social-links a {
  color: var(--light-color);
  margin-left: 15px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  color: var(--primary-color);
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 46px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.navbar {
  padding: 15px 0;
}

.navbar.scrolled {
  padding: 5px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;

}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 18px;
  transform: rotate(-15deg);
  transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-icon {
  transform: rotate(0deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Orbitron', monospace;
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.brand-tagline {
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 500;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: var(--dark-color);
  font-weight: 500;
  margin: 0 15px;
  padding-left:  0 !important;
  padding-right:  0 !important;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}


.navbar-toggler {
  border: none;
  padding: 5px 10px;
  position: relative;
}

.navbar-toggler span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-swiper {
  height: 100vh;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1.1);
  transition: transform 5s ease-out;
  will-change: transform;
}

.swiper-slide-active .slide-bg {
  transform: scale(1);
}

.swiper-slide-prev .slide-bg,
.swiper-slide-next .slide-bg {
  transform: scale(1.4);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--light-color);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--light-color);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  transform: scale(1.5);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--light-color);
  text-align: center;
  cursor: pointer;
}

.scroll-mouse {
  width: 25px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  margin: 0 auto 10px;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--light-color);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
  0% {
    top: 8px;
    opacity: 1;
  }

  50% {
    top: 20px;
    opacity: 0.5;
  }

  100% {
    top: 8px;
    opacity: 1;
  }
}



/* About Section */
.about-section {
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
  position: relative;
  overflow: hidden;
}

.about-features {
  margin: 40px 0;
}

.about-section .section-description {
  max-width: 900px;
}

.about-img {
  border-radius: 10px;
  box-shadow: 0 5px 10px rgb(131 131 131 / 50%);
  overflow: hidden;
  width: 100%;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .about-img {
    /* aspect-ratio: 1 / 1; */
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--light-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--light-color);
  font-size: 24px;
  flex-shrink: 0;
}

.feature-content h4 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.feature-content p {
  color: #666;
  margin: 0;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}




@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Products Section */
.products-section {
  background: var(--light-color);
  position: relative;
}

.products-bg {
  position: absolute;
  background-repeat: no-repeat;
  top: 0;
  left: 10px;
  height: 100%;
  width: 100%;
  z-index: 0;
  /* opacity: 0.7; */
  /* border-radius: 50px; */
}


.product-card {
  background: var(--light-color);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 10px rgb(131 131 131 / 50%);
  transition: all 0.3s ease;
  border: 0.5px solid #f0f0f0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
  border-color: var(--primary-color);
}

.product-img {
  position: relative;
  height: 200px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.product-description {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  margin-top: auto;
}

.product-features li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  color: #666;
}

.product-features i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 12px;
}

.product-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.product-card:hover .product-link {
  color: var(--primary-dark);
}

.product-link i {
  margin-left: 8px;
  transition: all 0.3s ease;

}

.product-card:hover .product-link i {
  animation: arrow-move 1s ease-in-out infinite;
}

@keyframes arrow-move {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(0);
  }
}

.productSwiper .swiper-slide{
  padding: 20px 20px 30px;
}

.productSwiper .swiper-pagination{
  bottom: 0;
}

.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev{
  background: var(--gradient-primary);
}

.productSwiper .swiper-pagination-bullet{
  background-color: var(--primary-light);
}
.productSwiper .swiper-pagination-bullet-active{
    background: var(--primary-color);

}


/* Industries Section */
.industries-section {
  /* background: var(--secondary-color); */
  border-radius: 40px;
  margin: 0 20px 0 20px;
  width: calc(100% - 40px);
}

.industries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.industries-section .section-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--light-color);
}

.industries-section .section-title {
  color: var(--light-color);
}

.industries-section .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.industry-card {
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.industry-card:hover {
  backdrop-filter: blur(10px);

  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

@media (max-width: 768px) {
  .industry-card {
    padding: 30px 20px;
  }
}

.industry-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--light-color);
  font-size: 30px;
}

.industry-card h4 {
  color: var(--light-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

/* Capabilities Section */
.capabilities-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.capabilities-content {
  padding-right: 30px;
}

.capability-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--light-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.capability-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.capability-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--light-color);
  font-size: 24px;
  flex-shrink: 0;
}

.capability-content h4 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.capability-content p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.capabilities-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-card {
  background: var(--light-color);
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 0;
}

.stat-card:hover::before {
  left: 0;
  opacity: 0.1;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--light-color);
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.stat-card .cap-stat {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}

.stat-card .stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.stat-unit {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* Contact Section */
.contact-section {
  background: var(--light-color);
  position: relative;
}

.contact-form-container {
  background: var(--light-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-control {
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 15px 20px 15px 50px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: var(--light-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(218, 18, 18, 0.25);
}

.form-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 16px;
  z-index: 2;
}


.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 25px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--light-color);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-details h4 {
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-details p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #003366;
  color: var(--light-color);
  padding: 60px 0 20px;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-logo .logo-container .logo-text .brand-name {
  color: var(--light-color);
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin: 20px 0 25px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--light-color);
  margin-bottom: 25px;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links.pages li{
  margin-bottom: 2px ;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  color: var(--gradient-primary);
  margin-right: 12px;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.copyright {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color:var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: bold;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--light-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(218, 18, 18, 0.4);
  color: var(--light-color);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-float a {
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}



/* Responsive Design */
@media (max-width: 1200px) {
  .capabilities-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
}
@media (max-width: 992px) {
  .contact-info-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .contact-info span {
    margin-right: 15px;
    margin-bottom: 5px;
    display: block;
  }

  .social-links {
    margin-top: 10px;
  }

  .header {
    top: 0px;
  }


  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-stats {
    justify-content: center;
  }


  .floating-card {
    position: static;
    margin: 10px;
    animation: none;
  }

  .about-visual {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
  }

  .scroll-indicator {
    display: none;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .whatsapp-float {
    bottom: 80px;
    right: 20px;
  }

  .whatsapp-float a {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .contact-info-item{
    display: inline;
    padding: 10px;
    text-align: center;
    margin-bottom: 5px;
  }

  .contact-icon{
    margin: 10px auto;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 15px;
  }

  .feature-item,
  .capability-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon,
  .capability-icon {
    margin: 0 auto;
    margin-bottom: 15px;
  }

  .capabilities-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .capability-item{
    margin-bottom: 0;
  }

  .contact-form-container {
    padding: 25px 20px;
  }
  
  .contact-info-container{
    grid-template-columns:  1fr;
  }

  .contact-info-item {
    padding: 20px 15px;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 420px) {
  .capabilities-content{
    grid-template-columns:  1fr;
  }

 .swiper-button-next,
 .swiper-button-prev{
    width: 40px;
    height: 40px;
  }

}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  /* border-radius: 4px; */
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}


/*Update 20_7_2025*/
.anchor {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration:none;
}

    .anchor:hover {
        color: white;
    }