@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --blue-950: #172554;
  --blue-900: #1e3a8a;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --blue-850: #27AAE1;
  --blue-750: #2B3990;

  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --cyan-200: #a5f3fc;
  --cyan-100: #cffafe;

  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --yellow-400: #facc15;
  --red: #900C3F;
}

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

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  color: var(--white);
  background-color: var(--black);
  width: 100%;
  overflow-x: hidden;
}

.min-h-screen {
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Background and Gradient Styles */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--blue-950), var(--blue-900), var(--black));
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--blue-950), var(--black));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, #2b3990, #27aae1);
}
.btn.bg-gradient-to-r:hover {
  background-image: linear-gradient(to right, #252f78, #1e95c8);
}
.bg-blue-950 {
  background-color: var(--blue-950);
}

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

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

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

.bg-blue-950-60 {
  background-color: rgba(23, 37, 84, 0.6);
}

.bg-blue-900-30 {
  background-color: rgba(30, 58, 138, 0.3);
}

.bg-blue-800-30 {
  background-color: rgba(30, 64, 175, 0.3);
}

.bg-blue-900-40 {
  background-color: rgba(30, 58, 138, 0.4);
}

.bg-blue-800-40 {
  background-color: rgba(30, 64, 175, 0.4);
}

.bg-blue-800-70 {
  background-color: rgba(30, 64, 175, 0.7);
}

.bg-blue-700-40 {
  background-color: rgba(29, 78, 216, 0.4);
}

.bg-blue-500-20 {
  background-color: rgba(59, 130, 246, 0.2);
}

.bg-blue-900-20 {
  background-color: rgba(30, 58, 138, 0.2);
}

.bg-white-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.border-blue-800 {
  border-color: var(--blue-800);
}

.border-blue-700 {
  border-color: var(--blue-700);
}

.border-blue-600-50 {
  border-color: rgba(37, 99, 235, 0.5);
}

.border-blue-400 {
  border-color: var(--blue-400);
}

.border-blue-400-20 {
  border-color: rgba(96, 165, 250, 0.2);
}

.border-cyan-400-30 {
  border-color: rgba(34, 211, 238, 0.3);
}

/* Text Colors */
.text-white {
  color: var(--white);
}

.text-gray-300 {
  color: var(--gray-300);
}

.text-gray-400 {
  color: var(--gray-400);
}

.text-gray-500 {
  color: var(--gray-500);
}

.text-blue-300 {
  color: var(--blue-300);
}

.text-blue-400 {
  color: var(--blue-400);
}

.text-blue-500 {
  color: var(--blue-500);
}

.text-blue-200 {
  color: var(--blue-200);
}

.text-cyan-400 {
  color: var(--cyan-400);
}

.text-yellow-400 {
  color: var(--yellow-400);
}

.text-transparent {
  color: transparent;
}

/* Text Gradient */
.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

/* Typography */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.leading-tight {
  line-height: 1.25;
}

.uppercase {
  text-transform: uppercase;
}

/* Layout */
.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

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

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

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-16 {
  gap: 4rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}
.mr-1 {
  margin-right: 25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-20 {
  margin-top: 5rem;
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-md {
  max-width: 28rem;
}

.w-full {
  width: 100%;
}

.w-3 {
  width: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-24 {
  width: 6rem;
}

.w-32 {
  width: 8rem;
}

.w-48 {
  width: 12rem;
}

.w-64 {
  width: 16rem;
}

.w-72 {
  width: 18rem;
}

.w-96 {
  width: 24rem;
}

.h-1 {
  height: 0.25rem;
}

.h-2 {
  height: 0.5rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-48 {
  height: 12rem;
}

.h-64 {
  height: 16rem;
}

.h-72 {
  height: 18rem;
}

.h-96 {
  height: 24rem;
}

.min-w-full {
  min-width: 100%;
}

.min-w-\[400px\] {
  min-width: 400px;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

/* Padding */
.p-0 {
  padding: 0;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-20 {
  padding-top: 5rem;
}

/* Positioning */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.-inset-4 {
  top: -1rem;
  right: -1rem;
  bottom: -1rem;
  left: -1rem;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.top-1\/2 {
  top: 50%;
}

.top-1\/4 {
  top: 25%;
}

.bottom-1\/4 {
  bottom: 25%;
}

.left-1\/2 {
  left: 50%;
}

.right-1\/4 {
  right: 25%;
}

.left-1\/4 {
  left: 25%;
}

.bottom-10 {
  bottom: 2.5rem;
}

.top-4 {
  top: 1rem;
}

.bottom-4 {
  bottom: 1rem;
}

.left-4 {
  left: 1rem;
}

.right-4 {
  right: 1rem;
}

.top-10 {
  top: 2.5rem;
}

.bottom-10 {
  bottom: 2.5rem;
}

.left-10 {
  left: 2.5rem;
}

.right-10 {
  right: 2.5rem;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

/* Transforms */
.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

.rotate-90 {
  transform: rotate(90deg);
}

.transform {
  transform: translate3d(0, 0, 0);
}

.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

/* Borders */
.border {
  border-width: 1px;
  border-style: solid;
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-2 {
  border-width: 2px;
}

.border-4 {
  border-width: 4px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Cards */
.card {
  background-color: var(--blue-900);
  border-radius: 0.75rem;
  border: 1px solid var(--blue-800);
  transition: all 0.3s ease;
}

.card:hover {
  background-color: var(--blue-800);
  transform: translateY(-0.25rem);
}

.card-content {
  padding: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid;
}

/* Forms */
input,
select,
textarea {
  width: 100%;
  background-color: var(--blue-950);
  border: 1px solid var(--blue-800);
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: var(--white);
  transition: all 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--blue-400);
  border-color: transparent;
}

/* Flex and Grid */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.aspect-square {
  aspect-ratio: 1 / 1;
}

/* Utilities */
.overflow-hidden {
  overflow: hidden;
}

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

.object-contain {
  object-fit: contain;
}

.filter {
  filter: blur(100px);
}

.blur-\[100px\] {
  filter: blur(100px);
}

.opacity-20 {
  opacity: 0.2;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

/* Animations */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(-25%) translateX(-50%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0) translateX(-50%);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.animate-spin-slow {
  animation: spin 10s linear infinite;
}

.animate-spin-slow-reverse {
  animation: spin 15s linear infinite reverse;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Testimonial slider */
.testimonial-track {
  transition: transform 0.5s ease-in-out;
}

.testimonial-dot.active {
  background-color: var(--blue-400);
}

/* Icon Styles */
[class^="icon-"] {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

.icon-chevron-right {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
}

.icon-arrow-right {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
}

.icon-check {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.icon-users {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'%3E%3C/path%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'%3E%3C/path%3E%3C/svg%3E");
}

.icon-message-square {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-calculator {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='2' width='16' height='20' rx='2'%3E%3C/rect%3E%3Cline x1='8' y1='6' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='16' y1='14' x2='16' y2='18'%3E%3C/line%3E%3Crect x='8' y='14' width='4' height='4'%3E%3C/rect%3E%3C/svg%3E");
}

.icon-bar-chart-3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='20' x2='12' y2='10'%3E%3C/line%3E%3Cline x1='18' y1='20' x2='18' y2='4'%3E%3C/line%3E%3Cline x1='6' y1='20' x2='6' y2='16'%3E%3C/line%3E%3C/svg%3E");
}

.icon-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
}

.icon-eye {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'%3E%3C/path%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3C/svg%3E");
}

.icon-pen-tool {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19l7-7 3 3-7 7-3-3z'%3E%3C/path%3E%3Cpath d='M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z'%3E%3C/path%3E%3Cpath d='M2 2l7.586 7.586'%3E%3C/path%3E%3Ccircle cx='11' cy='11' r='2'%3E%3C/circle%3E%3C/svg%3E");
}

.icon-lightbulb {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'%3E%3C/path%3E%3Cpath d='M10 22h4'%3E%3C/path%3E%3Cpath d='M15.09 14c.18-.98.65-1.74 1.41-2.5A4.65 4.65 0 0 0 18 8 6 6 0 0 0 6 8c0 1 .23 2.23 1.5 3.5A4.61 4.61 0 0 1 8.91 14'%3E%3C/path%3E%3C/svg%3E");
}

.icon-settings {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'%3E%3C/circle%3E%3Cpath d='M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-check-circle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
}

.icon-map-pin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
}
/* Media Queries */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:text-3xl {
    font-size: 1.875rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
  }

  .md\:mt-0 {
    margin-top: 0;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:gap-0 {
    gap: 0;
  }

  .md\:block {
    display: none !important;  }

  .md\:min-w-\[400px\] {
    min-width: 400px;
  }
}

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

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Simple overlay for readability */
.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 20, 0.5), rgba(0, 0, 20, 0.7));
  z-index: 1;
}

/* Ensure the content is above the overlay */
#hero .container {
  position: relative;
  z-index: 2;
}

/* Mobile Menu Styles */
#mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 24, 39, 0.95);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

#mobile-menu.show {
  transform: translateX(0);
}

.mobile-menu-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  margin: 4px 0;
  transition: all 0.3s ease;
}

#mobile-menu-btn.active .mobile-menu-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

#mobile-menu-btn.active .mobile-menu-line:nth-child(2) {
  opacity: 0;
}

#mobile-menu-btn.active .mobile-menu-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-link {
  display: block;
  padding: 12px 24px;
  font-size: 1.5rem;
  text-align: center;
  width: 100%;
}

/* Ensure proper z-index */
nav {
  z-index: 50;
}

#mobile-menu-btn {
  z-index: 60;
}

/* Prevent scrolling when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Mobile menu link hover effect */
.mobile-menu-link {
  position: relative;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-menu-link:hover {
  background-color: rgba(30, 58, 138, 0.3);
}

/* Ensure mobile menu is above everything */
#mobile-menu {
  z-index: 40;
}

#mobile-menu-btn {
  z-index: 50;
}

/* Additional responsive improvements */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  nav .btn {
    display: none !important;
  }
  /* Adjust hero section padding for mobile */
  #hero {
    padding-top: 6rem;
  }
  
  /* Improve mobile text sizing */
  #hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  #hero h2 {
    font-size: 1.25rem;
  }
  
  /* Better mobile spacing */
  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  /* Mobile card improvements */
  .card {
    margin-bottom: 1rem;
  }
  
  /* Mobile table responsiveness */
  .overflow-x-auto {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Mobile form improvements */
  input, select, textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Tablet improvements */
@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Mobile-specific utilities */
.mobile-hidden {
  display: none;
}

@media (max-width: 768px) {
  .mobile-hidden {
    display: none !important;
  }
  
  .mobile-block {
    display: block !important;
  }
  
  .mobile-flex {
    display: flex !important;
  }
  
  /* Better mobile button sizing */
  .btn {
    min-height: 44px; /* iOS recommended touch target */
    padding: 0.75rem 1.5rem;
  }
  
  /* Mobile-friendly spacing */
  .mobile-space-y-4 > * + * {
    margin-top: 1rem;
  }
  
  /* Mobile text improvements */
  .mobile-text-center {
    text-align: center;
  }
  
  /* Mobile grid improvements */
  .mobile-grid-1 {
    grid-template-columns: 1fr;
  }
}

/* Touch improvements */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .hover\:bg-blue-800-30:hover {
    background-color: inherit;
  }
  
  /* Make touch targets larger */
  button, a, input, select, textarea {
    min-height: 44px;
  }
}

