﻿:root {
  /* Brand Colors */
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --accent-color: #0ea5e9;
  --hover-primary: #1b6ec2;
  --hover-secondary: #1861ac;
  /* Background Colors */
  --dark-bg: #0f172a;
  --light-bg: #f8fafc;
  --card-bg: #f5f7fc;
  --white-bg: #ffffff;
  --manifesto-primary: #001334;
  --manifesto-secondary: #0a1d3d;
  /* Text Colors */
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-tertiary: #475569;
  --text-white: #ffffff;
  --text-light-gray: #e4e4e7;
  --text-medium-gray: #6b7280;
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-blue: linear-gradient(135deg, #2258e7 0%, #a7bcf5 100%);
  --gradient-white: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  /* Transparencies */
  --white-transparent-light: rgba(255, 255, 255, 0.1);
  --white-transparent-medium: rgba(255, 255, 255, 0.2);
  --white-transparent-heavy: rgba(255, 255, 255, 0.3);
  --white-transparent-90: rgba(255, 255, 255, 0.9);
  --white-transparent-98: rgba(255, 255, 255, 0.98);
  --blue-transparent: rgba(34, 88, 231, 0.2);
  --blue-shadow: rgba(34, 88, 231, 0.3);
  --blue-glow: rgba(34, 88, 231, 0.5);
  --black-transparent: rgba(0, 0, 0, 0.05);
  --black-shadow: rgba(0, 0, 0, 0.08);
  --black-medium: rgba(0, 0, 0, 0.1);
  --black-heavy: rgba(0, 0, 0, 0.2);
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  /* Font Sizes */
  --font-xs: 0.9rem;
  --font-sm: 1rem;
  --font-md: 1.1rem;
  --font-lg: 1.25rem;
  --font-xl: 1.8rem;
  --font-2xl: 2rem;
  --font-3xl: 2.2rem;
  --font-4xl: 3.5rem;
  --font-responsive: clamp(1.5rem, 4vw, 3rem);
  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --radius-full: 50px;
  /* Shadows */
  --shadow-sm: 0 4px 20px var(--black-shadow);
  --shadow-md: 0 8px 10px var(--black-transparent);
  --shadow-lg: 0 8px 15px var(--black-medium);
  --shadow-xl: 0 10px 30px var(--black-transparent);
  --shadow-blue: 0 10px 30px var(--blue-shadow);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
}

/* Navbar*/
.navbar-custom {
  background: transparent;
  transition: all 0.3s ease;
  padding: var(--spacing-sm) 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(0);
}

.navbar-custom.navbar-hidden {
  transform: translateY(-100%);
}

.navbar-custom.navbar-scrolled {
  background: var(--white-transparent-98);
  box-shadow: var(--shadow-sm);
}

.navbar-custom.navbar-scrolled .navbar-brand,
.navbar-custom.navbar-scrolled .nav-link,
.navbar-custom.navbar-scrolled .navbar-toggler {
  color: var(--primary-color) !important;
}

.navbar-custom:hover {
  background: var(--white-transparent-98);
  box-shadow: var(--shadow-sm);
}

.navbar-custom:hover .navbar-brand,
.navbar-custom:hover .nav-link {
  color: var(--primary-color) !important;
}

.navbar-custom:hover .navbar-toggler {
  border-color: var(--primary-color) !important;
}

.navbar-toggler {
  border-color: var(--text-white) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-custom.navbar-scrolled .navbar-toggler-icon,
.navbar-custom:hover .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%231b6ec2' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-brand {
  font-weight: 700;
  font-size: var(--font-xl);
  color: var(--text-white) !important;
  text-decoration: none;
}

.nav-link {
  font-weight: 500;
  color: var(--text-white) !important;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 var(--spacing-xs);
}

.nav-link:hover {
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

.send-req-btn {
  color: var(--text-white) !important;
  background-color: transparent;
  border-color: var(--text-white);
  border-radius: 0;
  padding: 10px 25px;
}

.navbar-custom.navbar-scrolled .send-req-btn,
.navbar-custom:hover .send-req-btn {
  color: var(--text-white);
  background-color: var(--hover-primary);
  border-color: var(--hover-secondary);
}

.navbar-custom.navbar-mobile-open {
  background: var(--white-transparent-98) !important;
  box-shadow: var(--shadow-sm);
}

.navbar-custom.navbar-mobile-open .navbar-brand,
.navbar-custom.navbar-mobile-open .nav-link,
.navbar-custom.navbar-mobile-open .navbar-toggler {
  color: var(--primary-color) !important;
}

.navbar-custom.navbar-mobile-open .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%231b6ec2' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-custom.navbar-mobile-open .send-req-btn {
  color: var(--text-white) !important;
  background-color: var(--hover-primary);
  border-color: var(--hover-secondary);
}

/* Scroll to Top Button */
.scroll-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  z-index: 99999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background-color: var(--hover-primary);
  transform: scale(1.1);
}

