:root {
  --primary: #2563eb; /* Corporate Royal Blue */
  --primary-hover: #1d4ed8;
  --primary-light: #dbeafe;
  --secondary: #6366f1; /* Tech Indigo */
  --text-main: #0f172a; /* Slate 900 */
  --text-muted: #475569;
  --bg-main: #ffffff;
  --bg-alt: #f8fafc; /* Slate 50 */
  --border-light: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --font-main: "Inter", sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.bg-alt {
  background-color: var(--bg-alt);
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--text-main);
  color: var(--text-main);
}

.btn-outline:hover {
  background-color: var(--text-main);
  color: white;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.logo-dot {
  color: var(--primary);
  font-size: 2.2rem;
  line-height: 0;
  margin-left: 2px;
}

.logo-tech {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links li a {
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links li a:hover {
  color: var(--primary);
}

.nav-links li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background-color: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main);
  opacity: 0;
  animation: slideUp 0.8s ease forwards 0.2s;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  opacity: 0;
  animation: slideUp 0.8s ease forwards 0.4s;
}

.hero-cta {
  display: flex;
  gap: 15px;
  opacity: 0;
  animation: slideUp 0.8s ease forwards 0.6s;
}

.hero-image {
  flex: 1;
  position: relative;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.8s;
}

.ken-burns-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ken-burns-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: kenBurnsHero 20s infinite alternate ease-in-out;
}

@keyframes kenBurnsHero {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.15) translate(-2%, -2%);
  }
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 4s ease-in-out infinite;
}

.floating-icon {
  background: var(--primary-light);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  color: var(--primary);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Stats Section */
.stats {
  background-color: var(--text-main);
  color: white;
  padding: 80px 0;
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/images/tech-abstract.png");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.stats .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h4 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-item p {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

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

.insight-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.insight-card:hover {
  box-shadow: var(--shadow-md);
}

.insight-img {
  height: 200px;
  background-color: var(--bg-alt);
  background-size: cover;
  background-position: center;
}

.insight-content {
  padding: 25px;
}

.insight-meta {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.insight-content h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  transition: var(--transition);
}

.insight-card:hover h3 {
  color: var(--primary);
}

.insight-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.read-more {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more:hover {
  color: var(--primary);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #fff9f0 0%, #fdfbf7 100%);
  color: var(--text-main);
  padding: 0 0 20px;
  position: relative;
}

.footer-newsletter {
  background-color: var(--bg-alt);
  padding: 40px 0;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.newsletter-text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.newsletter-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 1rem;
}

.newsletter-form button {
  padding: 14px 24px;
  background: #0f172a;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-form button:hover {
  background: white;
  color: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  color: var(--text-main);
  margin-bottom: 20px;
}

.footer-about {
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-main);
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
  color: white;
}

.footer-links h4 {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: var(--text-main);
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul li a i {
  font-size: 0.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.footer-links ul li a:hover i {
  transform: translateX(3px);
}

.footer-contact-minimal {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-minimal li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-contact-minimal li i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 25px;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-flex p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-links {
  display: flex;
  gap: 25px;
}

.legal-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--primary);
}

/* Typewriter & Shapes */
.typewriter {
  border-right: 3px solid var(--primary);
  white-space: nowrap;
  animation: blinkCursor 0.75s step-end infinite;
}

@keyframes blinkCursor {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: var(--primary);
  }
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  opacity: 0.1;
  z-index: 0;
  animation: floatShape 15s infinite linear;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  left: -100px;
}
.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  right: 10%;
  animation-direction: reverse;
  animation-duration: 20s;
}
.shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: -50px;
}

@keyframes floatShape {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  50% {
    transform: rotate(180deg) translate(50px, 50px);
  }
  100% {
    transform: rotate(360deg) translate(0, 0);
  }
}

.floating-hero-img {
  animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* New Sections: About, Industries, Careers */
.section-badge {
  display: inline-block;
  padding: 5px 15px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.about-list i {
  margin-right: 10px;
}

.rounded-image {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.industry-card {
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.industry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: white;
  transition: var(--transition);
}

.industry-card:hover .industry-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(234, 88, 12, 0.4)
  );
  padding-bottom: 35px;
}

.industry-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  transform: translateY(10px);
  transition: var(--transition);
}

.industry-overlay p {
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.industry-card:hover .industry-overlay h3 {
  transform: translateY(0);
}
.industry-card:hover .industry-overlay p {
  opacity: 1;
  transform: translateY(0);
}

.careers-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--text-main), #0f172a);
  color: white;
}

.careers-content {
  max-width: 700px;
  margin: 0 auto;
}

.careers-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.careers-content p {
  font-size: 1.15rem;
  opacity: 0.8;
}

/* Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for grids */
.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}
.delay-300 {
  transition-delay: 0.3s;
}
.delay-400 {
  transition-delay: 0.4s;
}

