* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

body {
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */

.navbar {
  width: 100%;
  background: #f5f5f5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.logo {
  position: absolute;
  left: 0px;
  top: 0px;
}
.logo img {
  height: 200px;
  border-radius: 0px 100px 100px 0px;
}

.nav-menu {
  display: flex;
  gap: 30px;
  padding-left: 130px;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #000;
}

.nav-phone {
  font-weight: 600;
  color: #1c2b4d;
}
.nav-phone {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #1c2b4d;
  margin: 4px 0;
  transition: 0.3s;
}

/* ================= HERO ================= */
/* ================= VIDEO HERO ================= */

.video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
  opacity: 0.9;
}

/* DARK OVERLAY */
.video-hero .overlay {
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* TEXT CONTENT */
.video-hero .content {
  color: #fff;
  max-width: 900px;
}

.video-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.video-hero h4 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: bold;
}
@media (max-width: 992px) {
  .video-hero {
    height: 85vh;
  }

  .video-hero h1 {
    font-size: 30px;
  }

  .video-hero h4 {
    font-size: 16px;
  }
}

/* ================= SLIDER ================= */

.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

/* Background images */
.slide:nth-child(1) {
  background-image: url("./assets/e-color-012.jpg");
}

.slide:nth-child(2) {
  background-image: url("./assets/e-color-013.jpg");
}

.slide:nth-child(3) {
  background-image: url("./assets/saps-001.jpg");
}

.slide:nth-child(4) {
  background-image: url("./assets/image-005.jpg");
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Overlay */
.overlay {
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.content h1 {
  font-size: 48px;
  margin-bottom: 10px;
  max-width: 900px;
}
.content h4 {
  font-size: 18px;
  margin-bottom: 10px;
  max-width: 900px;
}

/* Buttons */
/* BUTTON CONTAINER */
.buttons {
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  position: relative;
  /* border-radius: 50px; */
  overflow: hidden;
}

/* BOTH BUTTONS */
.buttons .btn {
  flex: 1;
  padding: 18px 0;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* LEFT SIDE - ORANGE */
.btn-call {
  background: #f4511e;
}

/* RIGHT SIDE - GREEN */
.btn-contact {
  background: #4caf50;
}

/* CENTER CIRCLE */
.buttons::before {
  content: "Or";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f1f1f1;
  color: #666;
  font-weight: 600;
  font-size: 14px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
@media (max-width: 600px) {
  .buttons {
    flex-direction: column;
    border-radius: 10px;
  }

  .buttons::before {
    display: none;
  }

  .buttons .btn {
    padding: 16px 0;
  }
}

.btn:hover {
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .content h1 {
    font-size: 30px;
  }

  .buttons {
    flex-direction: column;
  }

  .hero-slider {
    height: 85vh;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    position: absolute;
    top: 62px;
    right: 0;
    background: #fff;
    width: 250px;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }
  .logo img {
    height: 136px;
  }
}

/* COLUMN 2 LOGO */
.rp-logo-box {
  text-align: center;
  margin-bottom: 30px;
}

.rp-logo-box img {
  max-width: 220px;
  width: 100%;
  height: auto;
}

/* PAYMENT SECTION */
.rp-payment-box {
  text-align: center;
}

.rp-payment-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* PAYMENT ICON GRID */
.payment-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-items: center;
}

.payment-icons img {
  width: 40px;
  height: auto;
  transition: 0.3s;
}

.payment-icons img:hover {
  transform: scale(1.05);
}

/* weeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee */
/* ================= ABOUT SECTION ================= */

.about-section {
  position: relative;
  padding: 100px 8%;
  overflow: hidden;
  color: #1c2b4d;
}

/* PARALLAX BACKGROUND */
.about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./assets/sapaint-002.jpg") center/cover no-repeat fixed;
  /* opacity: 0.08; */
  z-index: 0;
}

/* CONTENT CONTAINER */
.about-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */
.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* RIGHT CONTENT */
.about-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.about-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

/* BUTTONS */
.about-buttons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  background: #1c2b4d;
}

.btn-outline {
  border: 2px solid #000;
  color: #000;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 26px;
  }

  .about-buttons {
    flex-direction: column;
  }

  .about-section {
    padding: 60px 6%;
  }

  /* Disable fixed background on mobile (better performance) */
  .about-bg {
    background-attachment: scroll;
  }
}

/* dwsddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd */
/* ================= WHY CHOOSE US ================= */

.why-section {
  padding: 100px 8%;
  background: #f8f9fb;
  text-align: center;
}

.why-title {
  font-size: 38px;
  margin-bottom: 60px;
  color: #1c2b4d;
  font-weight: 700;
}