/* Improved Hamburger Button Styling */
.hamburger-btn {
  padding: 10px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger-btn:hover {
  opacity: 0.8;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, 
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/* Spin Animation */
.hamburger-btn.active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger-btn.active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger-btn.active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Hover effect - subtle glow */
.hamburger-btn:hover .hamburger-inner,
.hamburger-btn:hover .hamburger-inner::before,
.hamburger-btn:hover .hamburger-inner::after {
  background-color: #67e8f9; /* Cyan color for hover */
  box-shadow: 0 0 8px rgba(103, 232, 249, 0.6);
}

/* Pulse animation on hover */
@keyframes pulse-subtle {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hamburger-btn:hover .hamburger-box {
  animation: pulse-subtle 1s infinite;
}

/* Mobile menu slide animation improvement */
#mobile-menu {
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

#mobile-menu.show {
  transform: translateX(0);
}
/* Industries Section Styles */
.industry-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


.industry-services > div {
  transition: transform 0.2s ease;
}

.industry-services > div:hover {
  transform: translateX(5px);
}

/* Industry Selector Styles */
.industry-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  font-weight: 500;
  background-color: rgba(30, 58, 138, 0.3);
  color: var(--white);
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 140px;
  text-align: center;
}

.industry-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(39, 170, 225, 0) 0%, 
    rgba(39, 170, 225, 0.2) 50%, 
    rgba(39, 170, 225, 0) 100%
  );
  transition: left 0.7s ease;
}