/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Responsive */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    margin: 0 auto 30px;
  }

  .hero-cta {
    justify-content: center;
  }

  .floating-card {
    left: 20px;
    bottom: -20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   NEW SECTIONS — Why Us, Tech Stack, Process,
   Contact Form, Floating CTA, Insight Author
   ============================================ */

/* Nav CTA button */
.nav-cta {
  display: inline-block !important;
}

/* Delay-500 */
.delay-500 {
  transition-delay: 0.5s;
}

/* Service card "learn more" hint */
.card-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.75;
  transition: var(--transition);
}
.service-card:hover .card-learn {
  opacity: 1;
  gap: 10px;
}

/* Service card link (legacy) */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.service-link:hover {
  gap: 10px;
}

/* Why Info-tech Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.why-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 35px 30px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  transform: scale(1.1) rotate(5deg);
}
.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Technology Stack */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 50px;
}
.tech-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: default;
}
.tech-badge i {
  font-size: 1.3rem;
  color: var(--secondary);
  transition: var(--transition);
}
.tech-badge:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.tech-badge:hover i {
  color: var(--primary);
}

/* Process Steps */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  transition: var(--transition);
}
.process-step:hover .step-num {
  transform: scale(1.15);
}
.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-main);
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.process-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  margin-top: 32px;
  opacity: 0.4;
}

/* Insight author */
.insight-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.author-avatar {
  font-size: 2rem;
  color: var(--border-light);
  line-height: 1;
}
.insight-author strong {
  font-size: 0.9rem;
  color: var(--text-main);
}
.insight-author small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact-section {
  background-color: var(--bg-alt);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: var(--text-muted);
}
.contact-details li i {
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-details strong {
  color: var(--text-main);
}

/* Contact Form */
.contact-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: var(--text-main);
  transition: var(--transition);
  background: #f8fafc;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-group textarea {
  resize: vertical;
}
.form-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border-radius: 8px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -5px;
}
.form-note i {
  color: var(--primary);
  margin-right: 5px;
}
.form-success {
  text-align: center;
  padding: 60px 20px;
  color: var(--primary);
}
.form-success i {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}
.form-success h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 10px;
}
.form-success p {
  color: var(--text-muted);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.floating-cta-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.floating-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
}
.floating-cta-btn.collapsed {
  border-radius: 50%;
  padding: 16px;
  width: 56px;
  height: 56px;
  justify-content: center;
}
.floating-cta-btn.collapsed span {
  display: none;
}

/* ============ Responsive Updates ============ */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .hero-cta {
    justify-content: center;
  }
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  .process-connector {
    width: 2px;
    height: 40px;
    flex: 0;
    margin: 0 0 0 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .logo {
    font-size: 1.25rem;
  }
  .logo-dot {
    font-size: 1.45rem;
  }
}

@media (max-width: 768px) {
  /* nav-links and menu-toggle handled by new CSS at bottom of file */
  .hero-title {
    font-size: 1.8rem;
    word-break: break-word;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .logo {
    font-size: 1.1rem;
  }
  .logo-dot {
    font-size: 1.3rem;
  }

  .hero-cta {
    flex-wrap: wrap;
  }
  .floating-card {
    left: 10px;
    bottom: 10px;
    right: 10px;
    width: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 25px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero {
    padding: 120px 0 60px;
  }
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* About Hero */
.about-hero {
  position: relative;
  padding: 220px 0 120px;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1920");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}
.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(30, 58, 138, 0.85) 100%
  );
  z-index: 1;
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.about-hero-subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

/* Stats Offset */
.about-stats {
  margin-top: -60px;
  z-index: 10;
  border-radius: 16px;
  margin-left: 20px;
  margin-right: 20px;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 1200px) {
  .about-stats {
    margin-left: auto;
    margin-right: auto;
    max-width: 1160px;
  }
}

/* Align Center Utility */
.align-center {
  align-items: center;
}

/* Mission & Vision Cards */
.mission-vision-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mv-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}
.mv-card i {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.mv-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.mv-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--border-light);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
}
.timeline-dot {
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}
.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}
.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}
.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.timeline-content:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.timeline-content h3 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 5px;
}
.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.timeline-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 70px;
    padding-right: 20px;
  }
  .timeline-dot {
    left: 20px !important;
  }
  .mission-vision-cards {
    grid-template-columns: 1fr;
  }
  .about-hero-title {
    font-size: 3rem;
  }
}

/* Leadership Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.team-img {
  height: 320px;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #f1f5f9;
}
.team-info {
  padding: 25px;
  text-align: center;
  border: 1px solid var(--border-light);
  border-top: none;
  border-radius: 0 0 16px 16px;
}
.team-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.team-role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.team-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.team-social a {
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: var(--transition);
}
.team-social a:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

/* Awards Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.award-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.award-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.award-item i {
  font-size: 2.5rem;
  color: #fbbf24;
  margin-bottom: 20px;
}
.award-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.award-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  /* ✅ ACTIVE: G2 — Deep Navy to Blue */
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  /* 🔄 BACKUP: G4 — Indigo to Purple */
  /* background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%); */
  color: white;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}