.scroll-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-btn i {
  transition: transform 0.3s ease;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: var(--font-4xl);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: var(--font-lg);
  color: var(--white-transparent-90);
  margin-bottom: var(--spacing-lg);
  font-weight: 400;
}

.btn-primary-custom {
  background: transparent;
  border: 2px solid var(--white-transparent-heavy);
  color: var(--text-white);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(10px);
}

.btn-primary-custom:hover {
  background: var(--white-transparent-medium);
  border-color: var(--white-transparent-heavy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
  color: var(--text-white);
}

/* Manifesto Section */
.manifesto-section {
  height: 100vh;
  background: linear-gradient(
    135deg,
    var(--manifesto-primary) 0%,
    var(--manifesto-secondary) 100%
  );
  color: var(--text-light-gray);
  padding: var(--spacing-xl) var(--spacing-xl);
  overflow: hidden;
  position: relative;
}

.manifesto-container {
  max-width: 1200px;
  margin: 0 auto;
}

.manifesto-title {
  font-size: var(--font-3xl);
  font-weight: bold;
  margin-bottom: var(--spacing-xl);
  color: var(--text-white);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

.manifesto-text {
  font-size: var(--font-responsive);
  line-height: 1.4;
  margin-bottom: var(--spacing-2xl);
  font-weight: 300;
  word-spacing: 0.75rem;
}

.manifesto-text span {
  display: inline-block;
  position: relative;
  color: var(--text-medium-gray);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.4;
}

.manifesto-text span.highlighted {
  color: var(--text-white);
  opacity: 1;
  text-shadow: 0 0 20px var(--blue-glow);
  transform: scale(1.05);
}

.manifesto-text span.active {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  transform: scale(1.1);
  text-shadow: none;
}

.ticker-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.ticker-row {
  display: flex;
  overflow: hidden;
  mask: linear-gradient(
    90deg,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(
    90deg,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.ticker-content {
  display: flex;
  animation: scroll-left 25s linear infinite;
  gap: var(--spacing-xl);
  width: max-content;
}

.ticker-row:nth-child(even) .ticker-content {
  animation: scroll-right 25s linear infinite;
}

.ticker-item {
  flex-shrink: 0;
  height: 80px;
  min-width: 200px;
  background: var(--white-transparent-light);
  border: 1px solid var(--white-transparent-medium);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ticker-item:hover {
  background: var(--blue-transparent);
  border-color: #2258e7;
  box-shadow: var(--shadow-blue);
}

.ticker-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--white-transparent-light),
    transparent
  );
  transition: left 0.5s ease;
}

.ticker-item:hover::before {
  left: 100%;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Vision Section */
.vision-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--light-bg);
}

.vision-content {
  position: relative;
  z-index: 2;
  padding: 8rem var(--spacing-lg);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.vision-content * {
  color: inherit;
  transition: color 0.5s ease;
}

.vision-title {
  font-size: var(--font-3xl);
  font-weight: bold;
}

.vision-motto {
  font-size: var(--font-responsive);
  font-weight: bold;
}

.vision-text {
  font-size: 1.2rem;
}

.vision-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 88, 231, 1);
  clip-path: circle(150% at 50% 100%);
  pointer-events: none;
  transition: clip-path 0.8s ease, background-color 0.8s ease;
  z-index: 1;
}

/* Services */
.services-section {
  position: relative;
  z-index: 1;
}

.service-card {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  border: none;
  border-top: 1px solid var(--text-medium-gray);
}

.service-card-content {
  background: var(--card-bg);
  padding: 60px;
  width: 100%;
  height: 100vh;
}

.service-card-title {
  font-size: var(--font-3xl);
  font-weight: 700;
  margin: 0;
}

.service-card-description {
  font-size: var(--font-md);
  margin-bottom: 40px;
  opacity: 0.9;
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.service-feature-item {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--white-transparent-heavy);
  padding: 20px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px) saturate(180%);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
}