.industry-btn:hover {
  transform: translateY(-3px);
  background-color: rgba(30, 64, 175, 0.4);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.industry-btn:hover::before {
  left: 100%;
}

.industry-btn.active {
  background: linear-gradient(to right, var(--blue-750), var(--blue-850));
  border-color: transparent;
  box-shadow: 0 8px 15px rgba(43, 57, 144, 0.4);
  transform: translateY(-3px);
}

.industry-btn.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--blue-750), var(--blue-850));
  transform: translateX(-50%);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(39, 170, 225, 0.5);
}

/* Add a subtle pulse animation to the active button */
@keyframes subtle-pulse {
  0% {
    box-shadow: 0 8px 15px rgba(43, 57, 144, 0.4);
  }
  50% {
    box-shadow: 0 8px 20px rgba(43, 57, 144, 0.6);
  }
  100% {
    box-shadow: 0 8px 15px rgba(43, 57, 144, 0.4);
  }
}

.industry-btn.active {
  animation: subtle-pulse 2s infinite;
}

/* Add an icon to active button */
.industry-btn.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    45deg,
    rgba(39, 170, 225, 0.1) 0%,
    rgba(43, 57, 144, 0.1) 100%
  );
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .industry-btn {
    padding: 0.6rem 1rem;
    min-width: 120px;
    font-size: 0.9rem;
  }
  
  .industry-selector {
    justify-content: center;
    gap: 0.75rem;
  }
}

