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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #1f2937;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Navigation Bar */
.navbar {
  background: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
}

.nav-links {
  display: flex;
  gap: 40px;
  margin-left: auto;
  margin-right: 40px;
}

.nav-link {
  text-decoration: none;
  color: #1f2937;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3b82f6;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  padding: 8px 16px;
  border-radius: 8px;
}

.search-icon {
  color: #6b7280;
}

.search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  width: 120px;
}

.search-input::placeholder {
  color: #9ca3af;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1f2937;
}

.phone-icon {
  color: #1f2937;
}

.login-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: #3b82f6;
}

.btn-primary {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #2563eb;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #ddd6fe 100%);
  background-image: url("../images/bg-hero-sec.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: calc(100vh - 80px);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Circles */
.hero-section::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(147, 197, 253, 0.2);
  top: -300px;
  left: -200px;
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(196, 181, 253, 0.15);
  bottom: -200px;
  left: 50%;
  z-index: 0;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-description {
  font-size: 18px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 24px;
}

.btn-cta {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.btn-cta:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #eab308;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero-image::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: #ef4444;
  border-radius: 50%;
  bottom: -50px;
  right: -50px;
  z-index: -1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

/* Cloud Consultants Section */
.consultants-section {
  background: #f9fafb;
  padding: 100px 0;
  position: relative;
}

.consultants-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.consultants-image {
  position: relative;
  z-index: 2;
}

/* Decorative shapes behind consultant image */
.consultants-image::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #14b8a6;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  z-index: -1;
}

.consultants-image::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-bottom: 300px solid #f97316;
  top: -50px;
  left: -100px;
  z-index: -2;
  opacity: 0.8;
}

.consultants-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* Purple circle decoration */
.consultants-section .consultants-wrapper::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: #8b5cf6;
  border-radius: 50%;
  bottom: 80px;
  left: 25%;
  z-index: 1;
}

/* Yellow circle decoration */
.consultants-section .consultants-wrapper::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: #fde047;
  border-radius: 50%;
  bottom: 50px;
  left: 35%;
  z-index: 0;
}

.consultants-content {
  max-width: 650px;
  position: relative;
  z-index: 3;
}

.consultants-title {
  font-size: 56px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.1;
  margin-bottom: 30px;
}

.consultants-description {
  font-size: 17px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 32px;
}

.consultants-list {
  list-style: none;
  margin-bottom: 36px;
}

.consultants-list li {
  font-size: 17px;
  color: #1f2937;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
}

.consultants-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

/* How We Deliver Section */
.deliver-section {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #e0e7ff 100%);
  padding: 100px 0;
  position: relative;
}

.deliver-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.deliver-title {
  font-size: 56px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.1;
  margin-bottom: 24px;
}

.deliver-subtitle {
  font-size: 18px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 16px;
}

.deliver-description {
  font-size: 18px;
  color: #374151;
  line-height: 1.7;
  font-weight: 500;
}

