@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background-color: #f1f7fc;
  height: 100%;
  width: 100%;
}

/* Top bar */
.top-bar {
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.52rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  gap: 0.5rem;
  width: 100%;
}

.top-bar .left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
}

.top-bar .left i {
  color: #000;
}
.phone-group {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}
.phone {
  font-family: "Poppins", sans-serif;

  font-size: 1rem;
}
.call-info {
  font-family: "Poppins", sans-serif;

  font-size: 1rem;
}
.top-bar .left span.phone {
  font-weight: 700;
}

.top-bar .left span.call-info {
  color: #87ceeb;
  font-weight: 600;
}

/* Responsive top bar layout */
@media (min-width: 740px) {
  .top-bar {
    flex-direction: row;
    justify-content: flex-start;
    font-size: 0.5rem;
  }
}
/* Responsive top bar layout for smaller view */
@media (max-width: 739px) {
  .top-bar {
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.7rem;
  }

  .top-bar .left {
    align-items: flex-start;
    gap: 0.4rem;
  }

  .phone-group {
    align-items: flex-start;
    gap: 0.9rem;
  }
}

/* Navigation */
nav {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 1.3rem;
  background-color: #f1f7fc;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}
.logo-container img {
  width: 86px;
  height: 49px;
  object-fit: contain;
  transform: scale(1.5); /* Makes logo appear larger */
  transform-origin: left center; /* Keeps alignment */
}

.logo-text {
  color: #87ceeb;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Menu */
ul.menu {
  list-style: none;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-top: 1rem;
  margin: 0;
  gap: 2rem;
  font-weight: 700;
  font-size: 0.8rem;
  color: #000;
  flex-grow: 1;
  justify-content: flex-end;
  font-family: "Poppins", sans-serif;
  align-items: center;
  display: none;
}

ul.menu li {
  cursor: pointer;
  white-space: nowrap;
}

ul.menu li:hover {
  text-decoration: underline;
}

/* Right phone */
.nav-phone {
  display: none;
  align-items: center;
  padding-right: 15px;
  gap: 0.25rem;
  color: #87ceeb;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 1rem;
  padding-top: 8px;
}
/* Icons */
i.fas {
  font-style: normal;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 0.875rem;
  line-height: 1;
}

/* Responsive */
@media (min-width: 640px) {
  ul.menu {
    display: flex;
  }

  .nav-phone {
    display: flex;
  }
}
/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}

/* Responsive menu toggle */
@media (max-width: 639px) {
  .hamburger {
    display: block;
  }

  ul.menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 1000;
  }

  ul.menu.show {
    display: flex;
  }

  .nav-phone {
    display: none;
  }
}
@media (max-width: 639px) {
  .hamburger {
    display: block;
  }

  ul.menu {
    display: none;
    flex-direction: column;
    background-color: white;
    padding: 1rem 1.3rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    animation: slideDown 0.3s ease-in-out;
  }

  ul.menu.show {
    display: flex;
  }

  .nav-phone {
    display: none;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reset and base */
.hero-section {
  width: 100%;
}

.hero-wrapper {
  position: relative;
  width: 100%;
  height: auto; /* Use auto instead of % */
  border-radius: 0.375rem;
  overflow: hidden;
  margin: 0 auto;
}

.hero-wrapper img {
  width: 100%;
  height: 500px;
  display: flex;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  gap: 8rem;
}

.hero-overlay h1 {
  color: white;
  font-family: "Poppins";
  font-weight: 800;
  line-height: 1.1;
  max-width: 78rem;
  font-size: 1.875rem; /* 3xl */
  margin: 0;
}

.hero-overlay p {
  color: white;
  font-family: "Poppins";
  margin-top: 1rem;
  max-width: 54rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
}

/* Tablet (640px to 1023px) */
@media (min-width: 640px) and (max-width: 1023px) {
  .hero-wrapper img {
    width: 100%;
    height: auto;
  }

  .hero-overlay {
    gap: 4rem;
    padding: 3rem 2rem;
  }

  .hero-overlay h1 {
    font-size: 2.25rem; /* Already defined at 640px+ */
    line-height: 1.3;
  }

  .hero-overlay p {
    font-size: 1.25rem;
  }
}

/* Laptop (1024px and above) */
@media (min-width: 1024px) {
  .hero-overlay {
    gap: 2rem;
    padding: 4rem 2rem;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1.2rem;
  }
}
@media (max-width: 499px) {
  .hero-wrapper img {
    width: 100%;
    height: auto;
  }

  .hero-overlay {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .hero-overlay h1 {
    font-size: 1.25rem;
    line-height: 1.3;
    max-width: 100%;
  }

  .hero-overlay p {
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 100%;
  }
}

/* Remove margin/padding and set full width */
.brand-logos-section {
  width: 95vw; /* force full viewport width */
  margin: 0;
  padding: 30px 0;
  background-color: #f0f5fa;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  overflow-x: hidden; /* prevent horizontal scroll */
}

/* Center content with optional padding */
.brand-logos-container {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px; /* optional, remove if needed */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 75px;
  box-sizing: border-box;
}

.brand-logos-container img {
  max-height: 24px;
  width: auto;
  display: block;
}
/* Smaller logos for HP and Dell */
.brand-logos-container img.small-logo {
  max-height: 150px !important;
  display: block;
}
@media (min-width: 501px) and (max-width: 768px) {
  .brand-logos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 0 10px;
  }

  .brand-logos-container img {
    max-height: 28px;
    flex-shrink: 0;
    width: auto;
  }

  .brand-logos-container img.small-logo {
    max-height: 35px;
  }
}

@media (max-width: 640px) {
  .brand-logos-container {
    gap: 24px 24px;
  }
  .brand-logos-container img {
    max-height: 30px;
  }
  .small-logo {
    max-height: 40px;
  }
}
/* Default: no overflow scroll, logos in one row */
.brand-logos-section {
  overflow-x: hidden; /* prevent scroll */
}

.brand-logos-container {
  justify-content: space-between;
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  .brand-logos-container {
    gap: 28px;
  }

  .brand-logos-container img {
    max-height: 11px;
  }

  .brand-logos-container img.small-logo {
    max-height: 24px !important;
  }
  .footer-section {
    flex: 1 1 45% !important;
  }
}

/* Mobile view (≤480px) */
@media (max-width: 480px) {
  .brand-logos-container {
    gap: 16px;
    padding: 0 10px;
  }

  .brand-logos-container img {
    max-height: 14px;
  }

  .brand-logos-container img.small-logo {
    max-height: 18px !important;
  }
  .footer-section {
    flex: 1 1 100% !important;
  }
  .social-icons {
    justify-content: center !important;
  }
}

/* Very small devices (<380px) */
@media (max-width: 379px) {
  .brand-logos-container {
    gap: 10px;
  }

  .brand-logos-container img {
    max-height: 12px;
  }

  .brand-logos-container img.small-logo {
    max-height: 16px !important;
  }
}
@media (max-width: 500px) {
  .brand-logos-container {
    gap: 8px; /* reduce space between logos further */
    padding: 0 6px;
  }

  .brand-logos-container img {
    max-height: 10px; /* aggressively reduce size */
  }

  .brand-logos-container img.small-logo {
    max-height: 14px !important;
  }
}
@media (width: 820px) {
  .brand-logos-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 0 12px;
  }

  .brand-logos-container img {
    max-height: 19px !important;
    flex-shrink: 0;
    width: auto;
  }

  .brand-logos-container img.small-logo {
    max-height: 40px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .brand-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 33px;
    padding: 0 20px;
    flex-wrap: wrap;
  }

  .brand-logos-container img {
    max-height: 23px;
    width: auto;
    flex-shrink: 0;
  }

  .brand-logos-container img.small-logo {
    max-height: 42px !important;
  }
}

.services-intro {
  height: 80%; /* or any desired percentage */
  /* max-width: 640px;*/
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1rem;
  box-sizing: border-box;
}

.services-intro h1 {
  font-weight: 800;
  font-size: 2rem;
  margin: 0;
  color: #000000;
}

.services-intro h1 .highlight {
  color: #25a4ad;
}

.services-intro p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .services-intro h1 {
    font-size: 2.5rem;
  }
  .services-intro p {
    font-size: 1rem;
  }
}