/* Enhanced Learn More Button Styling */
.industry-card .mt-6 {
  position: relative;
  overflow: hidden;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(to right, rgba(29, 78, 216, 0.4), rgba(30, 64, 175, 0.4));
  color: var(--white);
  border-radius: 0.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: fit-content;
}

.industry-card .mt-6:hover {
  background: linear-gradient(to right, rgba(37, 99, 235, 0.6), rgba(30, 64, 175, 0.6));
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
}

.industry-card .mt-6::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg, 
    rgba(39, 170, 225, 0) 0%, 
    rgba(39, 170, 225, 0.3) 50%, 
    rgba(39, 170, 225, 0) 100%
  );
  transition: left 0.6s ease;
}

.industry-card .mt-6:hover::after {
  left: 100%;
}

/* Arrow icon animation */
.industry-card .mt-6 svg {
  transition: transform 0.3s ease;
}

.industry-card .mt-6:hover svg {
  transform: translateX(4px);
}

/* Group hover effect - when card is hovered, button gets highlighted */
.industry-card:hover .mt-6 {
  background: linear-gradient(to right, var(--blue-750), var(--blue-850));
  border-color: transparent;
}

/* Focus state for accessibility */
.industry-card .mt-6:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.5);
}

/* Active state */
.industry-card .mt-6:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .industry-card .mt-6 {
    width: 100%;
    justify-content: center;
    padding: 0.6rem 1rem;
  }
}

/* Navigation Link Styles */
.nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: #67e8f9 !important; /* Cyan color on hover */
}

/* Ensure hamburger button is hidden on desktop */
.hamburger-btn {
  display: block;
}

@media (min-width: 768px) {
  .hamburger-btn {
    display: none !important;
  }
}

/* Ensure hamburger button is visible on mobile */
@media (max-width: 767px) {
  .hamburger-btn {
    display: block !important;
  }
}

/* Make sure desktop menu items are properly spaced and styled */
@media (min-width: 768px) {
  .nav-link {
    margin: 0 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    background-color: rgba(103, 232, 249, 0.1);
  }
}
nav a,
nav a:hover,
nav a:focus,
nav a:active,
nav a:visited,
a {
  text-decoration: none !important;
}

/* Timeline Styles */
.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Main timeline line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-400), var(--cyan-400), var(--blue-500));
  transform: translateX(-50%);
  z-index: 1;
}

/* Timeline item container */
.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  width: 100%;
}

/* Timeline node/dot */
.timeline-node {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  background: var(--cyan-400);
  border: 3px solid var(--blue-600);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2);
}

/* Content cards */
.timeline-content {
  width: 45%;
  background: rgba(30, 58, 138, 0.3);
  border: 1px solid var(--blue-800);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(30, 64, 175, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

/* Left side content */
.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: auto;
}

/* Right side content */
.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
}

/* Content arrows */
.timeline-content::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  width: 0;
  height: 0;
  border: 8px solid transparent;
}

/* Left side arrow */
.timeline-item:nth-child(odd) .timeline-content::before {
  right: -16px;
  border-left-color: var(--blue-800);
}

/* Right side arrow */
.timeline-item:nth-child(even) .timeline-content::before {
  left: -16px;
  border-right-color: var(--blue-800);
}

/* Timeline date */
.timeline-date {
  position: absolute;
  top: -0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cyan-400);
  background: var(--blue-950);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--blue-700);
}

.timeline-item:nth-child(odd) .timeline-date {
  right: 1rem;
}

.timeline-item:nth-child(even) .timeline-date {
  left: 1rem;
}

/* Timeline title */
.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

/* Timeline description */
.timeline-description {
  color: var(--gray-300);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .timeline-line {
    left: 2rem;
  }
  
  .timeline-node {
    left: 2rem;
  }
  
  .timeline-content {
    width: calc(100% - 4rem);
    margin-left: 4rem !important;
    margin-right: 0 !important;
  }
  
  .timeline-content::before {
    left: -16px !important;
    right: auto !important;
    border-right-color: var(--blue-800) !important;
    border-left-color: transparent !important;
  }
  
  .timeline-date {
    left: 1rem !important;
    right: auto !important;
  }
}

/* Animation classes for AOS */
.timeline-item[data-aos] {
  opacity: 0;
}

.timeline-item[data-aos].aos-animate {
  opacity: 1;
}

