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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #6b46c1;
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
}

.skip-link:focus {
  top: 0;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.5rem 0; /* Increased padding for larger logo */
  box-shadow: 0 4px 20px rgba(107, 70, 193, 0.08);
  border-bottom: 1px solid rgba(107, 70, 193, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 80px; /* Increased from 40px to 80px (100% increase) */
  width: auto;
}

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

.nav-link {
  text-decoration: none;
  color: #6b46c1;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #d97706;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
}

.bar {
  width: 25px;
  height: 3px;
  background: #6b46c1;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
  color: #1f2937;
  padding: 140px 0 100px; /* Increased padding to accommodate larger logo */
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(107, 70, 193, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #1f2937;
  background: linear-gradient(135deg, #6b46c1 0%, #8b5cf6 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #4b5563;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-shadow: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #d97706;
  color: white;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
  background: #b45309;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.4);
}

.btn-primary:focus {
  outline: 2px solid rgba(217, 119, 6, 0.5);
  outline-offset: 2px;
}

.btn-secondary {
  background: #6b46c1;
  color: white;
  box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.btn-secondary:hover {
  background: #553c9a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(107, 70, 193, 0.4);
}

.btn-secondary:focus {
  outline: 2px solid rgba(107, 70, 193, 0.5);
  outline-offset: 2px;
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #6b46c1;
}

/* About Section */
.about {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(107, 70, 193, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

/* Founder Expertise */
.founder-expertise {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 1rem 0;
  line-height: 1.6;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 49%, rgba(217, 119, 6, 0.02) 50%, transparent 51%),
    linear-gradient(-45deg, transparent 49%, rgba(107, 70, 193, 0.02) 50%, transparent 51%);
  pointer-events: none;
}

/* Highlights Section */
.highlights-section {
  margin-bottom: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
  border-radius: 20px;
  border: 1px solid rgba(107, 70, 193, 0.1);
}

.highlights-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #6b46c1;
  letter-spacing: -0.5px;
}

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

.highlights-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(107, 70, 193, 0.08);
  border: 1px solid rgba(107, 70, 193, 0.05);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(107, 70, 193, 0.15);
  border-color: rgba(217, 119, 6, 0.3);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(217, 119, 6, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #6b46c1;
}

.highlight-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #6b46c1;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.highlight-text {
  font-size: 1rem;
  color: #4b5563;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
}

.service-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(107, 70, 193, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(107, 70, 193, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6b46c1 0%, #d97706 100%);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(107, 70, 193, 0.15);
  border-color: rgba(217, 119, 6, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6b46c1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 1.5rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #6b46c1;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  position: relative;
  color: #4b5563;
  line-height: 1.7;
  font-size: 1rem;
}

.service-list li:last-child {
  margin-bottom: 0;
}

.service-list li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #d97706;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Why Us Section */
.why-us {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
  position: relative;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 90% 80%, rgba(217, 119, 6, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.feature {
  text-align: center;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(107, 70, 193, 0.06), 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(107, 70, 193, 0.05);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(107, 70, 193, 0.1), 0 4px 15px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #6b46c1;
}

.feature p {
  color: #4b5563;
}

/* Founders Section */
.founders {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

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

.founder-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(107, 70, 193, 0.08), 0 4px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(107, 70, 193, 0.05);
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d97706 0%, #6b46c1 100%);
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(107, 70, 193, 0.12), 0 8px 30px rgba(0, 0, 0, 0.06);
}

.founder-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #6b46c1;
}

.founder-title {
  color: #4b5563;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 1.05rem;
}

.founder-expertise {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0077b5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-top: 1rem;
}

.linkedin-link:hover {
  color: #005885;
}

.founder-ventures {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, rgba(107, 70, 193, 0.05) 100%);
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.venture-item {
  text-align: left;
}

.venture-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b46c1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.setuya-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.25);
  border: none;
  cursor: pointer;
  margin-bottom: 0.75rem;
}

.setuya-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.35);
  background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
}

.setuya-button:focus {
  outline: 2px solid rgba(217, 119, 6, 0.5);
  outline-offset: 2px;
}

.setuya-button i {
  font-size: 1.1rem;
}

.venture-description {
  font-size: 0.95rem;
  color: #6b5b2f;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #f1f5f9 100%);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(107, 70, 193, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.contact-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 3rem;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #6b46c1;
  margin-top: 0.25rem;
}

.contact-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #6b46c1;
}

.contact-item a {
  color: #d97706;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(107, 70, 193, 0.1), 0 6px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(107, 70, 193, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6b46c1 0%, #8b5cf6 50%, #d97706 100%);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6b46c1;
}

.form-group textarea {
  resize: vertical;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d97706;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

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

  .services {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }

  .service-card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }

  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }

  .service-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }

  .highlights-container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .highlights-section {
    padding: 2.5rem 1.5rem;
  }

  .highlights-title {
    font-size: 1.4rem;
  }

  .highlight-card {
    padding: 1.5rem 1rem;
  }

  .highlight-number {
    font-size: 2rem;
  }

  .highlight-text {
    font-size: 0.9rem;
  }

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

  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 200px;
    text-align: center;
  }

  .founder-card {
    padding: 2rem;
  }

  .founder-info h3 {
    font-size: 1.3rem;
  }

  .founder-ventures {
    padding: 1.25rem;
    margin: 1.25rem 0;
  }

  .setuya-button {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
  }

  .venture-description {
    font-size: 0.9rem;
  }

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

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

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

  .service-card,
  .contact-form {
    padding: 1.5rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Success Message */
.success-message {
  background: #10b981;
  color: white;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  display: none;
}

.error-message {
  background: #ef4444;
  color: white;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  display: none;
}

.footer-logo .logo {
  height: 60px; /* Increased footer logo size too */
  width: auto;
}
