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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
}

/* Navigation Bar */
.navbar {
  background-color: #ffffff;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.nav-brand h1 {
  font-size: 20px;
  color: #333;
  font-weight: 600;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

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

.nav-links a:hover {
  color: #5b86e5;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background-image: url("../images/hero-sec.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 50px;
  margin-top: 70px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #ffffff;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: 20px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  display: inline-block;
  margin-top: 30px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background-color: #5b86e5;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: capitalize;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #4a75d4;
  transform: translateY(-2px);
}

/* What We Do Section */
.what-we-do {
  position: relative;
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.curved-top {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: #5a6b7a;
  border-radius: 0 0 50% 50%;
}

.what-we-do .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 48px;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 24px;
  color: #999;
  margin-bottom: 40px;
  font-weight: 300;
}

.section-highlight {
  font-size: 18px;
  color: #555;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-text {
  font-size: 18px;
  color: #666;
  margin-bottom: 15px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin: 50px auto;
  max-width: 1100px;
  text-align: left;
}

.services-column p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.btn-secondary {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background-color: #50b89a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  background-color: #3fa889;
  transform: translateY(-2px);
}

/* Why Work With Us Section */
.why-work-with-us {
  background-color: #ffffff;
  padding: 80px 20px;
}

.why-work-with-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.why-left {
  text-align: left;
}

.section-title-left {
  font-size: 48px;
  color: #333;
  font-weight: 700;
  margin-bottom: 30px;
}

.why-text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.why-director {
  font-size: 16px;
  color: #666;
  margin-top: 30px;
}

.linkedin-link {
  color: #5b86e5;
  text-decoration: none;
}

.linkedin-link:hover {
  text-decoration: underline;
}

.why-right {
  position: relative;
  text-align: left;
}

.quote-icon {
  font-size: 120px;
  color: #d3d3d3;
  line-height: 0.8;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 16px;
  color: #666;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

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

.author-name {
  font-size: 16px;
  color: #333;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.author-stars {
  margin-bottom: 8px;
}

.star {
  color: #ffa500;
  font-size: 18px;
}

.author-title {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.why-cta {
  text-align: center;
}

/* Sectors We Work With Section */
.sectors {
  background-color: #f5f5f5;
  padding: 80px 20px;
}

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

.sectors .section-title-left {
  text-align: left;
  margin-bottom: 50px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

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

.sector-item {
  margin-bottom: 20px;
}

.sector-title {
  font-size: 18px;
  color: #555;
  font-weight: 600;
  margin-bottom: 15px;
}

.sector-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.sector-list li {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 8px;
}

.sectors-cta {
  text-align: center;
}

/* Case Studies Section */
.case-studies {
  background-color: #f5f5f5;
  padding: 80px 20px;
}

.case-studies .container {
  max-width: 1400px;
  margin: 0 auto;
}

.case-studies-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.case-studies-header .section-title {
  display: inline-block;
  position: relative;
  padding: 0 40px;
}

.case-studies-header .section-title::before,
.case-studies-header .section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 300px;
  height: 1px;
  background-color: #999;
}

.case-studies-header .section-title::before {
  right: 100%;
  margin-right: 20px;
}

.case-studies-header .section-title::after {
  left: 100%;
  margin-left: 20px;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.case-study-card {
  background-color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case-study-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.case-study-logo img {
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
}

.case-study-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  width: 100%;
}

.case-study-list li {
  font-size: 14px;
  color: #666;
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  text-align: left;
}

.case-study-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #50b89a;
  font-size: 12px;
}

.case-study-stats {
  margin-bottom: 15px;
  width: 100%;
}

.stat-number {
  font-size: 42px;
  color: #333;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 12px;
  color: #666;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Verified Reviews Section */
.verified-reviews {
  background-color: #ffffff;
  padding: 80px 20px;
}

.verified-reviews .container {
  max-width: 1400px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.reviews-header .section-title {
  display: inline-block;
  position: relative;
  padding: 0 40px;
}

.reviews-header .section-title::before,
.reviews-header .section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 300px;
  height: 1px;
  background-color: #999;
}

.reviews-header .section-title::before {
  right: 100%;
  margin-right: 20px;
}

.reviews-header .section-title::after {
  left: 100%;
  margin-left: 20px;
}

.reviews-subtitle {
  text-align: center;
  font-size: 16px;
  color: #999;
  margin-bottom: 60px;
}

.verify-link {
  color: #5b86e5;
  text-decoration: none;
  font-weight: 600;
}

.verify-link:hover {
  text-decoration: underline;
}

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

.review-card {
  background-color: #ffffff;
  padding: 30px;
  text-align: left;
}

.review-quote {
  font-size: 80px;
  color: #d3d3d3;
  line-height: 0.8;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.review-text {
  font-size: 15px;
  color: #666;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 30px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.review-info {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-size: 14px;
  color: #333;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.review-stars {
  margin-bottom: 5px;
}

.review-stars .star {
  color: #ffa500;
  font-size: 16px;
}

.review-title {
  font-size: 13px;
  color: #666;
}

/* Contact Form Section */
.contact-form {
  background-color: #3d3d3d;
  padding: 80px 20px;
}

.contact-form .container {
  max-width: 600px;
  margin: 0 auto;
}

.form-title {
  font-size: 48px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

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

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

.required {
  color: #ff0000;
}

.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.name-field {
  display: flex;
  flex-direction: column;
}

.field-label {
  font-size: 13px;
  color: #999;
  margin-top: 5px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333;
  font-family: "Arial", sans-serif;
}

.form-group textarea {
  resize: vertical;
}

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

.btn-submit {
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: #50b89a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.btn-submit:hover {
  background-color: #3fa889;
  transform: translateY(-2px);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

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

.modal-content {
  background-color: #ffffff;
  margin: 10% auto;
  padding: 40px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: slideDown 0.3s ease;
}

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

.modal-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 32px;
  font-weight: 300;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

.modal-content h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.modal-content p {
  font-size: 18px;
  color: #666;
}

/* Footer */
.footer {
  background-color: #2a2a2a;
  padding: 60px 20px 20px;
  color: #ffffff;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

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

.footer-brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #ffffff;
}

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

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

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

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

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

.footer-contact {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.8;
}

.contact-address,
.contact-phone,
.contact-email,
.contact-crn {
  margin-bottom: 12px;
}

.contact-email a {
  color: #5b86e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #999;
  font-size: 14px;
}

/* About Page Styles */
.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 20px 80px;
  margin-top: 70px;
  text-align: center;
  color: #ffffff;
}

.page-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 22px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.about-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.about-section.gray-bg {
  background-color: #f5f5f5;
}

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

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-heading {
  font-size: 42px;
  color: #333;
  font-weight: 700;
  margin-bottom: 25px;
}

.about-text {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.about-column {
  text-align: left;
}

.about-subheading {
  font-size: 24px;
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-list li {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5b86e5;
  font-weight: 700;
}

.about-list li strong {
  color: #333;
}

.about-image-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

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

.about-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.solve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}

.solve-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.solve-item h4 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
}

.solve-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.about-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 20px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.about-cta .btn-primary {
  background-color: #ffffff;
  color: #667eea;
}

.about-cta .btn-primary:hover {
  background-color: #f0f0f0;
  color: #667eea;
}

/* Contact Page Styles */
.contact-info-section {
  padding: 80px 20px;
  background-color: #f5f5f5;
}

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

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

.contact-info-card {
  background-color: #ffffff;
  padding: 40px 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.info-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-info-card h3 {
  font-size: 22px;
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.contact-info-card a {
  color: #5b86e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #4a75d4;
  text-decoration: underline;
}

.contact-page-form {
  padding: 80px 20px;
  background-color: #ffffff;
}

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

.form-wrapper {
  background-color: #f9f9f9;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.form-heading {
  font-size: 36px;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.form-description {
  font-size: 17px;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-page-form .form-group {
  margin-bottom: 25px;
}

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

.contact-page-form .form-group input[type="text"],
.contact-page-form .form-group input[type="tel"],
.contact-page-form .form-group input[type="email"],
.contact-page-form .form-group textarea {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #ffffff;
  color: #333;
  font-family: "Arial", sans-serif;
  transition: border-color 0.3s ease;
}

.contact-page-form .form-group input:focus,
.contact-page-form .form-group textarea:focus {
  outline: none;
  border-color: #5b86e5;
}

.contact-page-form .btn-submit {
  width: 100%;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background-color: #5b86e5;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.contact-page-form .btn-submit:hover {
  background-color: #4a75d4;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    gap: 20px;
  }

  .nav-brand h1 {
    font-size: 16px;
  }

  .hero {
    padding: 0 30px;
  }

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

  .hero-subtitle {
    font-size: 24px;
  }

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

  .btn-primary {
    padding: 15px 30px;
    font-size: 16px;
  }

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

  .section-subtitle {
    font-size: 20px;
  }

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

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

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

  .section-title-left {
    font-size: 36px;
  }

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

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

  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .case-studies-header .section-title::before,
  .case-studies-header .section-title::after {
    width: 150px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reviews-header .section-title::before,
  .reviews-header .section-title::after {
    width: 150px;
  }

  .review-quote {
    font-size: 60px;
  }

  .name-fields {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

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

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

  .page-subtitle {
    font-size: 18px;
  }

  .about-heading {
    font-size: 32px;
  }

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

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

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

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

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

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

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

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

  .form-heading {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .navbar .container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    gap: 15px;
  }

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

  .hero-subtitle {
    font-size: 20px;
  }

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

  .section-subtitle {
    font-size: 18px;
  }

  .curved-top {
    top: -50px;
    height: 70px;
  }

  .section-title-left {
    font-size: 28px;
  }

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

  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .author-avatar {
    width: 60px;
    height: 60px;
  }

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

  .case-studies-header .section-title::before,
  .case-studies-header .section-title::after {
    width: 80px;
  }

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

  .reviews-header .section-title::before,
  .reviews-header .section-title::after {
    width: 80px;
  }

  .review-quote {
    font-size: 50px;
  }

  .review-avatar {
    width: 60px;
    height: 60px;
  }

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

  .modal-content {
    margin: 30% auto;
    padding: 30px 20px;
  }

  .modal-content h3 {
    font-size: 24px;
  }

  .modal-content p {
    font-size: 16px;
  }

  .footer-brand {
    font-size: 18px;
  }

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

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

  .page-subtitle {
    font-size: 16px;
  }

  .about-heading {
    font-size: 28px;
  }

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

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

  .form-heading {
    font-size: 24px;
  }

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