.services-section {
  background: #f0f5fa;
  padding: 0rem 1rem;
  text-align: center;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.service-card {
  background: #ffffff;
  padding: 1rem;
  width: 300px;
  border: 2px solid #e2e8f0; /* 👈 add this line */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: #333;
}

.btn {
  background-color: #87ceeb;
  padding: 0.5rem 1.25rem;
  color: #fff;
  text-decoration: underline;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #87ceeb;
}
.explore-btn-wrapper {
  margin-top: 4rem;
}

.explore-btn {
  background-color: #87ceeb;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  padding: 0.75rem 2rem;
}
.explore-btn:hover {
  background-color: #87ceeb;
}

.explore-btn-wrapper {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.explore-btn {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 2rem;
}

/* Responsive: 2 per row on tablets, 1 on small screens */
@media (max-width: 1024px) {
  .service-card {
    width: calc(50% - 2rem);
  }
}

@media (max-width: 640px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }
  .services-intro {
    padding: 0rem 1rem;
  }
  .service-card {
    width: 100%;
    max-width: 320px;
  }
}

/* Tablet: two cards per row */
@media (max-width: 1024px) {
  .services-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .service-card {
    width: calc(50% - 1rem); /* two per row with spacing */
    max-width: none;
  }
}

/* Small tablets and large phones (1 per row) */
@media (max-width: 768px) {
  .service-card {
    width: 100%;
    max-width: 400px;
  }

  .services-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .services-intro h1 {
    font-size: 1.875rem;
  }

  .services-intro p {
    font-size: 0.875rem;
  }
}

/* Mobile phones under 480px */
@media (max-width: 480px) {
  .services-intro {
    padding: 0;
  }

  .services-intro h1 {
    font-size: 1.5rem;
  }

  .service-card {
    padding: 1rem;
  }

  .service-card h3 {
    font-size: 0.875rem;
  }

  .service-card p {
    font-size: 0.75rem;
    padding-bottom: 1rem;
  }

  .service-icon img {
    width: 1.5rem;
    height: 1.5rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .explore-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* Extra small devices under 360px */
@media (max-width: 360px) {
  .services-intro h1 {
    font-size: 1.25rem;
    padding: 0;
  }

  .services-intro p {
    font-size: 0.75rem;
  }

  .btn {
    font-size: 0.75rem;
  }

  .explore-btn {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

.document-section {
  margin: auto;
  height: 130px;
  background-color: #87ceeb; /* Optional background */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

.document-section h2 {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
}
/* Tablet: slightly smaller font */
@media (max-width: 1024px) {
  .document-section h2 {
    font-size: 2.2rem;
  }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
  .document-section {
    height: auto;
    padding: 1.5rem 1rem;
  }

  .document-section h2 {
    font-size: 1.5rem;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .document-section {
    height: auto;
    padding: 2rem 0rem;
  }

  .document-section h2 {
    font-size: 1rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .document-section h2 {
    font-size: 1rem;
  }
}

.how-it-works {
  background-color: #f0f8ff;
  padding: 0rem 1rem;
  text-align: center;
}

.how-it-works h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #000;
  position: relative;
  z-index: 9;
}
.how-it-works-part h2 {
  color: #fff !important;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
  align-items: left;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}

.step-card {
  background: transparent;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  width: 330px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .step-card:hover {
  transform: translateY(-8px); 
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2); 
} */

.step-icon {
  margin-bottom: 0rem;
}
.step-icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  display: block;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: #fff;
}

.step-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
}
/* .step-card p:hover {
  font-style: italic;
} */
.step-btn {
  background-color: #87ceeb;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: underline;
  transition: background-color 0.3s ease;
}

.step-btn:hover {
  background-color: #66b8d9;
}

/* Responsive */
@media (max-width: 768px) {
  .step-card {
    width: 100%;
    max-width: 400px;
  }
}

/* Tablet and below */
@media (max-width: 1024px) {
  .how-it-works h2 {
    font-size: 2.4rem;
  }
  .how-it-works {
    padding: 0rem 0rem;
  }
  .steps-container {
    gap: 2.5rem;
  }

  .step-card {
    width: calc(50% - 2rem);
    max-width: 100%;
  }
}

/* Mobile devices */
@media (max-width: 991px) {
  ul.menu {
    display: none;
  }
  .nav-phone {
    display: none;
  }
  #mailpoet_form_1 form.mailpoet_form {
    padding-left: 0 !important;
  }
  #mailpoet_form_1 .mailpoet_submit {
    display: flex;
    justify-content: center;
    margin: 0 auto !important;
  }
}
@media (max-width: 768px) {
  .how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .steps-container {
    flex-direction: column;
    padding: 0rem 1rem;
    gap: 2rem;
    align-items: center;
  }
  .how-it-works {
    padding: 0rem 1rem;
  }
  .step-card {
    width: 100%;
    max-width: 360px;
  }

  .step-card h3 {
    font-size: 1rem;
  }

  .step-card p {
    font-size: 0.8rem;
  }

  .step-icon img {
    width: 1.8rem;
    height: 1.8rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .how-it-works h2 {
    font-size: 1.6rem;
  }
  .how-it-works {
    padding: 0rem 1rem;
  }

  .step-card h3 {
    font-size: 0.95rem;
  }

  .step-card p {
    font-size: 0.75rem;
  }

  .step-btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
  .top-bar .phone-group {
    flex-direction: column;
  }
  .top-bar .left i {
    color: #000;
    padding-top: 5px;
  }
  .wpcf7-form p label {
    font-size: 15px;
    line-height: 25px;
  }
  .brand-logos-section {
    width: 100%;
  }
}

/* Ultra small devices */
@media (max-width: 360px) {
  .how-it-works h2 {
    font-size: 1.4rem;
  }

  .step-card {
    padding: 1rem;
  }

  .step-card p {
    font-size: 0.7rem;
  }

  .step-icon img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.expert-section {
  margin: auto;
  height: 130px;
  background-color: #87ceeb; /* Optional background */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 3rem;
}

.expert-section h2 {
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
}
/* Tablet */
@media (max-width: 1024px) {
  .expert-section h2 {
    font-size: 2.2rem;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .expert-section h2 {
    font-size: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .expert-section h2 {
    font-size: 1rem;
  }
}

/* Very small phones */
@media (max-width: 360px) {
  .expert-section h2 {
    font-size: 1rem;
  }
}

.support-section {
  background-color: #f0f8ff;
  padding: 3rem 1rem;
  text-align: center;
}

.support-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  font-family: "Poppins", sans-serif;
  color: #222;
}

.support-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  gap: 8rem;
}

.support-card {
  /* background: #ffffff; */
  border-radius: 10px;
  padding: 2rem;
  width: auto;
  /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06); */
  text-align: left;
}

.support-card h3 {
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.support-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.support-card li {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  font-size: 0.95rem;
  color: #333;
}

.support-card li::before {
  content: "\2713"; /* Unicode checkmark */
  position: absolute;
  left: 0;
  color: #25a4ad;
  font-weight: bold;
}
/* .support-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
} */

@media (max-width: 768px) {
  .support-cards {
    flex-direction: column;
    align-items: center;
  }

  .support-card {
    width: 90%;
    max-width: 360px;
  }
}

.promo-banner {
  background-color: #8ed2ee;
  padding: 2rem 1rem;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-content {
  max-width: 1204px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}

.promo-content h2 {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 800;
  flex: 1 1 300px;
  margin: 0;
}

.contact-btn {
  border: 2px solid white;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 15%;
  height: auto;
}

.contact-btn:hover {
  background-color: white;
  color: #8ed2ee;
}
/* 💻 Tablet (<=1024px) */
@media (max-width: 1024px) {
  .promo-content {
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
  }

  .promo-content h2 {
    font-size: 1.4rem;
  }

  .contact-btn {
    margin-top: 0.5rem;
  }
  .contact-btn {
    border: 2px solid white;
    color: white;
    padding: 0.5rem 0.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 19%;
    height: auto;
  }
}

/* 📱 Medium Screens (<=768px) */
@media (max-width: 768px) {
  .promo-content {
    align-items: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .promo-content h2 {
    font-size: 1.32rem;
  }

  .contact-btn {
    width: auto;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

/* 📱 Small Screens (<=600px) */
@media (max-width: 600px) {
  .promo-content {
    flex-direction: row; /* keep them in a row */
    flex-wrap: nowrap; /* don't allow wrapping */
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
    text-align: left; /* override center alignment */
  }

  .promo-content h2 {
    font-size: 0.95rem;
    flex: 1 1 auto;
    margin: 0;
  }

  .contact-btn {
    width: auto;
    max-width: none;
    white-space: nowrap;
    font-size: 0.5rem;
    padding: 0.5rem 0.3rem;
  }
}

/* 📱 Extra Small (<=400px) */
@media (max-width: 480px) {
  .promo-content h2 {
    font-size: 0.54rem;
    padding: 0;
  }

  .contact-btn {
    padding: 0.5rem 0.3rem;
    font-size: 0.6rem;
  }
}

.testimonials-section {
  background-color: #f4faff;
  padding: 4rem 1rem;
  text-align: center;
}

.testimonials-header h2 {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.testimonials-header p {
  font-size: 2.1rem;
  color: #444;
  line-height: 1.6;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 2rem;
  border-radius: 10px;
  max-width: 340px;
  flex: 1 1 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.testimonial-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.stars {
  color: #fbc02d;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #333;
  font-style: italic;
  margin-bottom: 1.2rem;
  text-align: left;
}

.testimonial-card h4 {
  font-weight: 700;
  margin: 0;
  text-align: left;
}

.testimonial-card span {
  color: #888;
  font-size: 0.85rem;
  display: block;
  text-align: left;
}
.info-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 21px;
}

.info-group img {
  margin-top: 3px;
  flex-shrink: 0;
}

.info-group p {
  margin: 0 0 4px 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #1e293b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonials-header h2 {
    font-size: 1.8rem;
  }

  .testimonials-header p {
    font-size: 1rem;
  }

  .testimonials-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonials-header h2 {
    font-size: 1.5rem;
  }
}

.footer {
  background-color: #f4faff;
  color: #111;
  padding: 2rem 6rem;
  font-family: "Inter", sans-serif;
  padding-bottom: 0rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 250px;
  text-align: left;
}
.footer-section address {
  text-align: left;
}
.footer-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f172a;
}

.footer-section p,
.footer-section a {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1e293b;
  text-decoration: none;
}

.footer-section ul {
  padding: 0;
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  gap: 0.8rem;
  margin-top: 1rem;
}

.newsletter-form input {
  width: 100%;
  padding: 0.8rem 0.75rem;
  border: none;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: box-shadow 0.3s ease;
}

.newsletter-form input:focus {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.newsletter-form button {
  padding: 0.5rem 1.2rem;
  background-color: #bae6fd;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.social-icons a {
  font-size: 1.2rem;
  color: #1e293b;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: row !important;
    /* flex-wrap: nowrap !important; */
    justify-content: space-between;
    align-items: flex-start;
  }
  /* .social-icons {
    gap: 0;
  } */
  .footer {
    padding: 2rem 2rem;
  }
  .footer-section {
    flex: 0 0 28.33%;
    min-width: 0;
  }
  .footer-section p,
  .footer-section a {
    font-size: 0.8rem;
  }
  .footer-section ul li {
    margin-bottom: 0rem;
  }
  .footer-section h3 {
    font-size: 0.8rem;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: flex-end;
  }

  .newsletter-form button {
    width: auto;
  }
}

@media (max-width: 300px) {
  .footer-container {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
  }

  .footer-section {
    flex: 0 0 20.33%;
  }
  .footer-section h3 {
    font-size: 0.9rem;
  }

  .footer-section p {
    font-size: 0.5rem;
  }
  .social-icons {
    gap: 0;
  }
  .social-icons a {
    font-size: 0.5rem;
    color: #1e293b;
  }
}
h1,
h2,
h3 {
  font-family: "Poppins", sans-serif !important;
}
p,
a {
  font-family: "Poppins", sans-serif !important;
}
h2 {
  font-family: "Poppins", sans-serif;
}

.testimonial-card p {
  text-align: left;
}

.fixed-call-btn {
  position: fixed;
  right: 0;
  z-index: 9999;
  top: 50%;
  transform: translateY(-50%);
}
.fixed-call-btn a {
  background-color: #bae6fd;
  padding: 10px 20px;
  display: block;
  border-radius: 10px 0 0 10px;
}
.fixed-call-btn img {
  max-width: 22px;
}
.fixed-call-btn a {
  color: #1e293b;
  text-decoration: none;
}

/* why-work css */
#why-work {
  padding: 80px 0;
}
#why-work .container {
  max-width: 80%;
  margin: 0 auto;
}
#why-work .why-work-box {
  display: flex;
  gap: 30px;
}
#why-work .left {
  width: 70%;
}

#why-work .left .box {
  position: sticky;
  top: 60px;
}

#why-work .left h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
}

#why-work .left h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-align: left;
}

#why-work .left p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 30px;
  max-width: 400px;
  text-align: left;
}