.deliver-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.deliver-card {
  background: white;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.deliver-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.deliver-card:nth-child(1) .card-icon {
  background: #d1fae5;
}

.deliver-card:nth-child(2) .card-icon {
  background: #e9d5ff;
}

.deliver-card:nth-child(3) .card-icon {
  background: #fecdd3;
}

.deliver-card:nth-child(4) .card-icon {
  background: #fed7aa;
}

.card-icon img {
  width: 40px;
  height: 40px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  margin-bottom: 16px;
  min-height: 52px;
}

.card-description {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}

/* Outcomes Section */
.outcomes-section {
  background: white;
  padding: 100px 0;
  position: relative;
}

.outcomes-title {
  font-size: 56px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 80px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.outcomes-card {
  background: #dff7f9;
  padding: 60px 50px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outcomes-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Add decorative background image to each card */
.outcomes-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: url("../images/aqua-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.outcomes-card:nth-child(1)::before {
  top: -40px;
  left: -40px;
}

.outcomes-card:nth-child(2)::before {
  top: -30px;
  right: -50px;
}

.outcomes-card:nth-child(3)::before {
  bottom: -60px;
  left: -30px;
}

.outcomes-card:nth-child(4)::before {
  bottom: -50px;
  left: -40px;
}

.outcomes-card-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.outcomes-card-description {
  font-size: 17px;
  color: #1f2937;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Why CloudNexusCorp Section */
.why-section {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #e0e7ff 100%);
  padding: 100px 0;
  position: relative;
}

.why-title {
  font-size: 56px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 80px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.why-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.why-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.why-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-card-content {
  padding: 32px 28px;
}

.why-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  margin-bottom: 16px;
}

.why-card-description {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}

/* Testimonial Section */
.testimonial-section {
  background: #f9fafb;
  padding: 100px 0;
  position: relative;
}

.testimonial-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  font-size: 120px;
  font-weight: 700;
  color: #93c5fd;
  line-height: 1;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-quote {
  font-size: 28px;
  font-weight: 400;
  color: #1f2937;
  line-height: 1.6;
  margin: 0 0 50px;
  border: none;
  padding: 0;
}

.testimonial-author {
  margin-top: 40px;
}

.author-name {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.author-title {
  font-size: 17px;
  font-weight: 400;
  color: #374151;
  margin-bottom: 4px;
}

.author-company {
  font-size: 17px;
  font-weight: 400;
  color: #374151;
}

/* Partners Section */
.partners-section {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #e0e7ff 100%);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.partners-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 60px;
}

.partners-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Contact Form Section */
.contact-form-section {
  background: white;
  padding: 100px 0;
  position: relative;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-content {
  text-align: center;
  margin-bottom: 50px;
}

.form-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.1;
  margin-bottom: 20px;
}

.form-description {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.6;
}

.contact-form {
  background: #f9fafb;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  color: #1f2937;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.btn-submit {
  width: 100%;
  background: #3b82f6;
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

/* Success Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 50px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  font-weight: 300;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.close-modal:hover {
  color: #1f2937;
}

.modal-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.modal-message {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 32px;
}

.modal-btn {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* CTA Section */
.cta-section {
  background-color: #ffac00;
  background-image: url("../images/cta-bg.webp");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

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

.cta-title {
  font-size: 56px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 30px;
}

.cta-description {
  font-size: 20px;
  color: #1f2937;
  line-height: 1.7;
  margin-bottom: 40px;
}

.btn-cta-white {
  background: white;
  color: #1f2937;
  border: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.btn-cta-white:hover .arrow-icon {
  transform: translateX(5px);
}

/* Footer */
.footer {
  background: #1f2937;
  color: #e5e7eb;
  padding: 60px 0 30px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

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

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #e5e7eb;
}

.contact-icon {
  flex-shrink: 0;
  margin-top: 3px;
  color: #3b82f6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #e0e7ff 100%);
  padding: 100px 0;
  text-align: center;
}

.about-hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-hero-subtitle {
  font-size: 24px;
  color: #4b5563;
  line-height: 1.5;
}

/* About Section */
.about-section {
  background: white;
  padding: 100px 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin-bottom: 30px;
}

.section-text {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.centered-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 60px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.expertise-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.expertise-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  padding: 24px 24px 12px;
}

.expertise-text {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  padding: 0 24px 24px;
}

/* Approach Section */
.approach-section {
  background: white;
  padding: 100px 0;
}

.centered-title-dark {
  font-size: 48px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 20px;
}

.centered-subtitle {
  font-size: 18px;
  color: #4b5563;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

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

.approach-card {
  background: #f9fafb;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.approach-card:hover {
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.approach-number {
  font-size: 48px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 20px;
}

.approach-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.approach-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
  background: #f9fafb;
  padding: 100px 0;
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.check-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.benefit-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.partners-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 60px;
  margin-top: -40px;
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  padding: 100px 0;
  text-align: center;
  color: white;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-hero-subtitle {
  font-size: 20px;
  opacity: 0.95;
  line-height: 1.6;
}

.contact-page-section {
  padding: 80px 0;
  background: #f9fafb;
}

.contact-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: white;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-info-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.contact-info-text {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-detail-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.contact-detail-item p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.contact-form-container {
  background: white;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-page-form label {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.contact-page-form input,
.contact-page-form textarea {
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.btn-submit {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

/* Call Me Back Button */
.call-me-back-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #10b981;
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
  line-height: 1.3;
}

.call-me-back-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.4);
}

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

  .hero-wrapper {
    gap: 40px;
  }

  .consultants-title {
    font-size: 48px;
  }

  .consultants-wrapper {
    gap: 60px;
  }

  .deliver-title {
    font-size: 48px;
  }

  .deliver-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .outcomes-title {
    font-size: 48px;
  }

  .outcomes-card-title {
    font-size: 28px;
  }

  .outcomes-card-description {
    font-size: 16px;
  }

  .why-title {
    font-size: 48px;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonial-quote {
    font-size: 24px;
  }

  .quote-icon {
    font-size: 100px;
  }

  .partners-title {
    font-size: 40px;
  }

  .partner-logo {
    width: 180px;
    height: 90px;
  }

  .partners-track {
    gap: 60px;
  }

  .form-title {
    font-size: 40px;
  }

  .contact-form {
    padding: 40px;
  }

  .cta-section {
    padding: 100px 0;
  }

  .cta-title {
    font-size: 48px;
  }

  .cta-description {
    font-size: 18px;
  }

  .footer {
    padding: 50px 0 25px;
  }

  .footer-wrapper {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .nav-wrapper {
    flex-wrap: wrap;
  }

  .nav-links {
    margin-right: 20px;
    gap: 20px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .consultants-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .consultants-title {
    font-size: 40px;
  }

  .consultants-image {
    max-width: 500px;
    margin: 0 auto;
  }

  .consultants-section .consultants-wrapper::before,
  .consultants-section .consultants-wrapper::after {
    display: none;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .outcomes-card {
    padding: 50px 40px;
  }

  .outcomes-card-title {
    font-size: 26px;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-card-title {
    font-size: 20px;
  }

  .testimonial-quote {
    font-size: 22px;
  }

  .quote-icon {
    font-size: 90px;
  }

  .partners-title {
    font-size: 36px;
  }

  .partner-logo {
    width: 160px;
    height: 80px;
  }

  .partners-track {
    gap: 50px;
  }

  .form-title {
    font-size: 36px;
  }

  .contact-form {
    padding: 35px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 42px;
  }

  .cta-description {
    font-size: 18px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-right {
    flex-wrap: wrap;
    gap: 12px;
  }

  .search-bar {
    order: 4;
    width: 100%;
  }

  .search-input {
    width: 100%;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 16px;
  }

  .consultants-section {
    padding: 60px 0;
  }

  .consultants-title {
    font-size: 32px;
  }

  .consultants-description {
    font-size: 16px;
  }

  .consultants-list li {
    font-size: 16px;
  }

  .deliver-section {
    padding: 60px 0;
  }

  .deliver-header {
    margin-bottom: 50px;
  }

  .deliver-title {
    font-size: 32px;
  }

  .deliver-subtitle,
  .deliver-description {
    font-size: 16px;
  }

  .deliver-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-title {
    font-size: 18px;
    min-height: auto;
  }

  .card-description {
    font-size: 15px;
  }

  .outcomes-section {
    padding: 60px 0;
  }

  .outcomes-title {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .outcomes-card {
    padding: 40px 30px;
  }

  .outcomes-card-title {
    font-size: 24px;
  }

  .outcomes-card-description {
    font-size: 15px;
  }

  .why-section {
    padding: 60px 0;
  }

  .why-title {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .why-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card-image {
    height: 200px;
  }

  .why-card-content {
    padding: 28px 24px;
  }

  .why-card-title {
    font-size: 20px;
  }

  .why-card-description {
    font-size: 15px;
  }

  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-quote {
    font-size: 20px;
    line-height: 1.5;
  }

  .quote-icon {
    font-size: 80px;
  }

  .author-name {
    font-size: 20px;
  }

  .author-title,
  .author-company {
    font-size: 16px;
  }

  .partners-section {
    padding: 60px 0;
  }

  .partners-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .partner-logo {
    width: 140px;
    height: 70px;
    padding: 15px;
  }

  .partners-track {
    gap: 40px;
  }

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

  .form-title {
    font-size: 32px;
  }

  .form-description {
    font-size: 16px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 15px;
    padding: 12px 14px;
  }

  .modal-content {
    padding: 40px 30px;
    width: 95%;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-message {
    font-size: 16px;
  }

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

  .cta-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .cta-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .btn-cta-white {
    padding: 14px 30px;
    font-size: 16px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer-wrapper {
    gap: 30px;
  }

  .footer-heading {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-links a {
    font-size: 15px;
  }

  .contact-item {
    font-size: 14px;
  }

  .footer-bottom {
    padding-top: 20px;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  /* About Page Responsive */
  .about-hero {
    padding: 60px 0;
  }

  .about-hero-title {
    font-size: 36px;
  }

  .about-hero-subtitle {
    font-size: 18px;
  }

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

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-text {
    font-size: 16px;
  }

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

  .centered-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .approach-section {
    padding: 60px 0;
  }

  .centered-title-dark {
    font-size: 32px;
  }

  .centered-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .approach-number {
    font-size: 36px;
  }

  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefit-item h4 {
    font-size: 16px;
  }

  .benefit-item p {
    font-size: 15px;
  }

  .contact-hero {
    padding: 60px 0;
  }

  .contact-hero-title {
    font-size: 32px;
  }

  .contact-hero-subtitle {
    font-size: 16px;
  }

  .contact-page-section {
    padding: 40px 0;
  }

  .contact-page-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info {
    padding: 30px 20px;
  }

  .contact-info-title {
    font-size: 24px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .contact-form-container .form-title {
    font-size: 24px;
  }

  .call-me-back-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 14px;
  }
}
