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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 100vh;
  background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

p, span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ffffff;
}

/* Navigation */
.navbar {
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.company-logo {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.logo-icon {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}

/* Hero Section */
.hero {
  padding: 100px 2rem 80px;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  padding-right: 2rem;
}

.hero-subtitle {
  font-size: 0.875rem;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-title {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 800;
}

.hero-description {
  font-size: 1.125rem;
  color: #b8c5d1;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #0f0f23;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #00d4ff;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #b8c5d1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-img {
  width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 3px solid #00d4ff;
}

.profile-info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 1rem 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.profile-info h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.profile-info p {
  color: #00d4ff;
  font-size: 0.875rem;
}

/* Features Section */
.features {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #b8c5d1;
  text-align: center;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  padding: 2rem;
  background: linear-gradient(135deg, #1e1e3f 0%, #2a2a5a 100%);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #00d4ff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-card p {
  color: #b8c5d1;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Mission Section */
.mission {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

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

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

.mission-content h3 {
  font-size: 1.5rem;
  color: #00d4ff;
  margin-bottom: 2rem;
  font-weight: 600;
}

.quote {
  background: linear-gradient(135deg, #1e1e3f 0%, #2a2a5a 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid #00d4ff;
  margin: 2rem auto;
  max-width: 800px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.quote p {
  color: #b8c5d1;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote p:last-child {
  margin-bottom: 0;
}

.quote-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.quote-item:nth-child(odd) {
  background: rgba(0, 212, 255, 0.05);
  border-left: 4px solid #00d4ff;
}

.quote-item:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ffffff;
}

.quote-item.highlight {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 255, 255, 0.1));
  border: 2px solid #00d4ff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.quote-item.highlight .quote-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.quote-icon {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.quote-item p {
  margin: 0;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Commitments Section */
.commitments {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

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

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.commitment-item {
  padding: 2rem;
  background: linear-gradient(135deg, #1e1e3f 0%, #2a2a5a 100%);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #00d4ff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.commitment-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
}

.commitment-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.commitment-item h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

/* Services Section */
.services {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

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

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

.service-card {
  padding: 2rem;
  background: linear-gradient(135deg, #1e1e3f 0%, #2a2a5a 100%);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #00d4ff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.service-card p {
  color: #b8c5d1;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  padding: 60px 2rem 40px;
  border-top: 1px solid #00d4ff;
}

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

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

.footer-section h4 {
  color: #00d4ff;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  color: #b8c5d1;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-company-logo {
  height: 50px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo .logo-icon {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  display: none; /* Hide the M icon in footer since we have company logo */
}

.footer-logo span:last-child {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-section p {
  color: #b8c5d1;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Contact Card Section */
.contact-card-section {
  padding: 60px 2rem;
  background: linear-gradient(135deg, #16213e 0%, #0f0f23 100%);
}

.contact-card-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.main-contact-card {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  border: 3px solid #00d4ff;
  margin: 0 auto;
  display: block;
}

.contact-card {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
  border: 1px solid #00d4ff;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.2;
    word-break: keep-all;
  }

  .hero-text {
    padding-right: 0;
  }

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

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .profile-img {
    width: 300px;
    height: 400px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .commitments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
  }

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

  .company-logo {
    height: 32px;
    max-width: 100px;
  }

  .footer-company-logo {
    height: 40px;
    max-width: 120px;
  }

  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

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

  .contact-card {
    max-width: 250px;
  }

  .main-contact-card {
    max-width: 400px;
  }

  .contact-card-section {
    padding: 40px 1rem;
  }

  .hero {
    padding: 80px 1rem 60px;
  }

  .features,
  .mission,
  .services {
    padding: 60px 1rem;
  }

  .quote-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .quote-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.6rem 1.5rem;
    font-size: 0.875rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .stat-item {
    min-width: 120px;
  }

  .profile-img {
    width: 250px;
    height: 350px;
  }

  .feature-card,
  .service-card,
  .commitment-item {
    padding: 1.5rem 1rem;
  }

  .features-grid,
  .commitments-grid {
    gap: 1rem;
  }

  .quote-item {
    padding: 1rem;
  }

  .quote-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .main-contact-card {
    max-width: 300px;
  }

  .contact-card {
    max-width: 200px;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .stat-emoji {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .profile-img {
    width: 200px;
    height: 280px;
  }

  .features-grid,
  .commitments-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card,
  .commitment-item {
    padding: 1.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .main-contact-card {
    max-width: 250px;
  }

  .contact-card {
    max-width: 180px;
  }
}
