/* =========================================
   1. Root Variables & Reset
   ========================================= */
:root {
  --tech-orange: #ff6b00;
  --tech-orange-hover: #cc5500;
  --tech-blue: #00ccff;
  --dark-bg: #000000;
  --deep-dark: #050505;
  --form-dark: #080808;
  --top-bar-bg: #f8f9fa;
  --card-bg: rgba(255, 255, 255, 0.03);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --text-muted: #b0b0b0;

  /* Font Assignments */
  --font-family-base: "Inter", sans-serif;
  --font-family-orbitron: "Orbitron", sans-serif;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--dark-bg);
  color: #fff;
}

/* Helper Class */
.text-orange {
  color: var(--tech-orange) !important;
}
.text-blue {
  color: var(--tech-blue) !important;
}

/* =========================================
   2. Header & Navigation
   ========================================= */

/* Top Contact Bar */
.top-bar {
  background-color: var(--top-bar-bg);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid #ddd;
}

.top-bar a {
  text-decoration: none;
  color: var(--tech-orange);
  font-weight: 600;
  margin-right: 15px;
  transition: 0.3s;
}

.top-bar a:hover {
  color: var(--tech-orange-hover);
}

.social-icons a {
  color: #fff;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 5px;
  font-size: 0.8rem;
  transition: 0.3s;
}

.social-icons a:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

/* Specific Social Colors fallback */
.social-icons .fa-facebook-f {
  background: #3b5998;
}
.social-icons .fa-twitter {
  background: #1da1f2;
}
.social-icons .fa-youtube {
  background: #ff0000;
}
.social-icons .fa-instagram {
  background: #e1306c;
}
.social-icons .fa-linkedin-in {
  background: #0077b5;
}

/* Main Navbar */
.navbar {
  background-color: var(--dark-bg) !important;
  padding: 15px 0;
}

.navbar-brand {
  font-family: var(--font-family-orbitron);
  display: flex;
  align-items: center;
}

.brand-text {
  line-height: 1.1;
}