/* GRID */
/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 5 in one row */
  gap: 25px;
  align-items: stretch;
}
.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 2px solid black;
}

.why-card img {
  width: 55px;
  margin: 0 auto 15px;
}

.why-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .why-title {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .why-section {
    padding: 60px 6%;
  }
}
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* dddddddwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww */
/* ================= SERVICES SECTION ================= */

.services-section {
  padding: 100px 8%;
  background: #ffffff;
  text-align: center;
}

.services-title {
  font-size: 38px;
  margin-bottom: 60px;
  color: #1c2b4d;
  font-weight: 700;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s ease;
  display: block;
}

/* OVERLAY */
.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
  text-align: left;
  transition: 0.4s ease;
}

.service-overlay h3 {
  font-size: 20px;
  margin: 0;
}

/* HOVER EFFECT */
.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover .service-overlay {
  background: linear-gradient(to top, rgba(44, 109, 164, 0.9), transparent);
}
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 220px;
  }

  .services-section {
    padding: 60px 6%;
  }

  .services-title {
    font-size: 28px;
  }
}
/* feeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeefeeefe */
/* ===== WORKFLOW SECTION ===== */

.workflow-area {
  background: #f3f3f3;
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.workflow-heading {
  font-size: 42px;
  font-weight: 500;
  color: #333;
  margin-bottom: 50px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, [col-start] 1fr);
  grid-column: col-start / span 4;
  gap: 45px 30px;
  justify-items: center;
}

/* GRID */
/* move second row to center */
.workflow-card:nth-child(5) {
  grid-column: 1 / span 2;
}

.workflow-card:nth-child(6) {
  grid-column: 3 / span 3;
}

.workflow-card:nth-child(7) {
  grid-column: 2 / span 2;
}

.wf-icon {
  width: 140px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 55% 45% 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf-icon img {
  width: 100px;
}

/* COLORS */

.workflow-card h3 {
  font-size: 20px;
  color: #444;
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-card {
    grid-column: auto !important;
  }
}

@media (max-width: 576px) {
  .workflow-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  /* .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  } */

  .workflow-heading {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  /* .workflow-grid {
    grid-template-columns: 1fr;
  } */

  .wf-icon {
    width: 120px;
    height: 105px;
  }

  .workflow-area {
    padding: 50px 15px;
  }
}

/* dwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww */
/* ================= PROCESS SECTION ================= */

.process-section {
  padding: 100px 8%;
  background: #f8f9fb;
  text-align: center;
}

.process-title {
  font-size: 38px;
  margin-bottom: 60px;
  font-weight: 700;
  color: #1c2b4d;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 in one line */
  gap: 30px;
}

/* CARD */
.process-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  border: 2px solid black;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* IMAGE */
.process-card img {
  width: 25%;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* TITLE */
.process-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #1c2b4d;
}

/* TEXT */
.process-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}
@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-title {
    font-size: 28px;
  }

  .process-section {
    padding: 60px 6%;
  }
}

/* ddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd */
/* MAIN FOOTER */
.rp-footer {
  background: #f3f3f3;
  font-family: "Poppins", sans-serif;
  color: #1c2b4d;
  border-top: 2px solid #000;
}

/* TOP WRAPPER */
.rp-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.rp-wrapper .rp-block {
  padding: 60px 40px;
  border-right: 2px solid #000;
}

.rp-wrapper .rp-block:last-child {
  border-right: none;
}

/* BRAND */
.rp-brand {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.rp-brand img {
  width: 230px;
  /* margin-right: 12px; */
}

.rp-brand-text h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
}

/* TEXT */
.rp-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* HEADINGS */
.rp-block h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* LINKS */
.rp-links ul {
  list-style: none;
  padding: 0;
}

.rp-links ul li {
  margin-bottom: 12px;
}

.rp-links ul li a {
  text-decoration: none;
  color: #1c2b4d;
  font-weight: 500;
  transition: 0.3s;
}

.rp-links ul li a:hover {
  color: #f4b400;
}

/* SUBURBS */
.rp-areas {
  color: #f4b400;
  font-weight: 500;
  margin-bottom: 25px;
}

/* SOCIAL */
.rp-social {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: center;
  justify-items: center;
  margin-top: 20px;
}

.rp-social a {
  display: block;
  width: 100%;
  max-width: 90px;
}

.rp-social img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.rp-social img:hover {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .rp-social {
    grid-template-columns: repeat(3, 1fr);
  }
  .rp-social img {
    width: 78%;
    height: auto;
  }
}
@media (max-width: 576px) {
  .rp-social {
    grid-template-columns: repeat(2, 1fr);
  }
  .rp-social img {
    width: 50%;
    height: auto;
  }
}

