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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica", "Arial", sans-serif;
  line-height: 1.6;
  color: #000;
  overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.2rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

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

.brand-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(0px);
  z-index: -1;
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  color: #000;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-description {
  display: flex;
  align-items: center;
}

.hero-description p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #000;
  font-weight: 400;
  max-width: 540px;
}

/* Our Unique Approach Section */
.approach-section {
  background: #f5f5f5;
  padding: 8rem 0;
}

.approach-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1.5rem;
}

.approach-main-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.02em;
  margin-bottom: 5rem;
  max-width: 900px;
}

.approach-content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-bottom: 6rem;
  align-items: start;
}

.approach-content-block:last-child {
  margin-bottom: 0;
}

.content-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-heading {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  letter-spacing: -0.01em;
}

.highlight-purple {
  color: #d946ef;
  font-weight: 400;
}

.highlight-blue {
  color: #3b82f6;
  font-weight: 400;
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.content-right p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #000;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-purple {
  background: linear-gradient(135deg, #d946ef 0%, #a855f7 100%);
  color: #fff;
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 70, 239, 0.3);
}

.btn-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* About Us Section */
.about-section {
  background: #fff;
  padding: 8rem 0;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.about-main-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  max-width: 1000px;
}

/* Tab Navigation */
.tab-navigation {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  background: #f5f5f5;
  padding: 0.5rem;
  border-radius: 12px;
  max-width: fit-content;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
  color: #000;
}

.tab-btn.active {
  background: #fff;
}

.tab-btn[data-tab="experience"].active {
  color: #10b981;
  border-bottom: 2px solid #10b981;
}

.tab-btn[data-tab="expertise"].active {
  color: #3b82f6;
  border-bottom: 2px solid #3b82f6;
}

.tab-btn[data-tab="ai"].active {
  color: #d946ef;
  border-bottom: 2px solid #d946ef;
}

.tab-btn:hover {
  opacity: 0.7;
}

/* Tab Content */
.tab-content-wrapper {
  position: relative;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.tab-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tab-heading {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  letter-spacing: -0.01em;
}

.highlight-green {
  color: #10b981;
  font-weight: 400;
}

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

.tab-description p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #000;
  font-weight: 400;
}

/* Tab Visual - Gradient Blobs */
.tab-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blob {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: blob-float 8s ease-in-out infinite;
}

.blob-green {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.blob-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.blob-purple {
  background: linear-gradient(135deg, #d946ef 0%, #f0abfc 100%);
}

@keyframes blob-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* Our Services Section */
.services-section {
  background: #f5f5f5;
  padding: 8rem 0;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.services-main-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.02em;
  margin-bottom: 5rem;
  max-width: 1000px;
}

.service-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
  align-items: start;
}

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

.service-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.service-title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #000;
  font-weight: 400;
}

.service-list-title {
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 0.5rem;
}

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-item {
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  color: #000;
  font-weight: 400;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-item:hover {
  border-color: #e5e5e5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.service-item-wide {
  grid-column: span 2;
}

/* Team Experience Section */
.experience-section {
  background: #fff;
  padding: 8rem 0;
}

.experience-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.experience-main-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  max-width: 900px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
  margin-bottom: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 4rem;
  font-weight: 400;
  color: #10b981;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-number sup {
  font-size: 2.5rem;
  vertical-align: super;
}

.stat-label {
  font-size: 1.125rem;
  color: #000;
  font-weight: 400;
  line-height: 1.4;
}

.btn-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* Careers Section */
.careers-section {
  background: #f5f5f5;
  padding: 8rem 0;
}

.careers-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.careers-main-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  max-width: 900px;
}

.career-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.career-card {
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.career-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.career-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #000;
  font-weight: 400;
}

.career-btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
  background: #fff;
  padding: 8rem 0;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.testimonials-main-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  max-width: 900px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #f5f5f5;
  padding: 2.5rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #000;
  font-weight: 400;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-initials {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
}

.author-initials::before {
  content: attr(data-initials);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
}

.author-title {
  font-size: 0.875rem;
  color: #666;
  font-weight: 400;
}

/* FAQ Section */
.faq-section {
  background: url("../images/green-background-scaled.webp") center center /
    cover no-repeat;
  padding: 8rem 0;
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 0;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}

.faq-main-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}

.faq-section .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #10b981;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  font-weight: 400;
}

/* Contact Section */
.contact-section {
  background: #fff;
  padding: 8rem 0;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.contact-main-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  max-width: 900px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: #f5f5f5;
  padding: 3rem;
  border-radius: 16px;
}

.form-left,
.form-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-input,
.form-select,
.form-textarea {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  font-family: inherit;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-bottom-color: #10b981;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
  cursor: pointer;
  color: #999;
}

.form-select:valid {
  color: #000;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 1rem 1.5rem;
}

.form-textarea:focus {
  border-color: #10b981;
}

