* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Initial transparent navbar */
.navbar {
  background: transparent !important;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

/* Sticky navbar when scrolled */
.navbar.sticky-top {
  position: fixed !important;
  background: #ffffff !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Initial navbar text color (white on hero) */
.navbar .navbar-brand h2 {
  color: #ffffff !important;
}

.navbar .navbar-nav .nav-link {
  color: #ffffff !important;
}

/* Sticky navbar text color (blue when white background) */
.navbar.sticky-top .navbar-brand h2 {
  color: #06a3da !important;
}

.navbar.sticky-top .navbar-nav .nav-link {
  color: #091e3e !important;
}

/* Hover and active states */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #06a3da !important;
}

/* Adjust hero section padding when navbar is sticky */
body.sticky-navbar .hero {
  padding-top: 150px;
}

/* For mobile view */
@media (max-width: 991.98px) {
  .navbar {
    position: relative;
    background: #ffffff !important;
  }

  .navbar .navbar-brand h2 {
    color: #06a3da !important;
  }

  .navbar .navbar-nav .nav-link {
    color: #091e3e !important;
  }

  .navbar.sticky-top {
    position: relative !important;
    box-shadow: none;
  }

  body.sticky-navbar .hero {
    padding-top: 130px;
  }
}

/* body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
} */

/* HERO - Updated for sticky navbar */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 110px 60px 140px;
  min-height: 700px;
  background: url("../img/Wordpress.jpg") center/cover no-repeat;
  position: relative;
  transition: padding-top 0.3s ease;
}

/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(3, 18, 23, 0.7), rgba(4, 50, 63, 0.7));
  z-index: 1;
} */

/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(3, 18, 23, 0.9),
    rgba(4, 50, 63, 0.9)
  );
  z-index: 1;
} */

/* 
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 1;
} */

/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 1;
}

.hero * {
  position: relative;
  z-index: 2;
} */

/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.95)
  );
  z-index: 1;
} */

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(9, 30, 62, 0.9), rgba(6, 163, 218, 0.85));
  z-index: 1;
}

/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(9, 30, 62, 0.95),
    rgba(6, 163, 218, 0.9)
  );
  z-index: 1;
} */

/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(9, 30, 62, 0.95),   
    rgba(9, 30, 62, 0.85),   
    rgba(6, 163, 218, 0.25)  
  );
  z-index: 1;
} */

/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 30, 62, 0.92); 
  z-index: 1;
} */

/* DIAGONAL / CROSS BOTTOM — FIXED */
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 150px;
  background: #ffffff;
  clip-path: polygon(0 72%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

/* CONTENT */
.hero-content {
  max-width: 580px;
  color: #ffffff;
  position: relative;
  z-index: 3;
}

/* HERO HEADING */
.hero h1 {
  /* font-size: 38px;
  font-weight: 800; */
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff !important;
  white-space: nowrap;
}

.hero h1 span {
  display: block;
}

/* HERO TEXT */
.hero p {
  /* font-size: 17.5px; */
  margin-bottom: 24px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
}

/* FEATURES */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  font-weight: 600;
}
.feature-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 14px;
  border-radius: 28px;
  font-size: 14.5px;
  color: #ffffff;
}

/* FORM — LARGER & MORE PROMINENT */
.form-container {
  width: 320px; /* Increased from 260px */
  background: #ffffff;
  padding: 24px; /* Increased from 12px */
  border-radius: 12px;
  position: relative;
  z-index: 4;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.form-container h3 {
  text-align: center;
  font-size: 18px; /* Increased from 16px */
  margin-bottom: 16px; /* Increased from 8px */
  color: #091e3e;
}

.form-group {
  margin-bottom: 12px; /* Increased from 8px */
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px; /* Increased from 6px 8px */
  font-size: 14px; /* Increased from 12px */
  border: 1px solid #ddd;
  border-radius: 6px;
}

.phone-group {
  display: flex;
  gap: 8px; /* Increased from 6px */
}

.phone-group select {
  width: 90px; /* Increased from 68px */
}

textarea {
  min-height: 60px; /* Increased from 45px */
}

/* BUTTON */
.submit-btn {
  width: 100%;
  background: #06a3da;
  color: #ffffff;
  border: none;
  padding: 12px; /* Increased from 8px */
  border-radius: 22px;
  font-size: 14px; /* Increased from 13px */
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px; /* Added margin */
}

.submit-btn:hover {
  background: #68a4c4;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 100px 20px 50px;
  }

  .form-container {
    width: 100%;
    max-width: 350px; /* Increased from 300px */
    margin-top: 40px;
  }

  .hero h1 {
    font-size: 28px;
    white-space: normal;
  }
}
/* Thank You Page Styles */
.thank-you-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #091e3e 0%, #06a3da 100%);
  padding: 40px 20px;
}