#why-work .left .cta {
  background-color: #bae6fd;
  color: black;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: flex;
  width: max-content;
}

#why-work .right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 70px;
  grid-auto-rows: 1fr;
  width: 100%;
}

#why-work .right .card {
  position: relative;
  height: 100%;
  box-sizing: border-box;
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

#why-work .right .card:nth-child(even) {
  top: 40px;
}

#why-work .card:hover {
  transform: translateY(-5px);
}
#why-work .right .card img {
  max-width: 60px;
  display: flex;
}

#why-work .card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: left;
}
#why-work .card p {
  color: #000;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}

#why-work .card a {
  color: #000;
  text-decoration: underline;
}

.how-it-works-part {
  padding: 10px 0 80px;
  background: url(/wp-content/themes/easyprints/assets/images/how-it-works-bg.jpg)
    no-repeat;
  position: relative;
  background-size: 100% 100%;
}

.how-it-works-part::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000a3;
}

.steps-section {
  background: #f7f7f7;
  text-align: center;
  padding: 5px 5px;
  font-family: "Poppins", sans-serif;
}

.steps-section .container {
  max-width: 700px;
  margin: 0 auto;
}

.steps-section h5 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  color: #111;
}

.steps-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 41px;
  color: #111;
  margin-top: 0px;
}