.form-submit {
  align-self: flex-start;
  min-width: 150px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: slideUp 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #000;
}

.modal-icon {
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: center;
}

.modal-title {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.modal-text {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 4rem 0 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-left {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

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

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

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

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #999;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #10b981;
}

.contact-item span {
  flex: 1;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 2rem 3rem;
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .approach-main-title {
    font-size: 2.5rem;
  }

  .content-heading {
    font-size: 1.75rem;
  }

  .about-main-title {
    font-size: 2.5rem;
  }

  .tab-heading {
    font-size: 2rem;
  }

  .services-main-title {
    font-size: 2.5rem;
  }

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

  .service-icon {
    width: 100px;
    height: 100px;
  }

  .experience-main-title {
    font-size: 2.5rem;
  }

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

  .stat-number sup {
    font-size: 2rem;
  }

  .careers-main-title {
    font-size: 2.5rem;
  }

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

  .testimonials-main-title {
    font-size: 2.5rem;
  }

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

  .faq-main-title {
    font-size: 2.5rem;
  }

  .contact-main-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 968px) {
  .nav-container {
    padding: 0 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 2rem;
  }

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

  .hero-description p {
    max-width: 100%;
  }

  .approach-section {
    padding: 5rem 0;
  }

  .approach-container {
    padding: 0 2rem;
  }

  .approach-content-block {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .approach-main-title {
    margin-bottom: 3rem;
  }

  .about-section {
    padding: 5rem 0;
  }

  .about-container {
    padding: 0 2rem;
  }

  .tab-navigation {
    gap: 1rem;
  }

  .tab-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tab-visual {
    height: 300px;
  }

  .blob {
    width: 250px;
    height: 250px;
  }

  .services-section {
    padding: 5rem 0;
  }

  .services-container {
    padding: 0 2rem;
  }

  .service-block {
    gap: 2rem;
  }

  .service-items-grid {
    grid-template-columns: 1fr;
  }

  .service-item-wide {
    grid-column: span 1;
  }

  .experience-section {
    padding: 5rem 0;
  }

  .experience-container {
    padding: 0 2rem;
  }

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

  .careers-section {
    padding: 5rem 0;
  }

  .careers-container {
    padding: 0 2rem;
  }

  .career-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-section {
    padding: 5rem 0;
  }

  .testimonials-container {
    padding: 0 2rem;
  }

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

  .faq-section {
    padding: 5rem 0;
  }

  .faq-container {
    padding: 0 2rem;
  }

  .contact-section {
    padding: 5rem 0;
  }

  .contact-container {
    padding: 0 2rem;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem 3rem;
  }

  .footer-left {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .brand-name {
    font-size: 1.1rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

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

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

  .nav-container,
  .hero-content {
    padding: 0 1.5rem;
  }

  .approach-container {
    padding: 0 1.5rem;
  }

  .approach-main-title {
    font-size: 1.75rem;
  }

  .content-heading {
    font-size: 1.5rem;
  }

  .content-right p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
  }

  .about-container {
    padding: 0 1.5rem;
  }

  .about-main-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .tab-navigation {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .tab-btn {
    width: 100%;
    text-align: left;
  }

  .tab-heading {
    font-size: 1.5rem;
  }

  .tab-description p {
    font-size: 1rem;
  }

  .tab-visual {
    height: 200px;
  }

  .blob {
    width: 180px;
    height: 180px;
  }

  .services-container {
    padding: 0 1.5rem;
  }

  .services-main-title {
    font-size: 1.75rem;
    margin-bottom: 3rem;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-icon {
    width: 80px;
    height: 80px;
  }

  .service-title {
    font-size: 1.5rem;
  }

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

  .service-list-title {
    font-size: 1rem;
  }

  .service-item {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  .experience-container {
    padding: 0 1.5rem;
  }

  .experience-main-title {
    font-size: 1.75rem;
    margin-bottom: 3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .stat-number sup {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .careers-container {
    padding: 0 1.5rem;
  }

  .careers-main-title {
    font-size: 1.75rem;
    margin-bottom: 3rem;
  }

  .career-card {
    padding: 2rem;
  }

  .career-title {
    font-size: 1.5rem;
  }

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

  .testimonials-container {
    padding: 0 1.5rem;
  }

  .testimonials-main-title {
    font-size: 1.75rem;
    margin-bottom: 3rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .author-avatar,
  .author-initials {
    width: 48px;
    height: 48px;
  }

  .author-initials {
    font-size: 1.1rem;
  }

  .author-name {
    font-size: 0.9rem;
  }

  .author-title {
    font-size: 0.8rem;
  }

  .faq-container {
    padding: 0 1.5rem;
  }

  .faq-main-title {
    font-size: 1.75rem;
    margin-bottom: 3rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }

  .contact-container {
    padding: 0 1.5rem;
  }

  .contact-main-title {
    font-size: 1.75rem;
    margin-bottom: 3rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 0.95rem;
  }

  .modal-content {
    padding: 2rem;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-text {
    font-size: 1rem;
  }

  .footer-container {
    padding: 0 1.5rem 2rem;
  }

  .footer-left {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    font-size: 1.1rem;
  }

  .footer-heading {
    font-size: 0.95rem;
  }

  .footer-links a,
  .contact-item {
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding: 1.5rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }
}

/* ========== ABOUT PAGE STYLES ========== */

/* About Hero Section */
.about-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 100%);
  text-align: center;
}

.about-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1.5rem 0;
  color: #000;
  letter-spacing: -0.03em;
}

.about-hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #444;
  max-width: 900px;
  margin: 2rem auto 0;
}

/* About Content Section */
.about-content-section {
  padding: 100px 0;
  background: #fff;
}

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

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #000;
  letter-spacing: -0.02em;
}

.content-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.content-column p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Image Content Blocks */
.about-image-section {
  padding: 80px 0;
  background: #fafafa;
}

.image-content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 5rem;
}

.image-content-block:first-of-type {
  margin-top: 3rem;
}

.image-content-block.reverse {
  direction: rtl;
}

.image-content-block.reverse > * {
  direction: ltr;
}

.image-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.text-wrapper h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #000;
}

.text-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.2rem;
}

.text-wrapper p strong {
  font-weight: 600;
  color: #000;
}

/* Expertise Highlight Section */
.expertise-highlight-section {
  padding: 100px 0;
  background: #fff;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.expertise-card {
  padding: 2.5rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

.expertise-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.expertise-icon.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
}

.expertise-icon.purple {
  background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
  color: #fff;
}

.expertise-icon.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
}

.expertise-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.expertise-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* CTA Section */
.about-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 100%);
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000;
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #444;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* About Page Responsive Styles */
@media (max-width: 968px) {
  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-description {
    font-size: 1.1rem;
  }

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

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

  .image-content-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .text-wrapper h3 {
    font-size: 1.75rem;
  }

  .text-wrapper p {
    font-size: 1rem;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 120px 0 60px;
  }

  .about-hero-title {
    font-size: 2rem;
  }

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

  .about-container {
    padding: 0 1.5rem;
  }

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

  .about-content-section {
    padding: 60px 0;
  }

  .about-image-section {
    padding: 60px 0;
  }

  .expertise-highlight-section {
    padding: 60px 0;
  }

  .about-cta-section {
    padding: 60px 0;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .expertise-card {
    padding: 2rem;
  }

  .text-wrapper h3 {
    font-size: 1.5rem;
  }

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

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

  .btn-large {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

/* ========== CONTACT PAGE STYLES ========== */

/* Contact Hero Section */
.contact-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #ede9fe 0%, #faf5ff 100%);
  text-align: center;
}

.contact-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 1.5rem 0;
  color: #000;
  letter-spacing: -0.03em;
}

.contact-hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #444;
  max-width: 800px;
  margin: 2rem auto 0;
}

/* Contact Form Section */
.contact-form-section {
  padding: 100px 0;
  background: #fff;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.form-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.form-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}

.form-intro p {
  font-size: 1.15rem;
  color: #555;
}

.contact-page-form {
  background: #fafafa;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
}

.contact-page-form .form-input,
.contact-page-form .form-select,
.contact-page-form .form-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.contact-page-form .form-input:focus,
.contact-page-form .form-select:focus,
.contact-page-form .form-textarea:focus {
  outline: none;
  border-color: #d946ef;
  box-shadow: 0 0 0 3px rgba(217, 70, 239, 0.1);
}

.contact-page-form .form-textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  margin-top: 1rem;
  cursor: pointer;
}

/* Contact Info Section */
.contact-info-section {
  padding: 100px 0;
  background: #f9fafb;
}

.contact-info-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.contact-info-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.info-icon.blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
}

.info-icon.purple {
  background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
  color: #fff;
}

.info-icon.green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.contact-info-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
}

/* Contact Page Responsive Styles */
@media (max-width: 968px) {
  .contact-hero-title {
    font-size: 2.5rem;
  }

  .contact-hero-description {
    font-size: 1.1rem;
  }

  .form-intro h2 {
    font-size: 2rem;
  }

  .contact-page-form {
    padding: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

@media (max-width: 640px) {
  .contact-hero {
    padding: 120px 0 60px;
  }

  .contact-hero-title {
    font-size: 2rem;
  }

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

  .contact-form-section {
    padding: 60px 0;
  }

  .contact-form-container {
    padding: 0 1.5rem;
  }

  .form-intro h2 {
    font-size: 1.75rem;
  }

  .form-intro p {
    font-size: 1rem;
  }

  .contact-page-form {
    padding: 2rem 1.5rem;
  }

  .contact-info-section {
    padding: 60px 0;
  }

  .contact-info-container {
    padding: 0 1.5rem;
  }

  .contact-info-card {
    padding: 2rem;
  }
}
