:root {
  --primary: #0ea5e9;
  --primary-dark: #0369a1;
  --secondary: #8b5cf6;
  --dark: #0f172a;
  --darker: #020617;
  --light: #f8fafc;
  --gray: #94a3b8;
  --success: #10b981;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--darker);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.8rem;
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 14px 32px !important;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
}

/* Header & Navigation */
header {
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo img,
.footer-col img {
  width: 300px;
  border-radius: var(--radius);
}

.footer-col img {
  margin-bottom: 10px;
}

.logo span {
  color: var(--light);
}

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

.nav-links a {
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}
/* 
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        } */

.nav-links a:hover {
  color: var(--light);
}
/* 
        .nav-links a:hover:after {
            width: 100%;
        } */

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--light);
}

/* Hero Section */
.hero {
  height: 80vh;
  padding-top: 150px;
  padding-bottom: 100px;
  background:
    radial-gradient(
      circle at top right,
      rgba(14, 165, 233, 0.15),
      transparent 50%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(139, 92, 246, 0.1),
      transparent 50%
    );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.8rem;
  margin-bottom: 20px;
  line-height: 1.1;
  animation: fadeUp 1s ease-out;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 1s ease-out 0.2s both;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeUp 1s ease-out 0.4s both;
}

.hero-btns .btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.hero-btns .btn-secondary:hover {
  background: rgba(14, 165, 233, 0.1);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.1;
  animation: float 6s infinite ease-in-out;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 120px;
  height: 120px;
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 20%;
  animation-delay: 4s;
}

/* About Us Section */
.about-us {
  background: linear-gradient(180deg, var(--dark) 0%, #0a192f 100%);
  position: relative;
  overflow: hidden;
}

.about-us:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 170, 0.08) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

.about-us:after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(108, 92, 231, 0.06) 0%,
    transparent 70%
  );
  bottom: -50px;
  left: -100px;
  border-radius: 50%;
  animation: float 12s infinite ease-in-out reverse;
}

.about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}

.about-tagline {
  display: inline-block;
  margin-bottom: 25px;
  position: relative;
}

.tagline-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  padding: 0 20px;
}

.tagline-text:before,
.tagline-text:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary));
}

.tagline-text:before {
  left: -40px;
}

.tagline-text:after {
  right: -40px;
  background: linear-gradient(90deg, var(--secondary), transparent);
}

.about-title {
  font-size: 3.5rem;
  margin-bottom: 25px;
  background: linear-gradient(90deg, var(--light), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-intro {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  position: relative;
  z-index: 2;
}

/* Story Section */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 100px;
  align-items: center;
}

.story-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
}

.story-visual img {
  width: 600px;
  border-radius: var(--radius);
}

.timeline {
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  animation: timelineFill 2s ease-out forwards;
}

.timeline-dot {
  position: absolute;
  top: 50%;
  left: var(--pos);
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: var(--dark);
  border: 4px solid var(--primary);
  border-radius: 50%;
  z-index: 2;
  animation: dotPulse 2s infinite;
  cursor: pointer;
  transition: var(--transition);
}

.timeline-dot:hover {
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow: 0 0 20px var(--primary);
}

.timeline-dot:nth-child(2) {
  border-color: var(--secondary);
  animation-delay: 0.5s;
}

.timeline-dot:nth-child(3) {
  border-color: #00d4aa;
  animation-delay: 1s;
}

.timeline-dot:nth-child(4) {
  border-color: #6c5ce7;
  animation-delay: 1.5s;
}

.dot-content {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.95);
  padding: 15px 20px;
  border-radius: var(--radius);
  min-width: 150px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 212, 170, 0.2);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.timeline-dot:hover .dot-content {
  opacity: 1;
  top: -120px;
}

.dot-content .year {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.dot-content .event {
  font-size: 0.9rem;
  color: var(--light);
  font-weight: 500;
}

.story-text h3 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: var(--light);
}

.story-text p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.story-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat-box {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  border-top: 3px solid var(--primary);
  transition: var(--transition);
  flex: 1;
}

.stat-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

/* Values Section */
/* .about-values {
    margin-bottom: 100px;
} */

.about-values h3 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.value-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 170, 0.05),
    rgba(108, 92, 231, 0.05)
  );
  opacity: 0;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-15px);
  border-color: rgba(0, 212, 170, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card:hover:before {
  opacity: 1;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(10deg);
}

.value-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--light);
  position: relative;
  z-index: 1;
}

.value-card p {
  color: var(--gray);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes timelineFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 212, 170, 0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(1deg);
  }
  66% {
    transform: translateY(10px) rotate(-1deg);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 50px;
  }



  .story-stats {
    justify-content: start;
  }

  .stat-box {
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 2.8rem;
  }

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

  .stat-box {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 2.3rem;
  }

  .about-intro {
    font-size: 1.1rem;
  }

  .story-visual {
    height: 200px;
  }

  .stat-box {
    flex: 0 0 100%;
  }

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

/* Philosophy Section - Modern Circular Design */
.philosophy {
  background-color: var(--darker);
  position: relative;
  overflow: hidden;
}