.steps-section .steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.steps-section .step img {
  width: 40px;
  margin-bottom: 10px;
}

.steps-section .step h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
  color: #111;
}

.steps-section .step p {
  font-size: 25px;
  color: #444;
  margin: 0;
}
.steps-section .btn-primary {
  display: inline-block;
  background-color: #93cdeb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-bottom: 30px;
}

.steps-section .steps i {
  font-size: 75px;
}
.steps-section .step-1 i {
  color: #2ab2e5;
}
.steps-section .step-2 i {
  color: #e61b85;
}
.steps-section .step-3 i {
  color: #ffcc31;
}

#printer-sections .printer-sections-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #bae6fd;
  padding: 20px 0 50px;
  flex-direction: column;
}

#printer-sections .printer-sections-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #bae6fd;
  padding: 20px 0 50px;
}

#printer-sections h4 {
  font-size: 25px;
}
#printer-sections .big {
  font-size: 18px;
  margin: 0;
}
#printer-sections .small {
  font-size: 14px;
  margin: 0;
}
#printer-sections .cta-button a {
  color: #1e293b;
  text-decoration: none;
  border: 1px solid white;
  background-color: #ffffffa1;
  padding: 10px 20px;
  display: block;
  border-radius: 10px;
}
#printer-sections .cta-button img {
  max-width: 22px;
  display: inline-flex;
  margin-bottom: -4px;
}

