/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #0066cc;
  --dark-blue: #003d7a;
  --light-blue: #4d94ff;
  --accent-blue: #0080ff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 102, 204, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 102, 204, 0.15);
  --transition: all 0.3s ease;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.25rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
  top: 10px;
  width: calc(100% - 30px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 55px;
  width: auto;
  transition: var(--transition);
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo h2 {
  color: var(--primary-blue);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu a i {
  font-size: 0.9rem;
}

.nav-menu a:not(.btn-contact) {
  padding: 0.5rem 1.2rem;
  border-radius: 12px;
}

.nav-menu a:not(.btn-contact):hover {
  color: var(--primary-blue);
  background: rgba(0, 102, 204, 0.05);
}

.nav-menu a.active:not(.btn-contact) {
  color: var(--primary-blue);
  background: rgba(0, 102, 204, 0.08);
}

.btn-contact {
  padding: 0.6rem 1.5rem;
  background: var(--primary-blue);
  color: var(--text-white) !important;
  border-radius: 25px;
  transition: var(--transition);
}

.btn-contact:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  margin: 3px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000;
  color: var(--text-white);
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("public/hero-bg.jpg") center/cover no-repeat;
  z-index: 0;
  transform: scale(1.1);
  transition: transform 0.8s ease-out;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(0, 61, 122, 0.4) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.hero-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--primary-blue);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  z-index: 2;
  pointer-events: none;
  animation: floatShape 15s infinite alternate ease-in-out;
}

.hero-shape-1 {
  top: -100px;
  right: -100px;
  background: var(--light-blue);
}
.hero-shape-2 {
  bottom: -150px;
  left: -100px;
  animation-delay: -5s;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(80px, 40px) rotate(15deg);
  }
}

.hero-glass-wrapper {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem;
  border-radius: 40px;
  max-width: 900px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: glassReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes glassReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(to bottom, #fff 40%, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: #fff;
  color: var(--primary-blue);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-4px);
}

.btn-block {
  width: 100%;
  display: block;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-blue);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-top: 1.5rem;
}

/* About Section */
.about {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.about-main-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-label {
  color: var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.about-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-image-column {
  position: relative;
  perspective: 1000px;
}

.about-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover {
  transform: rotateY(0) rotateX(0) scale(1.02);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.image-glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  color: var(--text-white);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: floating 4s infinite ease-in-out;
}

.badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Directives Section (Vision & Mission) */
.directives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.directive-card {
  background: var(--bg-white);
  padding: 3.5rem;
  border-radius: 30px;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.directive-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 102, 204, 0.1);
}

.directive-icon {
  width: 70px;
  height: 70px;
  background: rgba(0, 102, 204, 0.05);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.directive-card:hover .directive-icon {
  background: var(--primary-blue);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.directive-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.directive-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Core Values Redesign */
.values-redesign-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-white);
  padding: 5rem;
  border-radius: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  margin-top: 4rem;
}

.values-title {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.values-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.values-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.value-check-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.value-check-item:hover {
  transform: translateX(5px);
}

.check-icon {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-top: 2px;
}

.check-text h4 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.check-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.values-image-column {
  position: relative;
}

.values-image-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 102, 204, 0.15);
}

.values-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-image-wrapper:hover .values-img {
  transform: scale(1.05);
}

.values-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 100%
  );
  z-index: 1;
}

.values-floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1.25rem 2rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-white);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: floating 4s infinite ease-in-out;
}

.values-floating-card i {
  font-size: 1.5rem;
  color: #fff;
}

.values-floating-card span {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

@media (max-width: 1200px) {
  .values-redesign-wrapper {
    grid-template-columns: 1fr;
    padding: 4rem;
  }
  
  .values-image-column {
    max-width: 600px;
    margin: 0 auto;
    order: -1;
  }
}

@media (max-width: 768px) {
  .values-checklist {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values-redesign-wrapper {
    padding: 3rem 2rem;
    border-radius: 30px;
  }
  
  .values-title {
    font-size: 2rem;
  }
}

/* Solutions Section */
.solutions {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.solutions-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 204, 0.05) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

/* Services Redesign (Feature Blocks) */
.services-redesign-container {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 5rem;
}

.service-feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.service-feature-block:nth-child(even) {
  direction: rtl;
}

.service-feature-block:nth-child(even) .service-content-side {
  direction: ltr; /* Reset text direction */
}

.service-image-side {
  position: relative;
}

.service-image-wrapper {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4 / 3;
}

.service-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-image-wrapper:hover .service-feature-img {
  transform: scale(1.08);
}

.service-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 100%
  );
  z-index: 1;
}