.service-feature-item:hover {
  box-shadow: var(--shadow-lg);
}

.service-feature-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--primary-color);
}

.service-feature-item p {
  font-size: var(--font-xs);
  color: var(--text-tertiary);
  opacity: 0.9;
}

.service-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}

.service-image {
  flex: 0 0 40%;
}

.service-image img {
  width: 100%;
}

.service-text {
  flex: 1;
  padding: 30px;
  background: var(--gradient-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.service-text .service-card-title {
  font-size: var(--font-2xl);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-text .service-card-description {
  font-size: var(--font-md);
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.7;
  color: var(--text-tertiary);
}

.service-card:nth-child(even) .service-card-content {
  background: linear-gradient(
    135deg,
    var(--manifesto-primary) 0%,
    var(--manifesto-secondary) 100%
  );
}

.service-card:nth-child(odd) .service-layout {
  flex-direction: row-reverse;
}

/* Technology Section */
.technology-section {
  padding: var(--spacing-lg) var(--spacing-lg);
  background: var(--white-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.technology-title {
  font-size: var(--font-3xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.tech-category {
  width: 100%;
  max-width: 1000px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.tech-card {
  background: var(--white-bg);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--black-transparent);
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--white-transparent-medium),
    transparent
  );
  transition: left 0.5s;
}

.tech-card:hover::before {
  left: 100%;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-blue);
  border-color: var(--primary-color);
}

.tech-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tech-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.tech-card:hover .tech-icon img {
  transform: scale(1.1);
}

.tech-name {
  font-size: var(--font-md);
  font-weight: 600;
  color: var(--text-primary);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tech-card {
  animation: slideInUp 0.6s ease-out forwards;
}

.tech-card:nth-child(1) {
  animation-delay: 0.1s;
}

.tech-card:nth-child(2) {
  animation-delay: 0.2s;
}

.tech-card:nth-child(3) {
  animation-delay: 0.3s;
}

.tech-card:nth-child(4) {
  animation-delay: 0.4s;
}

.tech-card:nth-child(5) {
  animation-delay: 0.5s;
}

.tech-card:nth-child(6) {
  animation-delay: 0.6s;
}

.tech-card:nth-child(7) {
  animation-delay: 0.7s;
}

.tech-grid .tech-card:nth-child(n + 8) {
  animation-delay: 0.8s;
}

/* Products Section */
.products-section {
  background: linear-gradient(
    135deg,
    var(--manifesto-primary) 0%,
    var(--manifesto-secondary) 100%
  );
  min-height: 100vh;
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.products-container {
  position: relative;
  z-index: 2;
}

.products-header {
  text-align: left;
  margin-bottom: var(--spacing-xl);
}

.products-badge {
  font-weight: bold;
  color: var(--text-white);
  display: inline-block;
  font-size: var(--font-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sm);
}

.products-title {
  color: var(--text-white);
  font-size: var(--font-lg);
  line-height: 1.7;
}

.product-card {
  background: var(--white-transparent-light);
  padding: var(--spacing-lg);
  border-radius: 1rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--blue-transparent) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-color);
  box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.product-category {
  color: var(--text-white);
  padding: var(--spacing-xs) var(--spacing-md);
  border: 2px solid var(--blue-glow);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.product-arrow {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  cursor: pointer;
  flex-shrink: 0;
}

.product-arrow a {
  color: inherit;
  text-decoration: none;
  font-size: 1.25rem;
}

.product-content {
  position: relative;
  z-index: 2;
}

.product-title {
  color: var(--text-white);
  font-size: var(--font-3xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-xs);
}

.product-description {
  color: var(--text-white);
  font-size: var(--font-md);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-xl);
}

.product-features li {
  color: var(--text-light-gray);
  font-size: var(--font-sm);
  padding: var(--spacing-xs) 0;
  display: flex;
  align-items: center;
  position: relative;
}

.product-features li::before {
  content: "→";
  color: var(--primary-color);
  font-weight: 600;
  margin-right: var(--spacing-sm);
  transition: transform 0.3s ease;
}

.product-card:hover .product-features li::before {
  transform: translateX(4px);
}

.product-visual {
  margin: 1rem 0;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--white-transparent-98);
  min-height: 100vh;
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.testimonials-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

.testimonials-header {
  margin-bottom: var(--spacing-xl);
}

.testimonials-title {
  font-size: var(--font-sm);
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.testimonials-subtitle {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.4s forwards;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--spacing-lg);
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: var(--spacing-lg);
}

.testimonial-card {
  background: var(--white-bg);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--black-transparent);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 0 0 calc(33.333% - var(--spacing-lg));
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease-out forwards;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-blue);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.testimonial-card:hover::before {
  opacity: 0.05;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-blue);
  border-color: var(--primary-color);
}

.testimonial-content {
  position: relative;
  z-index: 2;
  margin-bottom: var(--spacing-xs);
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  display: block;
  opacity: 0.7;
}

.testimonial-text {
  font-size: var(--font-md);
  line-height: 1.7;
  color: var(--text-tertiary);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.testimonial-rating {
  display: flex;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.star {
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-author {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: 600;
  font-size: var(--font-lg);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.author-avatar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.testimonial-card:hover .author-avatar::before {
  transform: translateX(100%);
}

.author-info h4 {
  font-size: var(--font-md);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

.author-info p {
  font-size: var(--font-sm);
  color: var(--text-secondary);
}

.company-logo {
  font-size: var(--font-xs);
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white-bg);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.nav-btn:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: scale(1.05);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--light-bg);
  border-color: var(--text-medium-gray);
  color: var(--text-medium-gray);
}

.nav-btn:disabled:hover {
  transform: none;
  background: var(--light-bg);
  color: var(--text-medium-gray);
}

.progress-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex: 1;
  min-width: 200px;
}

.progress-bar {
  flex: 1;
  height: 4px;
  width: 50vw;
  min-width: 100px;
  background-color: lavender;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-blue);
  border-radius: 2px;
  transition: width 0.5s ease;
  position: relative;
}

.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

.progress-text {
  font-size: var(--font-sm);
  color: var(--text-secondary);
  font-weight: 500;
  min-width: 40px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Contact Section */
.contact-section {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--manifesto-primary) 0%,
    var(--dark-bg) 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: var(--spacing-xl) 0;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.contact-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--text-white);
}

.contact-title {
  font-size: var(--font-3xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.contact-subtitle {
  font-size: var(--font-lg);
  color: var(--text-light-gray);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.4s forwards;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-xl);
  align-items: start;
}

.contact-info {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 1s ease-out 0.6s forwards;
}

.contact-info h3 {
  font-size: var(--font-xl);
  color: var(--text-white);
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--white-transparent-light);
  border: 1px solid var(--white-transparent-medium);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-item:hover {
  background: var(--blue-transparent);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-blue);
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--white-transparent-light),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-item:hover::before {
  left: 100%;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--spacing-md);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.contact-icon i {
  color: var(--text-white);
  font-size: 1.2rem;
}

.contact-details h4 {
  color: var(--text-white);
  font-size: var(--font-md);
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
}

.contact-details p {
  color: var(--text-light-gray);
  font-size: var(--font-sm);
  line-height: 1.6;
  margin: 0;
}

.contact-details a {
  color: var(--text-light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--text-white);
}

.contact-form-wrapper {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 1s ease-out 0.8s forwards;
}

.contact-form {
  background: var(--white-transparent-light);
  border: 1px solid var(--white-transparent-medium);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: var(--font-xl);
  color: var(--text-white);
  margin-bottom: var(--spacing-lg);
  font-weight: 600;
  text-align: center;
}

.form-group {
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.form-group label {
  display: block;
  color: var(--text-light-gray);
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
  font-size: var(--font-sm);
}

.form-control {
  width: 100%;
  padding: 15px var(--spacing-md);
  background: var(--white-transparent-light);
  border: 2px solid var(--white-transparent-heavy);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-size: var(--font-sm);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--white-transparent-medium);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control:hover {
  border-color: var(--white-transparent-heavy);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-control.textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  background: var(--gradient-blue);
  border: none;
  color: var(--text-white);
  font-weight: 600;
  font-size: var(--font-md);
  padding: 15px var(--spacing-lg);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Footer */
.custom-footer {
  background: var(--white-transparent-98);
  padding: 60px 0 30px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: black !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: blue !important;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  color: black !important;
}

.footer-divider {
  border-color: black;
}

/* Tablet Responsive Styles (768px - 1024px) */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .hero-section {
    min-height: 70vh;
  }

  .hero-title {
    font-size: var(--font-responsive);
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .manifesto-section {
    padding: var(--spacing-xl);
    min-height: 60vh;
  }

  .manifesto-text {
    font-size: clamp(1.2rem, 3.5vw, 2.5rem);
  }

  .ticker-item {
    height: 70px;
    min-width: 180px;
  }

  .vision-section {
    min-height: 45vh;
  }

  .vision-content {
    padding: 6rem var(--spacing-lg);
  }

  .service-card {
    min-height: 90vh;
  }

  .service-card-content {
    min-height: 90vh;
    padding: 10px;
  }

  .service-layout {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .service-card:nth-child(odd) .service-layout {
    flex-direction: column;
  }

  .service-text {
    flex: none;
    width: 95%;
    order: 2;
    padding: 20px;
  }

  .service-text .service-card-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .service-text .service-card-description {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .service-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-feature-item {
    text-align: center;
  }

  .service-image img {
    width: 40%;
  }

  .contact-content {
    gap: var(--spacing-lg);
  }

  .contact-form {
    padding: var(--spacing-lg);
  }

  .form-row {
    gap: var(--spacing-sm);
  }

  .technology-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    min-height: 80vh;
  }

  .technology-title {
    font-size: var(--font-3xl);
    margin-bottom: var(--spacing-md);
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
  }

  .tech-card {
    padding: var(--spacing-md);
  }

  .tech-icon {
    width: 70px;
    height: 70px;
  }

  .products-title {
    font-size: 1.25rem;
  }

  .testimonials-section {
    min-height: 80vh;
    padding: var(--spacing-2xl) 0;
  }

  .testimonials-title {
    font-size: var(--font-responsive);
  }

  .testimonials-subtitle {
    font-size: var(--font-md);
  }

  .testimonial-card {
    flex: 0 0 calc(50% - var(--spacing-md));
    padding: var(--spacing-md);
  }

  .progress-bar {
    width: 150px;
  }
}

/* Mobile Responsive Styles (max-width: 767px) */
@media screen and (max-width: 767px) {
  .navbar-custom {
    transition: all 0.3s ease;
  }

  .navbar-collapse {
    background: var(--white-transparent-98);
    margin-top: 10px;
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
  }

  .navbar-custom.navbar-mobile-open .navbar-collapse {
    background: transparent;
    box-shadow: none;
  }

  .navbar-custom .nav-link {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    margin: 2px 0;
    transition: all 0.2s ease;
  }

  .navbar-custom .nav-link:hover {
    background: var(--blue-transparent);
    transform: translateY(0);
  }

  .navbar-custom.navbar-mobile-open .nav-link {
    color: var(--primary-color) !important;
  }

  .navbar-custom.navbar-mobile-open .nav-link:hover {
    background: var(--blue-transparent);
    color: var(--hover-primary) !important;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .nav-link {
    margin: var(--spacing-xs) 0;
    padding: var(--spacing-xs) 0;
  }

  .hero-section {
    min-height: 70vh;
    padding: 0 var(--spacing-sm);
  }

  .hero-title {
    font-size: var(--font-responsive);
    margin-bottom: var(--spacing-sm);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
  }

  .btn-primary-custom {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .manifesto-section {
    padding: var(--spacing-2xl) var(--spacing-sm);
    height: auto;
    min-height: 60vh;
  }

  .manifesto-text {
    font-size: var(--font-responsive);
    margin-bottom: var(--spacing-xl);
    word-spacing: 0.5rem;
  }

  .ticker-grid {
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
  }

  .ticker-item {
    height: 60px;
    min-width: 160px;
  }

  .ticker-content {
    gap: var(--spacing-lg);
  }

  .vision-section {
    min-height: 40vh;
  }

  .vision-content {
    padding: var(--spacing-3xl) var(--spacing-xl);
  }

  .vision-motto {
    font-size: var(--font-responsive);
  }

  .vision-text {
    font-size: 1rem;
  }

  .service-card {
    height: auto;
    min-height: 80vh;
  }

  .service-card-content {
    padding: 40px 30px;
    height: auto;
    min-height: 80vh;
  }

  .service-card-title {
    font-size: var(--font-3xl);
    margin-bottom: var(--spacing-sm);
  }

  .service-card-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .service-layout {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .service-card:nth-child(odd) .service-layout {
    flex-direction: column;
  }

  .service-image {
    flex: none;
    width: 100%;
  }

  .service-text {
    padding: 20px;
  }

  .service-text .service-card-title {
    font-size: 1.6rem;
  }

  .service-text .service-card-description {
    font-size: 1rem;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-feature-item {
    padding: 15px;
  }

  .service-image img {
    width: 35%;
  }

  .technology-section {
    padding: var(--spacing-2xl) var(--spacing-sm);
  }

  .technology-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
  }

  .tech-card {
    padding: var(--spacing-lg);
  }

  .tech-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--spacing-sm);
  }

  .tech-name {
    font-size: var(--font-md);
  }

  .products-section {
    padding: var(--spacing-lg) 0;
  }

  .products-title {
    font-size: var(--font-md);
  }

  .product-title {
    font-size: 1.5rem;
  }

  .product-card {
    padding: var(--spacing-md);
  }

  .product-header {
    gap: var(--spacing-sm);
    align-items: flex-start;
  }

  .product-arrow {
    align-self: flex-end;
  }

  .testimonials-section {
    min-height: auto;
    padding: var(--spacing-xl) 0;
  }

  .testimonials-container {
    padding: 0 var(--spacing-sm);
  }

  .testimonials-header {
    margin-bottom: var(--spacing-xl);
  }

  .testimonials-subtitle {
    font-size: var(--font-sm);
  }

  .testimonial-card {
    flex: 0 0 calc(100% - var(--spacing-sm));
    padding: var(--spacing-md);
  }

  .testimonial-text {
    font-size: var(--font-sm);
  }

  .author-avatar {
    width: 50px;
    height: 50px;
    font-size: var(--font-md);
  }

  .author-info h4 {
    font-size: var(--font-sm);
  }

  .author-info p {
    font-size: var(--font-xs);
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .progress-bar {
    width: 100px;
  }

  .testimonials-nav {
    gap: var(--spacing-sm);
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form-wrapper {
    width: 100%;
    transform: none;
    opacity: 1;
    animation: none;
  }

  .custom-footer {
    padding: 40px 20px;
  }

  .footer-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
  }

  .social-links a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-right: 8px;
  }
}

/* Small Mobile Responsive Styles (max-width: 480px) */
@media screen and (max-width: 480px) {
  .navbar-custom {
    padding: var(--spacing-xs);
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  .hero-section {
    min-height: 70vh;
    padding: var(--spacing-xs);
  }

  .hero-title {
    font-size: var(--font-2xl);
    line-height: 1.4;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-primary-custom {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .manifesto-section {
    padding: var(--spacing-lg) 1rem;
    min-height: 60vh;
  }

  .manifesto-title {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
  }

  .manifesto-text {
    font-size: var(--font-responsive);
    word-spacing: 0.25rem;
  }

  .vision-title {
    font-size: var(--font-2xl);
  }

  .ticker-item {
    height: 50px;
    min-width: 140px;
    font-size: 0.8rem;
  }

  .vision-section {
    min-height: 50vh;
  }

  .vision-content {
    padding: var(--spacing-xl) 1rem;
  }

  .service-card {
    min-height: 70vh;
  }

  .service-card-content {
    padding: 30px 20px;
    min-height: 70vh;
  }

  .service-card-title {
    font-size: var(--font-3xl);
  }

  .service-text {
    padding: 15px;
  }

  .service-text .service-card-title {
    font-size: 1.4rem;
  }

  .service-text .service-card-description {
    font-size: 0.9rem;
  }

  .service-feature-item {
    padding: 12px;
  }

  .service-feature-item h4 {
    font-size: 0.95rem;
  }

  .service-feature-item p {
    font-size: 0.8rem;
  }

  .technology-section {
    padding: var(--spacing-xl) 1rem;
  }

  .technology-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-xs);
  }

  .tech-card {
    padding: var(--spacing-md);
  }

  .tech-icon {
    width: 50px;
    height: 50px;
  }

  .tech-name {
    font-size: var(--font-sm);
  }

  .product-category {
    white-space: wrap;
  }

  .product-header {
    gap: 0;
  }

  .testimonials-section {
    padding: var(--spacing-lg) 0;
  }

  .testimonials-container {
    padding: 0 1rem;
  }

  .testimonials-title {
    font-size: var(--font-2xl);
  }

  .testimonial-card {
    padding: var(--spacing-md);
  }

  .quote-icon {
    font-size: 1.5rem;
  }

  .testimonial-text {
    font-size: var(--font-xs);
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-sm);
  }

  .author-avatar {
    width: 45px;
    height: 45px;
    font-size: var(--font-sm);
  }

  .progress-text {
    font-size: var(--font-xs);
  }

  .footer-title {
    font-size: 1rem;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    margin-right: 6px;
  }

  .contact-title {
    font-size: var(--font-2xl);
  }

  .contact-subtitle {
    font-size: 0.9rem;
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 1.4rem;
  }

  .contact-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-icon {
    width: 35px;
    height: 35px;
    margin: 0 auto var(--spacing-xs) auto;
  }

  .contact-form {
    padding: var(--spacing-sm);
  }

  .form-control {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .submit-btn {
    font-size: 0.9rem;
    padding: 12px var(--spacing-sm);
  }

  .contact-content {
    gap: var(--spacing-md);
  }

  .form-row {
    gap: var(--spacing-xs);
  }
}

/* Extra Large Screen Adjustments (min-width: 1400px) */
@media screen and (min-width: 1400px) {
  .hero-title {
    font-size: 4rem;
  }

  .manifesto-container {
    max-width: 1400px;
  }

  .vision-content {
    max-width: 1200px;
  }

  .service-card-content {
    padding: 80px;
  }

  .service-layout {
    gap: 60px;
  }

  .technology-section {
    padding: var(--spacing-xl) 0;
  }

  .tech-category {
    max-width: 1400px;
  }

  .technology-title {
    font-size: 4rem;
  }

  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-2xl);
  }

  .tech-card {
    padding: var(--spacing-xl);
  }

  .tech-icon {
    width: 80px;
    height: 80px;
  }

  .tech-name {
    font-size: var(--font-xl);
  }

  .products-title {
    font-size: 1.375rem;
  }

  .product-title {
    font-size: 2.25rem;
  }

  .testimonials-container {
    max-width: 1400px;
  }

  .testimonials-title {
    font-size: 4rem;
  }

  .testimonial-card {
    padding: var(--spacing-2xl);
  }
}

/* jobs section */
.careers-section .list-group-item {
  border: none;
  border-left: 4px solid transparent;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: 0.3s;
}

.careers-section .list-group-item.active {
  background: var(--bs-primary);
  color: white;
  border-color: var(--bs-primary);
}

.careers-section .list-group-item:hover:not(.active) {
  background: var(--bs-light);
  transform: translateX(4px);
}

.job-content {
  display: none;
}

.job-content.active {
  display: block;
  animation: fadeIn 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* blog background */
.blog-hero {
  background: var(--dark-bg, #0d1b2a);
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
  position: relative;
}

.blog-image {
  max-width: 60%;
  height: auto;
}

/* career background */
.career-hero {
  background: var(--dark-bg, #0d1b2a);
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
  position: relative;
}

.hero-bg {
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.05),
      transparent 70%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 255, 255, 0.05),
      transparent 70%
    );
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.hero-image {
  max-width: 60%;
  height: auto;
  transition: transform 0.4s ease;
}

.hero-image:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .career-hero {
    padding-top: 8rem;
    text-align: center;
  }

  .hero-image {
    max-width: 60%;
    margin-top: 2rem;
  }
}

@media (max-width: 769px) {
  .hero-divider {
    padding-top: 80px;
  }
}

/* Admin Page */
.admin-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
  width: 260px;
  background: rgba(43, 45, 66, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-header img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.sidebar-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: white;
}

.sidebar-menu {
  padding: 1rem 0;
}

.sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin: 0.25rem 0;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: rgba(67, 97, 238, 0.2);
  color: white;
  border-left-color: var(--primary-color);
}

.sidebar-menu i {
  width: 20px;
  text-align: center;
}

/* Main Content Area */
.main-content {
  flex: 1;
  margin-left: 260px;
  background: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(10px);
  min-height: 100vh;
}

/* Top Header */
.top-header {
  background: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
}

.header-title h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
}

.profile-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Content Wrapper */
.content-wrapper {
  padding: 2rem;
}

/* Cards */
.dashboard-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.bg-primary {
  background: var(--primary-color);
}

.bg-success {
  background: var(--success-color);
}

.bg-warning {
  background: var(--warning-color);
}

.bg-accent {
  background: var(--accent-color);
}

.card-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0.5rem 0;
}

.card-desc {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.mobile-open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }

  .content-wrapper {
    padding: 1rem;
  }

  .top-header {
    padding: 1rem;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* Blog Card Styles */
.blog-card {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
}

.blog-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-card-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md) var(--radius-md 0 0);
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}