.philosophy:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 170, 0.1) 0%,
    transparent 70%
  );
  top: 10%;
  left: 5%;
  border-radius: 50%;
  animation: pulse 8s infinite ease-in-out;
}

.philosophy:after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(108, 92, 231, 0.08) 0%,
    transparent 70%
  );
  bottom: 10%;
  right: 5%;
  border-radius: 50%;
  animation: pulse 10s infinite ease-in-out reverse;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 600px;
  margin: 25px auto 0;
  line-height: 1.6;
}

.philosophy-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.core-circle {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 170, 0.1),
    rgba(108, 92, 231, 0.1)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 0 60px rgba(0, 212, 170, 0.2),
    inset 0 0 40px rgba(108, 92, 231, 0.1);
  border: 2px solid rgba(0, 212, 170, 0.3);
  animation: rotate 40s linear infinite;
}

.core-text {
  position: absolute;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  z-index: 2;
  background: rgba(15, 23, 42, 0.9);
  padding: 15px 25px;
  border-radius: var(--radius);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.orbiting-element {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 212, 170, 0.4);
  transform: rotate(var(--angle)) translateX(200px)
    rotate(calc(-1 * var(--angle)));
  animation: orbit 20s linear infinite var(--delay);
  z-index: 1;
}

.orbit-icon {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.orbit-text {
  font-size: 0.8rem;
  font-weight: 600;
}

.philosophy-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.philosophy-item {
  display: flex;
  width: 48%;
  gap: 25px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.philosophy-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 170, 0.05),
    transparent
  );
  transition: left 0.7s ease;
}

.philosophy-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.philosophy-item:hover:before {
  left: 100%;
}

.philosophy-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  min-width: 70px;
  line-height: 1;
}

.philosophy-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--light);
}

.philosophy-text p {
  color: var(--gray);
  line-height: 1.7;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stats:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats h2 {
  color: white;
}

/* .stats-grid {
            display: grid;
            align-self: flex-start;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        } */

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 40px 30px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: rgba(14, 165, 233, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 25px;
}

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

.service-card p {
  color: var(--gray);
}

/* Process Section */
.process {
  background-color: var(--darker);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-steps:before {
  content: "";
  position: absolute;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  top: 40px;
  left: 10%;
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 22%;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--darker);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 25px;
  border: 5px solid var(--primary-dark);
  position: relative;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Testimonials */

.testimonials {
  background-color: var(--dark);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.testimonial:hover {
  border-color: rgba(14, 165, 233, 0.3);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--light);
}

.testimonial-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-role {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background-color: #020617;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 30px;
}

.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--gray);
  transition: var(--transition);
}

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

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

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.463);
  color: var(--gray);
  font-size: 0.9rem;
}

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

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

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .process-steps:before {
    display: none;
  }

  .step {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--dark);
    flex-direction: column;
    padding: 30px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .hero-btns {
    flex-direction: row;
    align-items: center;
  }

  .step {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  section {
    padding: 60px 0;
  }
}

.footer-links li{
   display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
}


.footer-links li i{
    padding-top: 5px;
}

.footer-col.col-2{
    padding-left: 50px;
}


@media only screen and (min-width: 1024px) and (max-width: 1179px) {
    .container{
        width: 100%;
    }

.logo img{
    width: 270px;
}

.hero{
    height: 50vh;
    padding-top: 200px;
}

.about-story{
    grid-template-columns: repeat(1, 1fr);
}

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


.footer-col.col-2{
    padding-left: 50px;
}
.footer-col{
    max-width: 200px;
    word-break: break-word;
}

.footer-content{
    margin: 0;
}

}


@media only screen and (min-width: 768px) and (max-width: 1023px) {

.logo img{
    width: 270px;
}

.hero{
    height: 70vh;
    padding-top: 200px;
}

.hero-btns{
flex-direction: row;
}

.section-title h2{
    font-size: 2rem;
}

.philosophy-item{
    width: 100%;
}

.about-story{
    grid-template-columns: repeat(1, 1fr);
}

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


.footer-col.col-2{
    padding-left: 50px;
}


.footer-content{
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
}

}

@media only screen and (min-width: 320px) and (max-width: 767px) {
.container{
  width: 100%;
  padding: 0px 15px;
}

.section-title{
margin-bottom: 40px;
}

    .logo img{
        width: 200px;
    }

.hero{
    height: auto;
    padding-top: 150px;
}

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

h2{
 font-size: 28px !important;
}

h3{
 font-size: 25px !important;
}

.story-visual img{
  width: 320px;
}

.about-header{
  margin-bottom: 40px;
}

.stats-grid{
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item{
  width: 47%;
  padding: 10px;
}

.philosophy-item{
  flex-direction: column;
  width: 100%;
}

.testimonial{
  margin: 0;
  padding: 20px;
}

.footer-content{
  gap: 30px;
}

.footer-col.col-2{
  padding: 0;
}
.copyright{
  padding-top: 10px;
}

footer{
  padding: 80px 0px 15px 0px;
}

}