.service-floating-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-white);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: floating 5s infinite ease-in-out;
}

.service-floating-badge i {
  font-size: 1.25rem;
}

.service-content-side {
  padding: 2rem 0;
}

.service-label {
  color: var(--primary-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 102, 204, 0.05);
  border-radius: 10px;
}

.service-title {
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.1;
  font-weight: 800;
}

.service-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.service-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-checklist li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.service-checklist li i {
  color: var(--primary-blue);
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .service-feature-block {
    grid-template-columns: 1fr;
    gap: 4rem;
    direction: ltr !important;
  }
  
  .service-feature-block:nth-child(even) {
    direction: ltr;
  }
  
  .service-title {
    font-size: 2.5rem;
  }
  
  .service-image-wrapper {
    aspect-ratio: 16 / 9;
  }

  .service-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-redesign-container {
    gap: 5rem;
  }
  
  .service-title {
    font-size: 2rem;
  }
  
  .service-description {
    font-size: 1.05rem;
  }
}

/* Partners Section */
.partners {
  background: var(--bg-white);
  padding: 8rem 0;
  position: relative;
}

.partners-ecosystem-wrapper {
  background: var(--bg-light);
  padding: 5rem 4rem;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.vendors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.vendor-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 35px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
}

.vendor-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 102, 204, 0.2);
  box-shadow: 0 20px 40px rgba(0, 102, 204, 0.08);
}

.vendor-logo-wrapper {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  color: var(--primary-blue);
}

.vendor-card:hover .vendor-logo-wrapper {
  background: var(--primary-blue);
  color: #fff;
  transform: scale(1.1);
}

.vendor-logo-wrapper i {
  font-size: 2rem;
}

.vendor-alias {
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 0.25rem;
}

.vendor-info h4 {
  color: var(--primary-blue);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}

.vendor-info p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.vendor-link-arrow {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 35px;
  height: 35px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: all 0.3s ease;
}

.vendor-card:hover .vendor-link-arrow {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--primary-blue);
  color: #fff;
}

@media (max-width: 1200px) {
  .solutions-grid,
  .vendors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solutions-grid,
  .vendors-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-ecosystem-wrapper {
    padding: 3rem 1.5rem;
  }
}

/* Channel Partners */
.channel-partners {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.channel-title {
  text-align: center;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.channel-description {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.benefit-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 10px;
  transition: var(--transition);
}

.benefit-card:hover {
  background: var(--primary-blue);
  color: var(--text-white);
  transform: translateY(-5px);
}

.benefit-icon {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  display: inline-block;
}

.benefit-card:hover .benefit-icon {
  color: var(--text-white);
}

.benefit-card h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.benefit-card:hover h4 {
  color: var(--text-white);
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.benefit-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact {
  background: radial-gradient(circle at 0% 0%, #001f3f 0%, #000c19 100%);
  color: var(--text-white);
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 204, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.contact-main-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
  position: relative;
  z-index: 2;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 4rem;
}

.contact-card-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-card-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon-box {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 102, 204, 0.4);
  transition: transform 0.4s ease;
}

.contact-card-item:hover .contact-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.contact-card-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.contact-card-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.contact-card-content a {
  color: var(--light-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card-content a:hover {
  color: #fff;
}

.contact-form-glass {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.glass-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.glass-header h3 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.glass-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.6;
}

.contact-form-refined {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.form-group-refined {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group-refined label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--light-blue);
  opacity: 1;
  margin-left: 0.5rem;
  margin-bottom: 0.25rem;
}

.form-group-refined input,
.form-group-refined textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 1.75rem;
  border-radius: 20px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.form-group-refined input:focus,
.form-group-refined textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-blue);
  box-shadow: 0 0 25px rgba(0, 102, 204, 0.25);
  transform: translateY(-2px);
}

.btn-premium {
  background: var(--primary-blue);
  color: #fff;
  padding: 1.5rem;
  border-radius: 18px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  box-shadow: 0 15px 30px rgba(0, 102, 204, 0.3);
  overflow: hidden;
  position: relative;
}

.btn-premium span {
  position: relative;
  z-index: 2;
}

.btn-premium i {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.btn-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.btn-premium:hover::after {
  left: 100%;
}

.btn-premium:hover i {
  transform: translate(5px, -5px);
}

/* Footer Section */
.footer-modern {
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 8rem 0 4rem;
  position: relative;
  border-top: 1px solid var(--border-color);
}

.footer-glass-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.05),
    transparent
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 6rem;
  margin-bottom: 8rem;
}

.footer-logo-wrapper {
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 40px;
}

.footer-brand-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.social-links-premium {
  display: flex;
  gap: 1.5rem;
}

.social-btn {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-btn:hover {
  background: var(--primary-blue);
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.footer-nav h4,
.footer-contact h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--text-dark);
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 1.25rem;
}

.footer-nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.footer-nav ul li a:hover {
  color: var(--primary-blue);
}

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

.footer-contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--primary-blue);
  margin-top: 0.25rem;
}

