:root {
  --primary-color: #000000ff;
  --secondary-color: #000000ff;
  --accent-color: #000000ff;
  --dark-color: #000000ff;
  --light-color: #ffffffff;
  --text-color: #000000ff;
  --heading-color: #000000ff;
  --gradient-1: linear-gradient(135deg, #000000ff 0%, #000000ff 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

header.hide {
  transform: translateY(-100%);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo i {
  margin-right: 10px;
  font-size: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  margin-left: 35px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark-color);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 100%
  );
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.8rem;
  color: var(--heading-color);
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-text .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  color: var(--text-color);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
  padding: 120px 0;
  background-color: var(--light-color);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 16px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 20px auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.feature-card {
  background-color: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: white;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--gradient-2);
  box-shadow: 0 10px 25px rgba(245, 87, 108, 0.3);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--gradient-3);
  box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 16px;
  font-weight: 700;
}

/* About Section */
.about {
  padding: 120px 0;
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 24px;
  font-weight: 800;
  position: relative;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-1);
  border-radius: 2px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Services Section */
.services {
  padding: 120px 0;
  background-color: var(--light-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-img::after {
  opacity: 1;
}

.service-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 16px;
  font-weight: 700;
}

.service-content p {
  margin-bottom: 24px;
  color: var(--text-color);
  line-height: 1.7;
  flex-grow: 1;
}

/* Team Section */
.team {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.member-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.member-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.member-header {
  height: 200px;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.member-card:nth-child(2) .member-header {
  background: var(--gradient-2);
}

.member-card:nth-child(3) .member-header {
  background: var(--gradient-3);
}

.member-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  color: rgba(255, 255, 255, 0.9);
}

.member-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.member-info h3 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-weight: 700;
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-bio {
  color: var(--text-color);
  margin-bottom: 24px;
  line-height: 1.7;
  flex-grow: 1;
}

.member-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.skill-tag {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.member-quote {
  padding: 20px;
  background: var(--light-color);
  border-radius: 12px;
  font-style: italic;
  color: var(--text-color);
  position: relative;
  margin-top: auto;
}

.member-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 40px;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.member-quote p {
  padding-left: 20px;
}

.member-social {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Team Values Section */
.team-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.value-card:nth-child(2) .value-icon {
  background: var(--gradient-2);
  box-shadow: 0 10px 25px rgba(245, 87, 108, 0.3);
}

.value-card:nth-child(3) .value-icon {
  background: var(--gradient-3);
  box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
}

.value-card h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin-bottom: 16px;
  font-weight: 700;
}

.value-card p {
  color: var(--text-color);
  line-height: 1.7;
}

/* Process Section */
.process {
  padding: 120px 0;
  background-color: var(--light-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.process-step:nth-child(2) .step-number {
  background: var(--gradient-2);
  box-shadow: 0 10px 25px rgba(245, 87, 108, 0.3);
}

.process-step:nth-child(3) .step-number {
  background: var(--gradient-3);
  box-shadow: 0 10px 25px rgba(79, 172, 254, 0.3);
}

.process-step:nth-child(4) .step-number {
  background: var(--gradient-4);
  box-shadow: 0 10px 25px rgba(67, 233, 123, 0.3);
}

.process-step h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin-bottom: 16px;
  font-weight: 700;
}

.process-step p {
  color: var(--text-color);
  line-height: 1.7;
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: #ffffff; /* WHITE background */
  color: #0f172a; /* BLACK text */
}

/* Section header */
.contact .section-header h2 {
  color: #0f172a;
}

.contact .section-header h2::after {
  background: #0f172a;
}

.contact .section-header p {
  color: #475569;
}

/* Layout */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* CONTACT FORM (BLACK CARD) */
.contact-form {
  background: #151414ff; /* BLACK form background */
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Form groups */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #ffffff; /* WHITE labels */
  font-weight: 500;
}

/* Inputs & textarea */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: inherit;
  background: transparent;
  color: #ffffff; /* WHITE text */
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* CONTACT INFO (RIGHT SIDE – NORMAL BLACK TEXT) */
.contact-info h3 {
  font-size: 1.8rem;
  color: #0f172a;
  margin-bottom: 24px;
  font-weight: 700;
}

.contact-info p {
  margin-bottom: 24px;
  color: #475569;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-item i {
  font-size: 20px;
  color: #2563eb;
  margin-right: 16px;
  margin-top: 2px;
}

.contact-item div h4 {
  color: #0f172a;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-item div p {
  margin-bottom: 0;
  color: #475569;
}

/* Social icons */
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.social-links a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0f172a; /* Dark circle */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #2563eb; /* Brand hover */
  transform: translateY(-4px);
}

/* PERFECTLY CENTER SOCIAL ICONS */
.social-links a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Force icon centering */
.social-links a i {
  font-size: 22px;
  line-height: 1;
  display: block;
  width: 22px;
  height: 22px;
  text-align: center;
}

/* Hover */
.social-links a:hover {
  background: #2563eb;
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: var(--gradient-1);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  opacity: 0.3;
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 24px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.btn-light {
  background-color: white;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}

.btn-light:hover {
  background-color: #f8fafc;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 10px 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 12px 0; /* REDUCED HEIGHT */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem; /* Slightly smaller text */
  line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content,
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li {
    margin: 12px 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-values {
    grid-template-columns: 1fr;
  }
}