.cta-btn {
  background: #60a5fa;
  color: #0f172a;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: inline-block;
  border-radius: 6px;
}
.cta-btn:hover {
  background: white;
  color: #0f172a;
  transform: translateY(-2px);
}

/* ============================================================
   PRELOADER
============================================================ */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f172a;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-logo .logo-tech {
  color: #6366f1;
}
.preloader-logo .logo-dot {
  color: #2563eb;
  font-size: 2.6rem;
}
.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: spinLoader 0.9s linear infinite;
}
@keyframes spinLoader {
  to {
    transform: rotate(360deg);
  }
}
@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

/* ============================================================
   SCROLL SPY — ACTIVE NAV LINK
============================================================ */
.nav-links li a.active {
  color: var(--primary);
}
.nav-links li a.active::after {
  width: 100%;
}

/* ============================================================
   BACK TO TOP BUTTON
============================================================ */
#backToTop {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  z-index: 998;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
}
#backToTop.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
#backToTop:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.55);
}

/* ============================================================
   MOBILE DRAWER OVERLAY & SLIDE-IN MENU
============================================================ */
#menuOverlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
#menuOverlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.drawer-close:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.drawer-brand {
  display: none;
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
}
.drawer-brand .logo-tech {
  color: var(--secondary);
}
.drawer-brand .logo-dot {
  color: var(--primary);
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 290px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 35px 40px;
    gap: 0;
    z-index: 1999;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-main);
  }
  .nav-links li a::after {
    display: none;
  }
  .nav-links li:last-child a {
    border-bottom: none;
  }
  .drawer-close {
    display: block;
  }
  .drawer-brand {
    display: block;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--text-main);
    margin-right: 5px;
  }
  .nav-cta {
    display: none !important;
  }
  body.menu-open {
    overflow: hidden;
  }

  .floating-cta {
    bottom: 60px;
    right: 15px;
  }
  #backToTop {
    bottom: 130px;
    right: 15px !important;
  }
}

/* ============================================================
   HERO PARTICLES CANVAS
============================================================ */
#heroParticles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Custom cursor removed per user request */

/* ============================================================
   SERVICE MODAL
============================================================ */
#serviceModal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(10px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#serviceModal.open {
  display: flex;
}
.modal-box {
  background: white;
  border-radius: 20px;
  padding: 48px;
  max-width: 680px;
  width: 100%;
  position: relative;
  animation: modalIn 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.84) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover {
  background: #fee2e2;
  color: #ef4444;
}
.modal-icon {
  font-size: 2.8rem;
  color: var(--secondary);
  margin-bottom: 16px;
}
.modal-box h2 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--text-main);
}
.modal-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.8;
}
.modal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 30px;
}
.modal-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}
.modal-features li i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.modal-cta {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  transition: var(--transition);
}
.modal-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
}
.service-card {
  cursor: pointer;
}

/* ============================================================
   COOKIE CONSENT BANNER
============================================================ */
#cookieBanner {
  position: fixed;
  bottom: -350px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 40px));
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 26px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  transition:
    bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease;
  box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
}
#cookieBanner.visible {
  bottom: 24px;
  opacity: 1;
  pointer-events: auto;
}
.cookie-icon {
  font-size: 1.9rem;
  flex-shrink: 0;
}
.cookie-text {
  flex: 1;
  min-width: 180px;
}
.cookie-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}
.cookie-text a {
  color: #60a5fa;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-accept {
  padding: 10px 22px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-main);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-accept:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}
.cookie-decline {
  padding: 10px 18px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 500;
  font-family: var(--font-main);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}
@media (max-width: 560px) {
  #cookieBanner.visible {
    bottom: 35px !important;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-accept,
  .cookie-decline {
    flex: 1;
    text-align: center;
  }
}

/* ============================================================
   OLD ENHANCED PREMIUM FOOTER STYLES FOR INFOTECH
============================================================ */
.footer {
  background: linear-gradient(135deg, #fff9f0 0%, #fdfbf7 100%);
  color: var(--text-main);
  padding: 0 0 20px;
  position: relative;
}

.footer-newsletter {
  background-color: var(--bg-alt);
  padding: 40px 0;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border-light);
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.newsletter-text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--text-main);
}

.newsletter-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  outline: none;
  font-family: var(--font-main);
  font-size: 1rem;
}

.newsletter-form button {
  padding: 14px 24px;
  background: #0f172a;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-form button:hover {
  background: white;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  color: var(--text-main);
  margin-bottom: 20px;
}

.footer-about {
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-main);
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
  color: white;
}

.footer-links h4 {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: var(--text-main);
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul li a i {
  font-size: 0.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.footer-links ul li a:hover i {
  transform: translateX(3px);
}

.footer-contact-minimal {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-minimal li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-contact-minimal li i {
  color: var(--primary);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 25px;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-flex p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-links {
  display: flex;
  gap: 25px;
}

.legal-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--primary);
}