/* CONTACT ROW */
/* CONTACT TABLE SECTION */
.rp-contact-table {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.rp-contact-cell {
  display: table-cell;
  width: 33.33%;
  padding: 40px;
  text-align: center;
  vertical-align: middle;
  border-right: 2px solid #000;
}

.rp-contact-cell:last-child {
  border-right: none;
}

.rp-contact-cell h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.rp-contact-cell p {
  margin: 6px 0;
  color: #555;
}

.rp-highlight {
  color: #f4b400;
  font-weight: 600;
}

/* BOTTOM BAR */
.rp-bottom-bar {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.rp-bottom-bar strong {
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  /* Top Section Stack */
  .rp-wrapper {
    grid-template-columns: 1fr;
  }

  .rp-wrapper .rp-block {
    border-right: none;
    border-bottom: 2px solid #000;
    padding: 40px 20px;
    text-align: center;
  }

  .rp-wrapper .rp-block:last-child {
    border-bottom: none;
  }

  /* Contact Table Stack */
  .rp-contact-table {
    display: block;
  }

  .rp-contact-cell {
    display: block;
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #000;
    padding: 30px 20px;
  }

  .rp-contact-cell:last-child {
    border-bottom: none;
  }

  .rp-brand {
    justify-content: center;
  }
}

.contact-icons {
  position: fixed;
  right: 10px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.contact-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* COLORS */
.facebook {
  background: #1877f2;
}
.linkedin {
  background: #0a66c2;
}
.instagram {
  background: #e4405f;
}
.sms {
  background: #28a745;
}
.google {
  background: #db4437;
}

/* HOVER */
.contact-icon:hover {
  transform: translateY(-5px) scale(1.08);
}
@media (max-width: 576px) {
  .contact-icons {
    right: 15px;
    bottom: 15px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .google-rating img {
    width: 50%;
    margin-top: 10px;
  }
}

.google-rating img {
  width: 100%;
  margin-top: 10px;
}

/* ===== ABOUT SECTION ===== */
/* SECTION */
.paint-about-section {
  background: #fafafa;
  padding: 90px 20px;
}

.paint-container {
  max-width: 900px;
  margin: auto;
}

/* INTRO */
.paint-intro {
  text-align: center;
  margin-bottom: 60px;
}
.paint-intro h1 {
  font-size: 45px;
  color: #c0392b;
  margin-bottom: 15px;
  line-height: 1.3;
  text-decoration: underline;
}

.paint-intro h2 {
  font-size: 38px;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.3;
}

.paint-intro p {
  font-size: 18px;
  color: #555;
}

/* BLOCK STYLE */
.paint-block {
  position: relative;
  padding-left: 25px;
  margin-bottom: 45px;
  border-left: 4px solid #c0392b;
}

.paint-block h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
}

.paint-block p {
  color: #555;
  line-height: 1.8;
}

/* CTA */
.paint-cta {
  text-align: center;
  margin-top: 70px;
}

.paint-cta h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}

.paint-cta p {
  color: #555;
  margin-bottom: 25px;
}

.paint-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #c0392b;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.paint-btn:hover {
  background: #a93226;
}
@media (max-width: 768px) {
  .paint-intro h2 {
    font-size: 28px;
  }

  .paint-block {
    padding-left: 18px;
  }

  .paint-block h3 {
    font-size: 20px;
  }

  .paint-about-section {
    padding: 60px 15px;
  }
}
/* SECTION */
.testimonials-section {
  background: #f7f7f7;
  padding: 90px 20px;
}

.testimonials-container {
  max-width: 900px;
  margin: auto;
  margin-top: 30px;
}

/* TITLE */
.testimonials-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
  color: #222;
}

/* CARD */
.testimonial-item {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
}

/* HEADER */
.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial-header h4 {
  margin: 0;
  font-size: 20px;
  color: #222;
}

/* STARS */
.stars {
  color: #f4b400;
  font-size: 18px;
  letter-spacing: 2px;
}

/* META */
.review-meta {
  display: block;
  font-size: 14px;
  color: #888;
  margin: 8px 0 14px;
}

/* TEXT */
.testimonial-item p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}
@media (max-width: 768px) {
  .testimonials-title {
    font-size: 28px;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .testimonial-item {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 60px 15px;
  }
}

.contact-section {
  background: #f5f7fb;
  padding: 70px 20px;
}

.contact-container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-title {
  font-size: 32px;
  color: #0b3d91;
  margin-bottom: 10px;
}

.contact-subtitle {
  margin-bottom: 30px;
  color: #555;
}

.contact-info {
  margin-bottom: 30px;
  line-height: 1.8;
  color: #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  background: #000;
  color: white;
  border: none;
  padding: 15px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-container {
    padding: 25px;
  }

  .contact-title {
    font-size: 26px;
  }
}