.footer-contact-item span,
.footer-contact-item a {
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.6;
}

.footer-contact-item a:hover {
  color: var(--primary-blue);
}

.footer-bottom-modern {
  border-top: 1px solid var(--border-color);
  padding-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-light);
  font-size: 0.95rem;
}

.footer-sep {
  margin: 0 1rem;
}

@media (max-width: 1200px) {
  .contact-main-wrapper {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .contact-form-glass {
    padding: 3rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-card-item {
    padding: 1.5rem;
    gap: 1.5rem;
  }
}

/* Hero Particles Background */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-particles::before,
.hero-particles::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 20s infinite ease-in-out;
}

.hero-particles::before {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-particles::after {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--text-white);
  opacity: 0.8;
}

/* Vendor Icons */
.vendor-icon {
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.vendor-card:hover .vendor-icon {
  transform: scale(1.1) rotateY(360deg);
}

/* Contact Icon Wrapper */
.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: var(--transition);
}

.contact-icon-wrapper i {
  font-size: 1.25rem;
  color: var(--text-white);
}

.contact-item:hover .contact-icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Contact Links */
.contact-link {
  color: var(--text-white);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.contact-link:hover {
  color: var(--light-blue);
  border-bottom-color: var(--light-blue);
}

/* Footer Links */
.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.footer-link:hover {
  color: var(--light-blue);
  border-bottom-color: var(--light-blue);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--dark-blue) 100%
  );
  padding: 4rem 0;
  color: var(--text-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-white);
  opacity: 0.9;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Footer Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 35px;
  width: auto;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--light-blue);
  transform: translateY(-3px);
}

.social-links i {
  color: var(--text-white);
}

.footer-section p i {
  margin-right: 0.5rem;
  color: var(--light-blue);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  color: var(--text-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top:hover {
  background: var(--dark-blue);
  transform: translateY(-5px);
}

.back-to-top.show {
  display: flex;
}

/* Enhanced About Icons */
.about-icon {
  font-size: 3rem;
  transition: var(--transition);
}

.about-card:hover .about-icon {
  transform: scale(1.1) rotateY(360deg);
}

.about-icon i {
  color: var(--primary-blue);
}

/* Button Icons */
.btn i {
  margin-right: 0.5rem;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 100px;
  right: 30px;
  background: var(--bg-white);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10000;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  min-width: 300px;
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-success {
  border-left: 4px solid #28a745;
}

.notification-success i {
  color: #28a745;
  font-size: 1.5rem;
}

.notification-error {
  border-left: 4px solid #dc3545;
}

.notification-error i {
  color: #dc3545;
  font-size: 1.5rem;
}

.notification span {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.4;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 102, 204, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 102, 204, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 85px;
    left: 15px;
    right: 15px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    width: auto;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    gap: 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

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

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .about-main-wrapper,
  .directives-grid,
  .solutions-grid,
  .vendors-grid,
  .benefits-grid,
  .stats-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-main-wrapper {
    gap: 3rem;
  }

  .directives-grid {
    gap: 1.5rem;
  }

  .directive-card {
    padding: 2.5rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-image-wrapper {
    transform: none !important;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .logo-img {
    height: 30px;
  }

  .footer-logo-img {
    height: 28px;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .notification {
    right: 15px;
    left: 15px;
    min-width: auto;
    max-width: none;
  }

  section {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

  .about-card,
  .solution-card,
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: var(--primary-blue);
  color: var(--text-white);
}

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

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -10px); }
}