.hero-wrapper .cta-button a {
  color: #1e293b;
  text-decoration: none;
  background-color: #bae6fd;
  padding: 10px 20px;
  border-radius: 10px;
  display: block;
}
.hero-wrapper .cta-button img {
  max-width: 22px;
  height: unset;
  display: inline-flex;
  margin-bottom: -4px;
}
@media (max-width: 1299px) {
  #why-work .left h1 {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  #why-work .container {
    max-width: 100%;
    margin: 0 10px;
  }
}
@media (max-width: 991px) {
  #why-work .left {
    position: static;
  }
  #why-work .why-work-box {
    flex-wrap: wrap;
    justify-content: center;
  }
  #why-work .left h2 {
    text-align: center;
  }
  #why-work .left h1 {
    font-size: 38px;
    text-align: center;
  }
  #why-work .left p {
    text-align: center;
    max-width: 100%;
  }
  #why-work .left .cta {
    margin: 0 auto;
  }
  #why-work .right .card:nth-child(even) {
    top: 0;
  }
  #why-work .right {
    gap: 30px 30px;
  }
}

@media (max-width: 767px) {
  .how-it-works-part {
    background-size: cover;
    background-position: center;
  }
  .hero-overlay {
    gap: 1rem !important;
  }
}
@media (max-width: 575px) {
  #why-work .right {
    grid-template-columns: 1fr;
  }
  #why-work .left {
    width: 100%;
  }
}
@media (max-width: 479px) {
  #why-work .left h1 {
    font-size: 26px;
  }
  #why-work .left .cta {
    padding: 10px 15px;
    font-size: 14px;
  }
  #why-work .left h2 {
    font-size: 16px;
  }
  .fixed-call-btn a {
    padding: 7px 7px;
    font-size: 13px;
  }
  .fixed-call-btn img {
    max-width: 15px;
  }
  #printer-sections h4 {
    font-size: 20px;
  }
  #printer-sections .big {
    font-size: 16px;
  }
  #printer-sections .printer-sections-box {
    padding: 10px 0 40px;
  }
  /* .hero-overlay h1 {
    padding-top: 30px;
  } */
  .hero-overlay {
    gap: 0.4rem !important;
  }
  .hero-overlay p {
    margin: 0;
  }
  .hero-overlay p br {
    display: none;
  }
  .hero-wrapper .cta-button a {
    font-size: 14px;
  }
  .how-it-works-part {
    padding: 10px 0;
  }
}