.thank-you-container {
  background: white;
  padding: 50px 40px;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkmark {
  width: 80px;
  height: 80px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 40px;
  color: white;
  font-weight: bold;
}

.thank-you-container h1 {
  text-align: center;
  color: #091e3e;
  margin-bottom: 20px;
  font-size: 2.5em;
}

.thank-you-container h1 span {
  color: #06a3da;
}

.thank-you-message {
  text-align: center;
  color: #666;
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.submission-details {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border: 2px solid #e3f2fd;
}

.detail-box {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.detail-box:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.detail-box h3 {
  color: #091e3e;
  margin-bottom: 10px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-value {
  color: #06a3da;
  font-size: 1.2em;
  font-weight: 600;
}

.next-steps {
  margin: 40px 0;
}

.next-steps h2 {
  text-align: center;
  color: #091e3e;
  margin-bottom: 30px;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e0e0e0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #06a3da;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  background: #f8fafc;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #06a3da;
}

.step-content h4 {
  color: #091e3e;
  margin-bottom: 10px;
}

.step-content p {
  color: #666;
  margin: 0;
}

.contact-info {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: #e3f2fd;
  border-radius: 10px;
}

.contact-info p {
  margin: 10px 0;
  color: #091e3e;
}

.action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0 20px;
}

.back-btn,
.home-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-btn {
  background: #06a3da;
  color: white;
}

.back-btn:hover {
  background: #0588b8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 163, 218, 0.3);
}

.home-btn {
  background: #f0f0f0;
  color: #091e3e;
}

.home-btn:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.auto-redirect {
  text-align: center;
  color: #666;
  font-size: 0.9em;
  margin-top: 20px;
}

.auto-redirect span {
  color: #06a3da;
  font-weight: bold;
  font-size: 1.2em;
}

/* Responsive for thank you page */
@media (max-width: 768px) {
  .thank-you-container {
    padding: 30px 20px;
  }

  .thank-you-container h1 {
    font-size: 2em;
  }

  .steps-timeline {
    gap: 20px;
  }

  .steps-timeline::before {
    left: 25px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2em;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .back-btn,
  .home-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* WordPress Visual Section */
.wordpress-visual-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #ccedff 0%, #e6f6ff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #06a3da, #68a4c4);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title {
  color: #091e3e;
  /* font-size: 36px;
    font-weight: 700; */
  margin-bottom: 10px;
}

.section-subtitle {
  color: #444;
  /* font-size: 18px; */
  max-width: 1500px;
  margin: 0 auto;
}

.wordpress-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  /*margin-bottom: 50px;*/
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #06a3da, #68a4c4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 28px;
}

.feature-card h3 {
  color: #091e3e;
  font-size: 20px;
  margin-bottom: 15px;
  /* font-weight: 600; */
}

.feature-card p {
  color: #444;
  line-height: 1.7;
}

.wordpress-content-box {
  background: linear-gradient(135deg, #68a4c4, #06a3da);
  color: white;
  padding: 50px 0;
  /*border-radius: 15px;*/
  /*text-align: center;*/
  /*max-width: 800px;*/
  margin: 0 auto;
}

.wordpress-content-box p {
  /* font-size: 18px; */
  line-height: 1.8;
  margin-bottom: 15px;
}

.wordpress-content-box p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .wordpress-features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .wordpress-content-box {
    padding: 30px;
  }
}

/* ===============================
   WordPress Services Section
   (Pure CSS - No Bootstrap)
================================ */

.wp-services-section {
  padding: 50px 15px;
  background: #ffffff;
}

/* Container */
/*.wp-services-section .container {*/
/*max-width: 1200px;*/
/*    margin: auto;*/
/*}*/

/* Header */
.wp-services-header {
  text-align: center;
  margin-bottom: 50px;
}

.wp-services-main-title {
  font-size: 32px !important;
  /* font-weight: 700; */
  color: #091e3e;
  margin-bottom: 15px;
}

.wp-services-subtitle {
  max-width: 1400px;
  margin: auto;
  /* font-size: 18px; */
  line-height: 1.7;
  color: #444;
}

/* ================= GRID ================= */

.wp-services-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile */
  gap: 22px;
}

/* ================= CARD ================= */

.wp-service-item {
  background: #eef9ff;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.wp-service-item:hover {
  transform: translateY(-6px);
  border-color: #06a3da;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(6, 163, 218, 0.15);
}

/* Icon */
.wp-service-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #06a3da, #68a4c4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
}

/* Title */
.wp-service-title {
  /* font-size: 18px;
    font-weight: 600; */
  color: #091e3e;
  margin-bottom: 25px;
}

/* Text */
.wp-service-description {
  /* font-size: 14px; */
  line-height: 1.6;
  color: #444;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (min-width: 576px) {
  .wp-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .wp-services-main-title {
    font-size: 36px;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .wp-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .wp-services-main-title {
    font-size: 42px;
  }

  .wp-service-item {
    text-align: left;
    padding: 32px;
  }

  .wp-service-icon {
    margin: 0 0 15px 0;
  }
}

/* Small Phones */
@media (max-width: 375px) {
  .wp-services-main-title {
    font-size: 26px;
  }

  .wp-service-item {
    padding: 22px 18px;
  }

  .wp-service-description {
    font-size: 13px;
  }
}

/* CTA Section with Background Image - REDUCED HEIGHT */
.bms-cta-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/Ctc.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0; /* Reduced from 100px */
  position: relative;
  overflow: hidden;
  min-height: 300px; /* Added min-height */
  display: flex;
  align-items: center;
}

.cta-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.cta-content {
  color: #ffffff;
  padding-right: 20px;
}

.cta-title {
  /* font-size: 2rem;
    font-weight: 700; */
  color: #06a3da;
  margin-bottom: 15px; /* Reduced from 25px */
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
  line-height: 1.6; /* Reduced from 1.8 */
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  /*max-width: 500px;*/
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Reduced from 12px */
  background: linear-gradient(135deg, #06a3da 0%, #68a4c4 100%);
  color: white;
  padding: 16px 35px; /* Reduced from 20px 45px */

  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease; /* Reduced from 0.4s */
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(6, 163, 218, 0.3); /* Reduced shadow */
  overflow: hidden;
  position: relative;
  min-width: 200px; /* Reduced from 240px */
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease; /* Reduced from 0.7s */
}

.cta-button:hover {
  background: linear-gradient(135deg, #68a4c4 0%, #06a3da 100%);
  transform: translateY(-3px); /* Reduced from -5px */
  box-shadow: 0 15px 30px rgba(104, 164, 196, 0.4); /* Reduced shadow */
  border-color: transparent;
  color: white;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-note {
  font-size: 0.85rem; /* Reduced from 0.95rem */
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-top: 10px; /* Added spacing */
}

/* Animated elements for visual interest */
.bms-cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(6, 163, 218, 0.08) 50%,
    transparent 70%
  ); /* Reduced opacity */
  animation: shimmer 10s infinite linear; /* Slower animation */
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Responsive Design for CTA with Background */
@media (max-width: 992px) {
  .bms-cta-section {
    padding: 50px 0; /* Reduced from 80px */
    min-height: 280px; /* Reduced height */
  }

  .cta-title {
    font-size: 1.7rem; /* Reduced from 2rem */
    margin-bottom: 12px; /* Reduced */
  }

  .cta-button {
    padding: 14px 32px; /* Reduced */
    font-size: 0.95rem; /* Reduced */
    min-width: 180px; /* Reduced */
  }

  .cta-description {
    font-size: 0.95rem; /* Reduced */
  }
}

@media (max-width: 768px) {
  .bms-cta-section {
    padding: 40px 0; /* Reduced from 70px */
    min-height: 250px; /* Reduced height */
  }

  .cta-title {
    font-size: 1.5rem; /* Reduced from 1.8rem */
    margin-bottom: 10px; /* Reduced from 20px */
  }

  .cta-description {
    font-size: 0.9rem; /* Reduced from 1.05rem */
    line-height: 1.5; /* Reduced from 1.7 */
  }

  .cta-content {
    padding-right: 0;
    margin-bottom: 20px; /* Reduced from 30px */
    text-align: center;
  }

  .cta-action {
    text-align: center !important;
    margin-top: 0;
  }

  .cta-button {
    padding: 13px 28px; /* Reduced */
    min-width: 170px; /* Reduced */
    font-size: 0.9rem; /* Reduced */
  }
}

@media (max-width: 576px) {
  .bms-cta-section {
    padding: 35px 0; /* Reduced from 60px */
    min-height: 220px; /* Reduced height */
  }

  .cta-title {
    font-size: 1.4rem; /* Reduced from 1.6rem */
  }

  .cta-button {
    width: 100%;
    max-width: 200px; /* Reduced from 250px */
    padding: 12px 25px; /* Reduced */
    font-size: 0.9rem; /* Reduced */
  }

  .cta-note {
    font-size: 0.8rem; /* Reduced from 0.9rem */
  }
}

@media (max-width: 480px) {
  .bms-cta-section {
    padding: 30px 0; /* Further reduced */
    min-height: 200px; /* Minimum mobile height */
  }

  .cta-title {
    font-size: 1.3rem; /* Updated for better mobile readability */
  }

  .cta-description {
    font-size: 0.85rem; /* Smaller for mobile */
  }

  .cta-button {
    padding: 10px 20px; /* Smaller padding */
    font-size: 0.85rem; /* Smaller font */
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .bms-cta-section {
    padding: 25px 0;
    min-height: 180px;
  }

  .cta-title {
    font-size: 1.2rem;
  }

  .cta-description {
    font-size: 0.8rem;
  }
}

/* Why Choose WordPress Development - Exact Layout */
.why-wordpress-exact-section {
  padding: 50px 0;
  background: white;
}

/* Main Header */
.why-exact-header {
  text-align: center;
  margin-bottom: 40px !important;
}

.why-exact-title {
  color: #091e3e;
  font-size: 32px !important; /* Was 36px */
  /* font-weight: 700; */
  margin: 0; /* Reduce bottom gap */

  position: relative;
  display: inline-block;
  line-height: 1.25;
  margin-bottom: 6px !important;
}

/* .why-exact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #06a3da, #68a4c4);
    border-radius: 2px;
} */
.why-exact-title::after {
  display: none !important;
}

.why-exact-intro {
  text-align: center; /* Matches heading */
  font-size: 15px !important; /* Smaller */
  line-height: 1.6;
  color: #555;
  max-width: 1200px; /* Keeps it readable */
  margin: 10px auto 0; /* Less space */
}

/* Grid Layout */
.why-exact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Columns */
.why-exact-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Items */
.why-exact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-exact-item:hover {
  background: #eef9ff;
}

/* Icons */
.why-exact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #06a3da;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.why-exact-item:hover .why-exact-icon {
  background: #68a4c4;
  transform: scale(1.1);
}

/* Content */
.why-exact-content {
  flex: 1;
}

.why-exact-item-title {
  color: #091e3e;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.why-exact-item-desc {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
  .why-wordpress-exact-section {
    padding: 60px 20px;
  }

  .why-exact-title {
    font-size: 32px;
  }

  .why-exact-grid {
    gap: 40px;
  }

  .why-exact-column {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .why-exact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
  }

  .why-exact-title {
    font-size: 28px;
  }

  .why-exact-item {
    padding: 15px;
  }

  .why-exact-item-title {
    font-size: 18px;
  }

  .why-exact-item-desc {
    font-size: 14.5px;
  }
}

@media (max-width: 576px) {
  .why-wordpress-exact-section {
    padding: 50px 15px;
  }

  .why-exact-title {
    font-size: 24px;
  }

  .why-exact-header {
    margin-bottom: 40px;
  }

  .why-exact-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
/* WordPress Development Process Section */
/* RESPONSIVE FIX - WordPress Process Heading */

@media (max-width: 992px) {
  .process-main-title {
    font-size: 34px;
  }

  .process-subtitle {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .process-main-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .process-subtitle {
    font-size: 15px;
    max-width: 100%;
    padding: 0 12px;
  }

  .process-header {
    text-align: center;
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .process-main-title {
    font-size: 24px;
  }

  .process-subtitle {
    font-size: 14.5px;
  }
}

/*word press web development process */

.wordpress-process-section {
  padding: 50px 0 50px 0; /* Reduced bottom padding */
  background: linear-gradient(135deg, #eef9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Background Elements */
.wordpress-process-section::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(6, 163, 218, 0.05) 0%,
    transparent 70%
  );
  animation: float 8s ease-in-out infinite;
}

.wordpress-process-section::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(104, 164, 196, 0.05) 0%,
    transparent 70%
  );
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Section Header */
.process-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.process-main-title {
  color: #091e3e;
  /* font-size: 42px;
    font-weight: 800; */
  margin-bottom: 6px !important;

  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

/* .process-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(to right, #06a3da, #68a4c4);
    border-radius: 3px;
    animation: widthGrow 2s ease-out;
} */

@keyframes widthGrow {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 120px;
    opacity: 1;
  }
}

.process-subtitle {
  color: #444;
  /* font-size: 20px; */
  /*max-width: 700px;*/
  margin: 15px auto 0;
  line-height: 1.6;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Process Timeline */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 5px;
  z-index: 2;
}

/* Timeline Center Line */
.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #06a3da, #68a4c4);
  border-radius: 2px;
  z-index: 1;
}

/* Process Step */
.process-step {
  margin-bottom: 80px;
  position: relative;
  display: flex;
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Left side steps */
.step-left {
  justify-content: flex-start;
}

/* Right side steps */
.step-right {
  justify-content: flex-end;
}

/* Step Card */
.step-card {
  background: white;
  border-radius: 20px;
  padding: 35px 30px;
  width: 42%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

/* Left card specific styling */
.step-left .step-card {
  border-left: 5px solid #06a3da;
  transform: translateX(-100px);
  animation: slideInFromLeft 1s ease-out forwards;
}

/* Right card specific styling */
.step-right .step-card {
  border-right: 5px solid #68a4c4;
  transform: translateX(100px);
  animation: slideInFromRight 1s ease-out forwards;
}

/* Animation keyframes */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #06a3da, #68a4c4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 25px 60px rgba(6, 163, 218, 0.15);
  border-color: rgba(6, 163, 218, 0.1);
}

.step-card:hover::before {
  opacity: 1;
}

/* Step Icon */
.step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #06a3da, #68a4c4);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  transition: all 0.4s ease;
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, #68a4c4, #06a3da);
  transform: rotate(10deg) scale(1.1);
}

/* Step Title */
.step-title {
  color: #091e3e;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.step-card:hover .step-title {
  color: #06a3da;
}

/* Step Description */
.step-description {
  color: #444;
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 22px;
  opacity: 0.9;
}

/* Read More Link */
.step-read-more {
  display: inline-flex;
  align-items: center;
  color: #06a3da;
  font-weight: 600;
  text-decoration: none;
  font-size: 14.5px;
  transition: all 0.3s ease;
  padding: 6px 0;
  position: relative;
}

.step-read-more::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #68a4c4;
  transition: width 0.3s ease;
}

.step-read-more:hover {
  color: #68a4c4;
}

.step-read-more:hover::after {
  width: 100%;
}

.step-read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.step-read-more:hover i {
  transform: translateX(5px);
}

/* Circle on the center line for each step */
.process-step::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border: 4px solid #06a3da;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Left side circle */
.step-left::before {
  border-color: #06a3da;
}

/* Right side circle */
.step-right::before {
  border-color: #68a4c4;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA Section */
.process-cta {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-text {
  color: #1e4356;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 1.2s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.process-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #06a3da 0%, #68a4c4 100%);
  color: white;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(6, 163, 218, 0.2);
  overflow: hidden;
  position: relative;
}

.process-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.process-cta-btn:hover {
  background: linear-gradient(135deg, #68a4c4 0%, #06a3da 100%);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(104, 164, 196, 0.3);
  border-color: transparent;
}

.process-cta-btn:hover::before {
  left: 100%;
}

.process-cta-btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.process-cta-btn:hover i {
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .wordpress-process-section {
    padding: 80px 0 30px 0;
  }

  .process-main-title {
    font-size: 36px;
  }

  .process-subtitle {
    font-size: 18px;
    margin-top: 30px;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    margin-bottom: 60px;
    justify-content: flex-start !important;
  }

  .step-card {
    width: calc(100% - 60px);
    margin-left: 60px;
    border-left: 5px solid #06a3da !important;
    border-right: none !important;
    transform: translateX(0) !important;
    animation: slideInFromLeftMobile 1s ease-out forwards !important;
  }

  @keyframes slideInFromLeftMobile {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .process-step::before {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .wordpress-process-section {
    padding: 60px 0 20px 0;
  }

  .process-main-title {
    font-size: 32px;
  }

  .process-header {
    margin-bottom: 60px;
  }

  .step-card {
    padding: 30px 25px;
    width: calc(100% - 50px);
    margin-left: 50px;
  }

  .step-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
    margin-bottom: 18px;
  }

  .step-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .step-description {
    font-size: 15px;
  }

  .cta-text {
    font-size: 20px;
  }

  .process-cta-btn {
    padding: 16px 40px;
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .wordpress-process-section {
    padding: 50px 0 15px 0;
  }

  .process-main-title {
    font-size: 28px;
  }

  .process-subtitle {
    font-size: 17px;
    margin-top: 25px;
  }

  .step-card {
    width: calc(100% - 40px);
    margin-left: 40px;
    padding: 25px 20px;
  }

  .process-step::before {
    width: 16px;
    height: 16px;
    left: 22px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    border-radius: 15px;
  }

  .step-title {
    font-size: 19px;
  }

  .process-cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 16px 30px;
    font-size: 16px;
  }
}

/* Industries Served Section */
.industries-served-section {
  padding: 50px 0 50px 0; /* Reduced top padding */
  background: #f2f2f2;
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.industries-served-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      rgba(6, 163, 218, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(104, 164, 196, 0.03) 0%,
      transparent 50%
    );
  z-index: 1;
}

/* Container Override */
.industries-served-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Section Header - UPDATED */
.industries-header {
  margin-bottom: 70px;
  position: relative;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.industries-main-title {
  color: #091e3e;
  /* font-size: 38px;
    font-weight: 800; */
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

/* .industries-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #06a3da, #68a4c4);
    border-radius: 2px;
} */

.industries-intro {
  color: #1e4356;
  /* font-size: 18px; */
  /*max-width: 900px;*/
  margin: 40px auto 0;
  line-height: 1.7;
  opacity: 0.9;
  text-align: center;
  width: 100%;
}

.industries-intro strong {
  color: #06a3da;
  font-weight: 700;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 0.8px;
  width: 100%;
}

/* Industry Card */
.industry-card {
  background: white;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #06a3da, #68a4c4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(6, 163, 218, 0.12);
  border-color: rgba(6, 163, 218, 0.1);
}

.industry-card:hover::before {
  opacity: 1;
}

/* Industry Icon */
.industry-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #06a3da, #68a4c4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, #68a4c4, #06a3da);
  transform: scale(1.1) rotate(5deg);
}

/* Industry Title */
.industry-title {
  color: #091e3e;
  font-size: 24px !important;
  /* font-weight: 700; */
  margin-bottom: 20px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.industry-card:hover .industry-title {
  color: #06a3da;
  background: linear-gradient(135deg, #06a3da, #68a4c4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Industry Description */
.industry-description {
  color: #444;
  /* font-size: 16px; */
  line-height: 1.7;
  opacity: 0.9;
  flex-grow: 1;
  margin-bottom: 0;
}

/* Hover Animation Effects */
.industry-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.industry-card:nth-child(1) {
  animation-delay: 0.1s;
}
.industry-card:nth-child(2) {
  animation-delay: 0.2s;
}
.industry-card:nth-child(3) {
  animation-delay: 0.3s;
}
.industry-card:nth-child(4) {
  animation-delay: 0.4s;
}
.industry-card:nth-child(5) {
  animation-delay: 0.5s;
}
.industry-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .industries-served-section {
    padding: 30px 0 80px 0;
  }

  .industries-main-title {
    font-size: 34px;
  }

  .industries-intro {
    font-size: 17px;
    margin-top: 30px;
  }

  .industry-card {
    padding: 35px 30px;
  }

  .industry-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
    margin-bottom: 25px;
  }

  .industry-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .industry-description {
    font-size: 15.5px;
  }
}

@media (max-width: 768px) {
  .industries-served-section {
    padding: 20px 0 60px 0;
  }

  .industries-main-title {
    font-size: 30px;
  }

  .industries-header {
    margin-bottom: 50px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 25px;
  }

  .industry-card {
    padding: 30px 25px;
  }

  .industry-icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
    margin-bottom: 22px;
  }

  .industry-title {
    font-size: 21px;
  }
}

@media (max-width: 576px) {
  .industries-served-section {
    padding: 15px 0 50px 0;
  }

  .industries-main-title {
    font-size: 26px;
  }

  .industries-intro {
    font-size: 16px;
    margin-top: 25px;
    padding: 0 15px;
  }

  .industry-card {
    padding: 25px 20px;
  }

  .industry-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    margin-bottom: 20px;
  }

  .industry-title {
    font-size: 20px;
  }

  .industry-description {
    font-size: 15px;
  }
}

/* Why Choose Section */
.why-choose-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #ffffff 0%, #eef9ff 100%);
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.why-choose-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(6, 163, 218, 0.03) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(104, 164, 196, 0.03) 0%,
      transparent 40%
    );
  z-index: 1;
}

/* Container Override */
.why-choose-section .container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.why-choose-header {
  margin-bottom: 45px;
  text-align: center;
  width: 100%;
}

.why-choose-main-title {
  color: #091e3e;
  /* font-size: 38px;
    font-weight: 800; */
  margin-bottom: 4px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

/* .why-choose-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #06a3da, #68a4c4);
    border-radius: 2px;
} */

.why-choose-intro {
  color: #1e4356;
  /* font-size: 18px; */
  /*max-width: 900px;*/
  margin: 12px auto 0;
  line-height: 1.7;
  opacity: 0.9;
  text-align: center;
}

/* Why Choose Content Layout */
.why-choose-content {
  display: flex;
  align-items: stretch; /* Changed from center to stretch for equal heights */
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Reasons Side */
.reasons-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.left-reasons {
  align-items: flex-end;
}

.right-reasons {
  align-items: flex-start;
}

/* Reason Card - UPDATED FOR EQUAL HEIGHTS */
.reason-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: flex-start; /* Changed from center to flex-start */
  gap: 20px;
  min-height: 220px; /* Added minimum height */
  height: 100%; /* Make card fill available height */
}

.left-card {
  flex-direction: row;
  text-align: left;
}

.right-card {
  flex-direction: row-reverse;
  text-align: left;
}

.reason-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, #06a3da, #68a4c4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(6, 163, 218, 0.15);
  border-color: rgba(6, 163, 218, 0.1);
}

.reason-card:hover::before {
  opacity: 1;
}

/* Reason Icon */
.reason-icon {
  min-width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #06a3da, #68a4c4);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  transition: all 0.4s ease;
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.reason-card:hover .reason-icon {
  background: linear-gradient(135deg, #68a4c4, #06a3da);
  transform: scale(1.1) rotate(5deg);
}

/* Reason Content - UPDATED FOR EQUAL HEIGHTS */
.reason-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Reason Title */
.reason-title {
  color: #091e3e;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
  flex-shrink: 0; /* Prevent title from shrinking */
}

.reason-card:hover .reason-title {
  color: #06a3da;
}

/* Reason Description - UPDATED FOR EQUAL HEIGHTS */
.reason-description {
  color: #444;
  font-size: 15.5px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
  flex: 1; /* Make description fill remaining space */
  display: flex;
  align-items: center; /* Center text vertically in available space */
}

/* Center Image Container */
.center-image-container {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

/* Center Image */
.center-image {
  width: 280px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(6, 163, 218, 0.2);
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.6s ease;
}

.center-image:hover {
  transform: perspective(1000px) rotateY(10deg);
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.center-image:hover .feature-image {
  transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(6, 163, 218, 0.9), transparent);
  color: white;
  padding: 25px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.center-image:hover .image-overlay {
  transform: translateY(0);
  opacity: 1;
}

.image-overlay h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.image-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* Center Badge */
.center-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #06a3da, #68a4c4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  box-shadow: 0 15px 40px rgba(6, 163, 218, 0.3);
  z-index: 3;
  border: 5px solid white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 15px 40px rgba(6, 163, 218, 0.3);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 20px 50px rgba(6, 163, 218, 0.4);
  }
}

/* Animation Effects */
.reason-card {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.8s ease-out forwards;
}

.right-card {
  transform: translateX(30px);
  animation: slideInRight 0.8s ease-out forwards;
}

.reason-card:nth-child(1) {
  animation-delay: 0.2s;
}
.reason-card:nth-child(2) {
  animation-delay: 0.4s;
}
.reason-card:nth-child(3) {
  animation-delay: 0.6s;
}
.reason-card:nth-child(4) {
  animation-delay: 0.8s;
}

.center-image {
  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 1s ease-out 0.5s forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .why-choose-content {
    gap: 30px;
  }

  .center-image-container {
    width: 280px;
    height: 350px;
  }

  .center-image {
    width: 240px;
    height: 300px;
  }

  .reason-card {
    max-width: 380px;
    min-height: 210px;
  }
}

@media (max-width: 992px) {
  .why-choose-section {
    padding: 80px 0;
  }

  .why-choose-main-title {
    font-size: 34px;
  }

  .why-choose-intro {
    font-size: 17px;
    margin-top: 30px;
  }

  .why-choose-content {
    flex-direction: column;
    gap: 60px;
    align-items: center;
  }

  .reasons-side {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .left-reasons,
  .right-reasons {
    align-items: center;
  }

  .center-image-container {
    order: -1;
    width: 300px;
    height: 350px;
    margin: 0 auto 40px;
  }

  .center-image {
    width: 260px;
    height: 320px;
  }

  .reason-card {
    max-width: 100%;
    min-height: 200px;
  }

  .reason-icon {
    min-width: 65px;
    height: 65px;
    font-size: 26px;
  }

  .reason-title {
    font-size: 20px;
  }

  .reason-description {
    font-size: 15px;
    align-items: flex-start; /* Reset alignment for mobile */
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-main-title {
    font-size: 30px;
  }

  .why-choose-header {
    margin-bottom: 50px;
  }

  .reason-card {
    padding: 25px;
    flex-direction: column !important;
    text-align: center !important;
    gap: 15px;
    min-height: auto; /* Let content determine height on mobile */
  }

  .reason-content {
    width: 100%;
  }

  .reason-icon {
    min-width: 60px;
    height: 60px;
    font-size: 24px;
    border-radius: 15px;
  }

  .center-badge {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .image-overlay {
    padding: 20px;
  }

  .image-overlay h4 {
    font-size: 18px;
  }

  .reason-description {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .why-choose-main-title {
    font-size: 26px;
  }

  .why-choose-intro {
    font-size: 16px;
    margin-top: 25px;
    padding: 0 15px;
  }

  .center-image-container {
    width: 260px;
    height: 300px;
  }

  .center-image {
    width: 220px;
    height: 280px;
  }

  .center-badge {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .reason-card {
    padding: 20px;
  }

  .reason-title {
    font-size: 19px;
  }

  .reason-description {
    font-size: 14.5px;
  }
}

/* Add to your existing CSS file */
.why-exact-intro {
  color: #1e4356;
  font-size: 18px;
  line-height: 1.7;
  /*max-width: 900px;*/
  margin: 8px auto 0;
  text-align: center;
  opacity: 0.9;
  padding: 0 20px;
}

/* If you want the same underline effect as your other section */
.why-exact-title {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.why-exact-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #06a3da, #68a4c4);
  border-radius: 2px;
}

/* Adjust spacing for the header */
.why-exact-header {
  margin-bottom: 70px;
  text-align: center;
  width: 100%;
}

.why-exact-title {
  color: #091e3e;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 8px !important;
  letter-spacing: -0.5px;
}

/* Related Services Section */
.related-services-section {
  padding: 50px 0 0px 0 !important; /* Reduced bottom padding */
  background: linear-gradient(135deg, #eef9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.related-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(6, 163, 218, 0.03) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(104, 164, 196, 0.03) 0%,
      transparent 40%
    );
  z-index: 1;
}

/* Container Override */
.related-services-section .container {
  position: relative;
  z-index: 2;
  max-width: 1089px;
  margin: auto;
}

/* Section Header (FIXED) */
.related-services-header {
  margin: 0 auto 25px;
  padding: 0 15px;
  text-align: center;
  width: 100%;
}

/* Main Title */
.related-services-main-title {
  color: #091e3e;
  /* font-size: 38px;
    font-weight: 800; */
  margin-bottom: 4px !important;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

/* .related-services-main-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, #06a3da, #68a4c4);
    border-radius: 2px;
} */

/* Subtitle (FIXED) */
.related-services-subtitle {
  color: #444;
  /* font-size: 18px; */
  max-width: 1200px;
  margin: 10px auto 0;
  line-height: 1.6;
  opacity: 0.9;
  text-align: center;
}

/* Scroll Container */
.services-scroll-container {
  position: relative;
  width: 100%;
  padding: 10px 0 20px;
}

.services-scroll-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px 40px;
  scrollbar-width: none;
}

.services-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* Service Card */
.service-card {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 420px;
  display: flex;
  flex-direction: column;
}

/* Card Top Line */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(to right, #06a3da, #68a4c4);
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(6, 163, 218, 0.15);
}

/* Icon */
.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #06a3da, #68a4c4);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  transition: 0.4s;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
}

/* Title */
.service-title {
  color: #091e3e;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-card:hover .service-title {
  color: #06a3da;
}

/* Description */
.service-description {
  color: #444;
  font-size: 15.5px;
  line-height: 1.7;
  opacity: 0.9;
  flex-grow: 1;
  margin-bottom: 25px;
}

/* Link */
.service-link {
  display: inline-flex;
  align-items: center;
  color: #06a3da;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  margin-top: auto;
  position: relative;
}

.service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #68a4c4;
  transition: 0.3s;
}

.service-link:hover::after {
  width: 100%;
}

/* Scroll Buttons */
.scroll-indicators {
  position: absolute;
  top: 50%;
  inset-inline: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.scroll-btn {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid rgba(6, 163, 218, 0.1);
  color: #06a3da;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}

/* Animations */
.service-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .related-services-section {
    padding: 80px 0 40px 0;
  }

  .related-services-main-title {
    font-size: 30px;
  }

  .related-services-subtitle {
    font-size: 15px;
  }

  .service-card {
    flex: 0 0 260px;
    height: 380px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .related-services-section {
    padding: 60px 0 30px 0;
  }

  .related-services-header {
    padding: 0 12px;
    margin-bottom: 40px;
  }

  .related-services-main-title {
    font-size: 26px;
  }

  .related-services-subtitle {
    font-size: 15px;
    max-width: 100%;
  }

  .service-card {
    flex: 0 0 240px;
    height: 360px;
    padding: 25px 20px;
  }

  .scroll-indicators {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 576px) {
  .related-services-section {
    padding: 50px 0 25px 0;
  }

  .related-services-main-title {
    font-size: 24px;
  }

  .service-card {
    flex: 0 0 220px;
    height: 350px;
  }
}

/* FAQ Section Styles with #06a3da and #68a4c4 Color Scheme */
.faq-section {
  padding: 40px 20px 60px;
  background: linear-gradient(135deg, #eef9ff 0%, #e6f4ff 100%);
  position: relative;
  margin-bottom: 0; /* Ensure no bottom margin */
}

/* Remove any unwanted margin/padding after FAQ */
.faq-section + * {
  margin-top: 0 !important;
}

/* Footer container - remove top margin */
.container-fluid.px-0.bg-dark.text-light {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ensure FAQ container has proper spacing */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
}

/* Rest of your existing FAQ styles remain the same... */

/* FAQ Header */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-main-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.faq-main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #68a4c4, #06a3da);
  border-radius: 2px;
}

/* First part of heading - "Frequently Asked" */
.first-part {
  color: #091e3e; /* Dark blue color */
}

/* Second part of heading - "Questions" */
.second-part {
  color: #06a3da; /* Blue color */
}

.faq-subtitle {
  font-size: 1rem;
  color: #444;
  max-width: 600px;
  margin: 20px auto 0;
  padding: 0 20px;
}

/* FAQ Item - Individual boxes with spacing */
.faq-item {
  margin-bottom: 14px; /* SPACE BETWEEN BOXES */
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease;
  width: 100%;
  animation: fadeIn 0.5s ease forwards;
  box-shadow: 0 4px 15px rgba(6, 163, 218, 0.08);
  border: 1px solid #d1ecff;
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item.active {
  background: linear-gradient(
    90deg,
    rgba(6, 163, 218, 0.03),
    rgba(104, 164, 196, 0.03)
  );
  box-shadow: 0 6px 20px rgba(6, 163, 218, 0.12);
  border-color: rgba(6, 163, 218, 0.3);
}

/* FAQ Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  min-height: 70px; /* Taller question area */
  transition: all 0.3s ease;
  padding: 0 30px;
}

/* Question Content */
.question-content {
  display: flex;
  align-items: center;
  flex: 1;
}

/* FAQ Title */
.faq-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #091e3e; /* Changed to blue for questions */
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 0; /* Removed padding since we don't have Q: prefix */
}

.faq-title::before {
  display: none; /* Remove Q: prefix */
}

.faq-question:hover .faq-title {
  color: #0480b8; /* Slightly darker blue on hover */
}

.faq-item.active .faq-title {
  color: #06a3da; /* Keep blue when active */
  font-weight: 700;
}

/* FAQ Icon */
.faq-icon {
  color: #091e3e;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(6, 163, 218, 0.08);
  border: 1px solid rgba(6, 163, 218, 0.1);
  margin-left: 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #68a4c4 0%, #06a3da 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(6, 163, 218, 0.3);
}

.faq-question:hover .faq-icon {
  background: rgba(6, 163, 218, 0.12);
  border-color: rgba(6, 163, 218, 0.15);
  transform: scale(1.05);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease;
  padding: 0 30px;
  position: relative;
  line-height: 1.6;
  background: rgba(6, 163, 218, 0.02);
  border-top: 1px solid transparent;
}

.faq-answer::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #68a4c4, #06a3da);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 25px 30px;
  border-top: 1px solid rgba(6, 163, 218, 0.1);
}

.faq-item.active .faq-answer::before {
  opacity: 1;
}

.faq-answer p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding-left: 10px;
}

.faq-question:hover {
  transform: translateX(3px);
}

.faq-item.active .faq-question {
  transform: translateX(0);
}

/* FAQ Item Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-item:nth-child(2) {
  animation-delay: 0.2s;
}
.faq-item:nth-child(3) {
  animation-delay: 0.3s;
}
.faq-item:nth-child(4) {
  animation-delay: 0.4s;
}
.faq-item:nth-child(5) {
  animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .faq-main-title {
    font-size: 2rem;
    padding-bottom: 12px;
  }

  .faq-main-title::after {
    width: 80px;
    height: 2.5px;
  }

  .faq-subtitle {
    font-size: 0.9rem;
    margin-top: 15px;
  }

  .faq-item {
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .faq-question {
    min-height: 65px;
    padding: 0 20px;
  }

  .faq-title {
    font-size: 1rem;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-answer::before {
    left: 20px;
  }

  .faq-item.active .faq-answer {
    padding: 20px 20px;
    max-height: 500px;
  }

  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .faq-main-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 30px 10px;
  }

  .faq-main-title {
    font-size: 1.6rem;
    padding-bottom: 10px;
  }

  .faq-main-title::after {
    width: 60px;
    height: 2px;
  }

  .faq-item {
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .faq-question {
    min-height: 60px;
    padding: 0 15px;
  }

  .faq-title {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 15px;
  }

  .faq-answer::before {
    left: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 15px 15px;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* For larger screens */
@media (min-width: 1200px) {
  .faq-container {
    max-width: 900px;
  }
}

@media (min-width: 1400px) {
  .faq-container {
    max-width: 1000px;
  }

  .faq-item {
    margin-bottom: 18px;
  }
}

/* WordPress Growth Section */

.wp-growth-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #eef9ff 0%, #ffffff 100%);
}

.wp-growth-section .container {
  /*max-width: 1300px;*/
  margin: auto;
  /*padding: 0 40px;   */
}

/* Header */
.wp-growth-header {
  text-align: center;
  margin-bottom: 50px;
}

.wp-growth-title {
  color: #091e3e;
  /* font-size: 34px;
    font-weight: 700; */
  line-height: 1.3;
  max-width: 1300px;
  text-align: left;
  margin: auto;
}

/* Content + Image */
.wp-growth-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Text */
.wp-growth-left {
  display: flex;
  flex-direction: column;
}

.wp-growth-text {
  color: #444;
  font-size: 16px;
  /* line-height: 1.7; */
  margin-bottom: 15px;
}

/* Right Image */
.wp-growth-right img {
  width: 100%;
  max-width: 480px;
  border-radius: 15px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Tablet */
@media (max-width: 992px) {
  .wp-growth-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .wp-growth-right img {
    margin: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .wp-growth-section {
    padding: 60px 15px;
  }

  .wp-growth-title {
    font-size: 26px;
  }

  .wp-growth-text {
    font-size: 14.5px;
  }
}

/* Mobile Responsive Headings - Add this at the end of your CSS file */

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  /* Hero Section */
  .hero h1 {
    font-size: 24px !important;
    white-space: normal !important;
  }

  /* WordPress Visual Section */
  .section-title,
  .wordpress-content-box p {
    font-size: 24px !important;
  }

  /* WordPress Services Section */
  .wp-services-main-title {
    font-size: 26px !important;
  }

  /* WordPress CTA Section */
  .cta-title {
    font-size: 24px !important;
  }

  /* Why Choose WordPress Exact Section */
  .why-exact-title {
    font-size: 26px !important;
  }

  /* WordPress Process Section */
  .process-main-title {
    font-size: 26px !important;
  }

  /* Industries Served Section */
  .industries-main-title {
    font-size: 26px !important;
  }

  /* Why Choose Section */
  .why-choose-main-title {
    font-size: 26px !important;
  }

  /* Related Services Section */
  .related-services-main-title {
    font-size: 26px !important;
  }

  /* FAQ Section */
  .faq-main-title {
    font-size: 1.8rem !important;
  }
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
  /* Hero Section */
  .hero h1 {
    font-size: 22px !important;
  }

  /* WordPress Visual Section */
  .section-title,
  .wordpress-content-box p {
    font-size: 22px !important;
  }

  /* WordPress Services Section */
  .wp-services-main-title {
    font-size: 24px !important;
  }

  /* WordPress CTA Section */
  .cta-title {
    font-size: 22px !important;
  }

  /* Why Choose WordPress Exact Section */
  .why-exact-title {
    font-size: 24px !important;
  }

  /* WordPress Process Section */
  .process-main-title {
    font-size: 24px !important;
  }

  /* Industries Served Section */
  .industries-main-title {
    font-size: 24px !important;
  }

  /* Why Choose Section */
  .why-choose-main-title {
    font-size: 24px !important;
  }

  /* Related Services Section */
  .related-services-main-title {
    font-size: 22px !important;
  }

  /* FAQ Section */
  .faq-main-title {
    font-size: 1.6rem !important;
  }

  /* Card/Item Titles - Optional: Also reduce smaller headings */
  .feature-card h3,
  .wp-service-title,
  .step-title,
  .industry-title,
  .reason-title,
  .service-title,
  .why-exact-item-title,
  .faq-title {
    font-size: 18px !important;
  }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
  /* Main Headings */
  .hero h1,
  .section-title,
  .wp-services-main-title,
  .cta-title,
  .why-exact-title,
  .process-main-title,
  .industries-main-title,
  .why-choose-main-title,
  .related-services-main-title {
    font-size: 20px !important;
  }

  /* FAQ Main Title */
  .faq-main-title {
    font-size: 1.5rem !important;
  }
}