.brand-main {
  color: var(--tech-orange);
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.brand-sub {
  color: var(--tech-blue);
  font-size: 1.5rem;
  margin-left: 5px;
  font-weight: 700;
}

.brand-tagline {
  color: #fff;
  font-size: 0.65rem;
  display: block;
  font-family: var(--font-family-base);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.nav-link {
  color: var(--tech-blue) !important;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 5px;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--tech-orange) !important;
}

.nav-item.active-box .nav-link {
  border: 1px solid var(--tech-orange);
  border-radius: 4px;
  color: var(--tech-orange) !important;
}

/* Dropdown custom styling */
.dropdown-menu {
  background-color: #111;
  border: 1px solid #333;
}

.dropdown-item {
  color: var(--tech-blue);
  font-size: 0.85rem;
  transition: 0.3s;
}

.dropdown-item:hover {
  background-color: var(--tech-orange);
  color: #fff;
}

.lang-flag {
  width: 20px;
  margin-right: 5px;
  vertical-align: middle;
}

/* =========================================
   3. Hero Slider
   ========================================= */
.main-slider {
  width: 100%;
  height: 80vh;
  background: #000;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-left: 10%;
  max-width: 800px;
}

.slide-content h4 {
  font-family: var(--font-family-base);
  color: var(--tech-blue);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.slide-content h2 {
  font-family: var(--font-family-orbitron);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.slide-content h2 span {
  color: var(--tech-orange);
}

.slide-content p {
  font-family: var(--font-family-base);
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 30px;
  border-left: 3px solid var(--tech-orange);
  padding-left: 20px;
}

/* Glassmorphism Button */
.btn-tech {
  background: rgba(255, 107, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 0, 0.5);
  color: #fff;
  padding: 12px 35px;
  font-family: var(--font-family-orbitron);
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: 0.4s;
  text-transform: uppercase;
}

.btn-tech:hover {
  background: var(--tech-orange);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
}

/* Swiper Navigation Custom Colors */
.swiper-button-next,
.swiper-button-prev {
  color: var(--tech-blue);
}

.swiper-pagination-bullet-active {
  background: var(--tech-orange) !important;
}

/* =========================================
   4. Welcome Section
   ========================================= */
.welcome-section {
  background-color: var(--deep-dark);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

/* Animated Background Blob */
.welcome-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 0, 0.1);
  filter: blur(80px);
  border-radius: 50%;
  z-index: 0;
}

.welcome-text-container {
  position: relative;
  z-index: 1;
}

.welcome-badge {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(0, 204, 255, 0.1);
  border: 1px solid var(--tech-blue);
  color: var(--tech-blue);
  font-family: var(--font-family-orbitron);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.welcome-title {
  font-family: var(--font-family-orbitron);
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 25px;
}

.text-gradient {
  background: linear-gradient(to right, var(--tech-orange), #ff9d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.welcome-desc {
  font-family: var(--font-family-base);
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 550px;
  margin-bottom: 40px;
}

.btn-view-projects {
  font-family: "Orbitron", sans-serif;
  font-size: 0.8rem;
  padding: 12px 24px;
  border-color: #6c757d; /* border-secondary bootstrap */
}

/* Stylish Glass Card */
.welcome-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

.card-float {
  animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.stat-box {
  border-left: 3px solid var(--tech-orange);
  padding-left: 20px;
  margin-bottom: 30px;
}

.stat-number {
  display: block;
  font-family: var(--font-family-orbitron);
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
}

.stat-label {
  color: var(--tech-blue);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.exp-years {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--tech-orange);
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.exp-years h3 {
  font-family: var(--font-family-orbitron);
  margin: 0;
  font-size: 2rem;
}

.exp-years p {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  line-height: 1.2;
}

/* =========================================
   5. Divisor Pulse & Sections Header
   ========================================= */
.pulse-divider {
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  margin: 0;
}

.pulse-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--tech-blue),
    var(--tech-orange),
    transparent
  );
  animation: dataPulse 3s infinite linear;
}

@keyframes dataPulse {
  0% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}

.section-header {
  margin-bottom: 60px;
}

/* =========================================
   6. Our Services
   ========================================= */
.services-section {
  background-color: #000;
  padding: 100px 0;
  position: relative;
}

.services-section .subtitle {
  color: var(--tech-orange);
  font-family: var(--font-family-orbitron);
  letter-spacing: 5px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.services-section .main-title {
  color: #fff;
  font-family: var(--font-family-orbitron);
  font-weight: 700;
  font-size: 2.5rem;
}

/* Service Card Styling */
.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: 1;
}

/* Animated Glowing Border on Hover */
.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    transparent,
    transparent,
    var(--tech-blue)
  );
  transition: 0.6s;
  z-index: -1;
  opacity: 0;
}

.service-card:hover::before {
  opacity: 1;
  animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.service-card:hover {
  transform: translateY(-15px);
  border-color: var(--tech-blue);
  box-shadow: 0 10px 30px rgba(0, 204, 255, 0.2);
}

.services-section .icon-box {
  width: 70px;
  height: 70px;
  background: rgba(0, 204, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--tech-blue);
  margin-bottom: 25px;
  transition: 0.3s;
}

.service-card:hover .icon-box {
  background: var(--tech-orange);
  color: #fff;
  transform: rotateY(360deg);
}

.service-card h3 {
  color: #fff;
  font-family: var(--font-family-orbitron);
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.read-more {
  color: var(--tech-orange);
  text-decoration: none;
  font-family: var(--font-family-orbitron);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-top: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition: 0.3s;
}

.service-card:hover .read-more {
  opacity: 1;
  transform: translateX(0);
}

.read-more i {
  margin-left: 8px;
  font-size: 0.7rem;
}

/* =========================================
   7. CTA (Call To Action)
   ========================================= */
.cta-section {
  position: relative;
  padding: 80px 0;
  background: #000;
  overflow: hidden;
}

/* Animated Tech-Gradient Background */
.cta-container {
  position: relative;
  background: linear-gradient(135deg, #111 0%, #000 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 60px;
  overflow: hidden;
  z-index: 1;
}

.cta-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.1) 0%,
    transparent 50%
  );
  animation: rotateBg 10s linear infinite;
  z-index: -1;
}

@keyframes rotateBg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-content h2 {
  font-family: var(--font-family-orbitron);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.cta-content p {
  font-family: var(--font-family-base);
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Pulse Glow Button */
.btn-cta {
  background: var(--tech-orange);
  color: #fff;
  font-family: var(--font-family-orbitron);
  padding: 18px 45px;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.4s;
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
}

.btn-cta:hover {
  background: #fff;
  color: var(--tech-orange);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.btn-talk-expert {
  font-family: "Orbitron";
  border-radius: 50px;
  border-color: #6c757d; /* secondary bootstrap */
}

/* Decorative Floating Elements */
.cta-shape {
  position: absolute;
  color: var(--tech-blue);
  opacity: 0.2;
  font-size: 4rem;
  z-index: -1;
}

.shape-1 {
  top: 10%;
  left: 5%;
  animation: floatAnimShape 6s infinite;
}
.shape-2 {
  bottom: 10%;
  right: 5%;
  animation: floatAnimShape 8s infinite reverse;
}

@keyframes floatAnimShape {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* =========================================
   8. Business Solutions Slider
   ========================================= */
.solutions-section {
  background-color: var(--deep-dark);
  padding: 100px 0;
  overflow: hidden;
}

.solutions-section .section-header h2 {
  font-family: var(--font-family-orbitron);
  color: #fff;
  font-size: 2.8rem;
  letter-spacing: 2px;
}

/* Swiper Styling */
.solution-slider {
  padding: 50px 0 80px;
}

.solution-slider .swiper-slide {
  width: 380px;
  height: auto;
  transition: 0.4s;
}

/* Solution Card */
.solution-slider .solution-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(15px);
  transition: 0.5s ease;
  position: relative;
}

.solution-slider .solution-icon {
  font-size: 3rem;
  color: var(--tech-blue);
  margin-bottom: 25px;
  transition: 0.4s;
}

.solution-slider .solution-card h3 {
  font-family: var(--font-family-orbitron);
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.solution-slider .solution-card p {
  font-family: var(--font-family-base);
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Active Slide Special Styling */
.solution-slider .swiper-slide-active .solution-card {
  border-color: var(--tech-orange);
  background: rgba(255, 107, 0, 0.05);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
}

.solution-slider .swiper-slide-active .solution-icon {
  color: var(--tech-orange);
  transform: scale(1.1) translateY(-10px);
}

.btn-solution {
  border: 1px solid var(--tech-blue);
  color: var(--tech-blue);
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-family-orbitron);
  font-size: 0.8rem;
  transition: 0.3s;
  display: inline-block;
}

.solution-slider .swiper-slide-active .btn-solution {
  background: var(--tech-orange);
  border-color: var(--tech-orange);
  color: #fff;
}

/* Custom Pagination */
.solution-slider .swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.3;
}
.solution-slider .swiper-pagination-bullet-active {
  background: var(--tech-orange) !important;
  opacity: 1;
  width: 30px;
  border-radius: 5px;
}

/* =========================================
   9. Domain Expertise Section
   ========================================= */
.expertise-section {
  background-color: #000;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Background Glow */
.expertise-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.1) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
}

.expertise-header h2 {
  font-family: var(--font-family-orbitron);
  color: #fff;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.expertise-header p {
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Grid Layout */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Stylish Item Styling */
.exp-item {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.exp-item i {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
  display: block;
  transition: 0.5s;
}

.exp-item span {
  font-family: var(--font-family-base);
  color: #fff;
  font-weight: 500;
  font-size: 1.05rem;
  display: block;
}

/* Hover Effects */
.exp-item:hover {
  background: rgba(255, 107, 0, 0.05);
  border-color: var(--tech-orange);
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.exp-item:hover i {
  color: var(--tech-orange);
  transform: scale(1.2) rotateY(360deg);
}

/* =========================================
   10. Contact Section
   ========================================= */
.contact-section {
  background-color: var(--form-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background element */
.contact-section::after {
  content: "";
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 204, 255, 0.05) 0%,
    transparent 70%
  );
  z-index: 0;
}

.contact-title h2 {
  font-family: var(--font-family-orbitron);
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-title p {
  color: var(--text-muted);
  margin-bottom: 50px;
}

/* Contact Info Cards */
.contact-section .info-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: 0.4s;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.contact-section .info-box:hover {
  transform: translateX(10px);
  border-color: var(--tech-blue);
  background: rgba(0, 204, 255, 0.05);
}

.contact-section .info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--tech-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
}

.contact-section .info-content h5 {
  color: #fff;
  font-family: var(--font-family-orbitron);
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-section .info-content p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Stylish Form Wrapper */
.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.contact-section form .form-control {
  border: 1px solid #e0e0e0;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-family: var(--font-family-base);
  color: #333;
}

.contact-section form .form-control:focus {
  border-color: var(--tech-orange);
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.1);
  color: #000;
}

.btn-submit {
  background: var(--tech-orange);
  color: #fff;
  font-family: var(--font-family-orbitron);
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-submit:hover {
  background: var(--tech-orange-hover);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
  transform: translateY(-2px);
}

/* =========================================
   11. Footer Section
   ========================================= */
.main-footer {
  background-color: var(--deep-dark);
  padding: 80px 0 0;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-family-base);
}

.footer-brand .brand-main {
  font-family: var(--font-family-orbitron);
  font-size: 1.8rem;
  color: var(--tech-orange);
  font-weight: 700;
}

.footer-brand .brand-sub {
  font-family: var(--font-family-orbitron);
  font-size: 1.8rem;
  color: var(--tech-blue);
  font-weight: 700;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 20px;
}

.footer-heading {
  font-family: var(--font-family-orbitron);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  color: #fff;
  letter-spacing: 1px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--tech-orange);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.95rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--tech-blue);
  transform: translateX(5px);
}

.main-footer .text-primary-icon {
  color: var(--tech-blue) !important;
}

/* Newsletter Box */
.newsletter-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-box input {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.85rem;
}

.newsletter-box input:focus {
  background: rgba(0, 0, 0, 0.5);
  border-color: var(--tech-blue);
  box-shadow: none;
  color: #fff;
}

.btn-blue-icon {
  background: var(--tech-blue);
  border: none;
  color: #fff;
}
.btn-blue-icon:hover {
  opacity: 0.8;
  color: #fff;
}

/* Footer Bottom Bar */
.footer-bottom {
  background: #000;
  padding: 25px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
  color: #777;
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links a {
  color: #777;
  text-decoration: none;
  transition: 0.3s;
}
.footer-bottom-links a:hover {
  color: var(--tech-blue);
}

.footer-social a {
  color: #fff;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 10px;
  transition: 0.4s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--tech-orange);
  transform: translateY(-5px);
  color: #fff;
}

/* =========================================
   12. Floating Icons
   ========================================= */
.floating-contact-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.float-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  animation: slideInRight 0.8s ease-out forwards;
  opacity: 0;
}

/* Individual Colors */
.float-whatsapp {
  background: #25d366;
  animation-delay: 0.2s;
}
.float-call {
  background: var(--tech-orange);
  animation-delay: 0.4s;
}
.float-email {
  background: var(--tech-blue);
  animation-delay: 0.6s;
}

/* Pulse Effect for WhatsApp */
.ripple-pulse::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 50%;
  z-index: -1;
  animation: pulseRippleAnim 2s infinite;
}

/* Hover States */
.float-icon:hover {
  transform: scale(1.15) rotate(10deg);
  color: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Tooltip styling */
.float-icon::after {
  content: attr(data-label);
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--font-family-base);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.float-icon:hover::after {
  opacity: 1;
  visibility: visible;
  right: 65px;
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulseRippleAnim {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* =========================================
   13. Responsive Media Queries
   ========================================= */

/* High Resolution Expertise Grid */
@media (max-width: 1200px) {
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Tablets / Small Laptops */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
  }

  .nav-item.active-box .nav-link {
    border: none;
    color: var(--tech-orange) !important;
  }

  .welcome-title {
    font-size: 2.5rem;
  }
  .welcome-section {
    text-align: center;
    padding: 60px 0;
  }
  .welcome-desc {
    margin: 0 auto 40px;
  }
  .stat-box {
    text-align: left;
  }
}

/* Tablets and Mobile */
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 2.2rem;
  }
  .main-slider {
    height: 60vh;
  }

  .cta-container {
    padding: 40px 20px;
  }
  .cta-content h2 {
    font-size: 1.8rem;
  }

  .solution-slider .swiper-slide {
    width: 300px;
  }
  .solutions-section .section-header h2 {
    font-size: 2rem;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .expertise-header h2 {
    font-size: 2rem;
  }

  .contact-form-wrapper {
    margin-top: 50px;
    padding: 25px;
  }

  .floating-contact-wrap {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .float-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .float-icon::after {
    display: none;
  } /* Hide tooltips on mobile */
}
