@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Pacifico&family=Poppins&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "Source Sans 3", sans-serif;
}

/* Logo / branding font */
.logo-text {
    font-family: "Poppins", "Source Sans 3", sans-serif;
}

.logo-img {
  height: 120px; /* adjust as needed */
  width: auto;
  display: block;
}


/* CSS Variables */
:root{
    /* Colours */
    --white-color: #fff;
    --dark-color: #3428dd;
    --primary-color: #1fa2b9;
    --secondary-color: #cbda00;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;

    /* Font size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Font weight */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;

    /* Site max width */
    --site-max-width: 1300px;
}

html {
    scroll-behavior: smooth;
}

/* styling for the whole site */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    width: 100%;
}

.section-content{
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.section-title {
    text-align: center;
    padding: 60px 0 100px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

/* Navbar styling */
header{
    position: fixed;
    width: 100%;
    z-index: 5;
    background: var(--primary-color);

}

header .navbar{
    display: flex;
    padding: 6px 24px;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;

    
}

.navbar h2,
.navbar ul {
  margin: 0;
  padding: 0;
}


.navbar .nav-logo .logo-text{
    color: var(--white-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu {
    display: flex;
    gap: 10px;
}

.navbar .nav-menu .nav-link{
    color: var(--white-color);
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m) ;
    padding: 6px 12px;
    transition: 0.3s ease;
}


.navbar .nav-menu .nav-link:hover{
    color: var(--primary-color);
    background: var(--secondary-color);
}
.navbar :where(#menu-close-button, #menu-open-button) {
    display: none;
}

/* hero section styling */

.hero-section {
    min-height: 100vh;
    background: var(--primary-color);
    padding-top: 110px;
}

.hero-section .section-content{
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white-color);
    justify-content: space-between;
}

.hero-details {
    position: relative;
    z-index: 2;
}


.hero-section .hero-details .title{
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
    font-family: "Pacifico", cursive;
}

.hero-section .hero-details .subtitle{
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.hero-section .hero-details .description{
     max-width: 70%;
    margin: 24px 0 40px;
    font-size: var(--font-size-m);
    color: #ffffff; /* pure white */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); /* adds contrast */
    line-height: 1.6;
}

.hero-section .hero-details .buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.hero-section .hero-details .button {
   background: linear-gradient(90deg, #25D366, #128C7E); /* WhatsApp green gradient */
    color: #fff;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.4);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.button.request-ride:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(18, 140, 126, 0.6);
}

.hero-section .hero-details .button:hover,
.hero-section .hero-details .contact-us
{
    background: transparent;
    color: #fff;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-decoration: none;

}

.hero-section .hero-details .contact-us:hover{
     background: #fff;
    color: #128C7E;
    transform: scale(1.05)
}

.hero-section .hero-image-wrapper{
    max-width: 500px;
    margin-right: 30px;
}

.button.request-ride i {
    font-size: 1.2rem;
}
/* About  section styling */
.about-section {
   padding: 120px 0;
   background: var(--light-pink-color);

}

.about-section .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
}

.about-section .about-details .section-title {
    padding: 0;
}

.about-section .about-details{
    max-width: 50%;
}

.about-section .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);

}

.about-section .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-section .social-link-list .social-link {
    color: var(--primary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

.about-section .social-link-list .social-link:hover{
    color: var(--secondary-color);
}

/* service section styling */
.service-section {
    color: var(--white-color);
    background: var(--primary-color);
    padding: 50px 0 100px;
}


.service-section .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 110px;
    align-items: center;
    justify-content: space-between;
}

.service-section .service-list .service-item {
    display: flex;
    align-items: center;
    text-align: center; 
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 3 - 110px);
}


.service-section .service-list .service-item .service-image {
    max-width: 83%;
    aspect-ratio: 1;
    margin-bottom: 15px;
    object-fit: contain;
    
} 

.service-section .service-list .service-item .name {
    margin: 12px 0;
    font-size: var(--font-size-l);
    font-weight: var(--font-weight-semibold);
}

.service-section .service-list .service-item {
    font-size: var(--font-size-m);
}


/* Testimonials section styling */
.testimonials-section {
    padding: 50px 0 100px;
    background: var(--light-pink-color);

}

.testimonials-section .swiper {
    overflow: hidden;
    margin: 0 60px 50px;
}

.testimonials-section .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-section .testimonial {
    user-select: none;
    display: flex;
    padding: 30px 20px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    
    
}

.testimonials-section .testimonial .user-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: var(--border-radius-circle);
}

.testimonials-section .testimonial .name {
    margin-bottom: 16px;
    font-size: var(--font-size-m);
} 

.testimonials-section .testimonial .feedback {
    line-height: 25px;
}

.testimonials-section .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: var(--secondary-color);
}

.testimonials-section .swiper-slide-button {
    margin-top: -50px;
    color: var(--secondary-color);
    transition: 0.3s ease;
}


.testimonials-section .swiper-slide-button:hover {
    color: var(--primary-color);
}

/* CONTACT SECTION */
.contact-section {
  padding: 100px 20px;
  background: linear-gradient(135deg,#1fa2b9, #02252b);
  padding-top: 60px;
}

.section-title {
  margin-bottom: 12px;  
}

.contact-section .section-title {
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 10px;
  margin-top: 0;
}

.contact-intro {
    margin-bottom: 40px;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
}

.contact-intro h3 {
    font-size: 2rem;
    color: #cbda00;
    margin-bottom: 12px;
    font-weight: 600;
    margin-top: 0;
}

.contact-intro p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #e5e7eb;
}

.contact-intro p span {
    display: block;
    margin-top: 10px;
    font-weight: 500;
    color: #ffffff;
}


.contact-section .section-content {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  padding: 60px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.15);
}

/* LEFT SIDE */
.contact-info-list {
  list-style: none;
  padding: 0;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  font-size: 1.05rem;
  color: #334155;
}

.contact-info i {
  width: 42px;
  height: 42px;
  background: #cbda00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
}

.contact-info {
  color: #e5e7eb;
}

.contact-info p {
  color: #e5e7eb;
}

.contact-form h3,
.contact-section .section-title {
  color: #fff;
}


/* RIGHT SIDE FORM */
.contact-form {
  display: flex;
  flex-direction: column;
}

.form-input {
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 1rem;
  outline: none;
  transition: .3s;
}

.form-input {
  background: rgba(255,255,255,.85);
}

.form-input:focus {
  border-color: #cbda00;
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}

textarea.form-input {
  height: 140px;
  resize: none;
}

.submit-button {
  padding: 14px;
  border: none;
  background: #02252b;
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: .3s;
}

.submit-button:hover {
  background: #cbda00;
  transform: translateY(-2px);
}

/* Notification box */
.form-status {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  display: none; /* hidden by default */
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}

/* Success message */
.form-status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  transform: translateY(-10px);
}

/* Error message */
.form-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  transform: translateY(-10px);
}

/* Show animation */
.form-status.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}


/* MOBILE */
@media (max-width: 900px) {
  .contact-section .section-content {
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }
}


/* Footer section styling */
.footer-section {
    padding: 20px 0;
    background-color: #02252b;
}

.footer-section .section-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-section :where(.copyright-text, .policy-link) {
    color: var(--white-color);
    transition: 0.2s ease;
}

.footer-section :where(.social-link) {
    color: var(--primary-color);
    transition: 0.2s ease;
}

.footer-section .social-link-list {
    display: flex;
    gap: 25px;
}

.footer-section .social-link-list .social-link {
    font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover,
.footer-section .policy-text .policy-link:hover {
    color: var(--secondary-color);
}

.footer-section .policy-text .separator {
    margin: 0 5px;
    color: var(--white-color);
}

/* ===== FOOTER BUTTONS FINAL FIX ===== */

.footer-section .foot-menu {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-section .foot-menu li {
    list-style: none;
}

.footer-section .foot-menu li a {
    background: #0b3b44;
    color: #fff !important;

    padding: 14px 22px;

    border-radius: 14px;

    display: block;

    font-size: 15px;
    font-weight: 500;

    transition: 0.35s ease;

    border: 2px solid transparent;
}

/* HOVER */
.footer-section .foot-menu li a:hover {
    background: linear-gradient(135deg,#1fa2b9,#1fa2b9);

    transform: translateY(-8px);

    box-shadow: 0 14px 25px rgba(0,0,0,.35);

    border-color: rgba(255,255,255,.2);
}

/* ================= DRIVER SECTION ================= */
.driver-section {
  padding: 110px 2rem 5rem;
  background: radial-gradient(circle at top, #0f2027, #203a43, #000);
  position: relative;
  overflow: hidden;
  
}

.driver-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(37,99,235,.15), rgba(34,197,94,.15));
  z-index: 0;
}

.driver-section .section-content {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
  z-index: 1;
}

/* Card */
.driver-details {
  padding: 3rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* Headings */
.driver-details .title {
  font-size: 3rem;
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  color: transparent;
}

.driver-details .subtitle {
  color: #e5e7eb;
  margin: .8rem 0 1.5rem;
  font-size: 1.4rem;
}

/* Text */
.driver-details .description,
.driver-details p1 {
  color: #cbd5e1;
  line-height: 1.7;
  display: block;
  margin-bottom: 1rem;
}

/* Buttons */
.driver-details .buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.driver-details .button {
  padding: .9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .4px;
  transition: all .3s ease;
}

.driver-details .request-ride {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 0 20px rgba(34,197,94,.5);
}

.driver-details .contact-us {
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
}

.driver-details .button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

/* Image */
.hero-image-wrapper {
  position: relative;
  text-align: center;
}

.driver-image {
  width: 100%;
  max-width: 460px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.6));
  margin-top: -40px;
}

/* ===== Background Shapes ===== */
.driver-section .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
  animation: moveShape 20s linear infinite;
  z-index: 0;
}

.driver-section .shape.one {
  width: 300px;
  height: 300px;
  background: #22c55e;
  top: 10%;
  left: 5%;
}

.driver-section .shape.two {
  width: 260px;
  height: 260px;
  background: #38bdf8;
  bottom: 15%;
  right: 10%;
  animation-delay: -8s;
}

.driver-section .shape.three {
  width: 200px;
  height: 200px;
  background: #a855f7;
  top: 50%;
  right: 40%;
  animation-delay: -14s;
}

/* ===== Driver Info Boxes ===== */
.driver-box {
  margin-top: 2.5rem;
  padding: 1.8rem;
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 0 20px rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
}

.driver-box h4 {
  margin-bottom: .8rem;
  font-size: 1.3rem;
  color: #38bdf8;
}

.driver-box p {
  color: #cbd5e1;
  margin-bottom: .8rem;
  
}

/* Lists */
.driver-list {
  list-style: none;
  padding: 0;
  margin: .8rem 0;
}

.driver-list li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: .6rem;
  color: #e5e7eb;
}

.driver-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
}

/* Note */
.driver-box .note {
  margin-top: .8rem;
  font-style: italic;
  color: #a5b4fc;
}

@keyframes moveShape {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(40px,-60px) scale(1.1); }
  100% { transform: translate(0,0) scale(1); }
}


/* Animation */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

/* Responsive */
@media (max-width: 900px) {
  .driver-section .section-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .driver-details {
    padding: 2rem;
  }

  .driver-details .buttons {
    justify-content: center;
  }
}

@media (max-width: 640px) {

  .driver-box {
    padding: 1.6rem 1.4rem;
    margin-top: 2rem;
  }

  .driver-box h4 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .driver-box p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
  }

  .driver-list {
    margin: 1rem 0;
  }

  .driver-list li {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0.85rem;
    padding-left: 1.9rem;
  }

  .driver-list li::before {
    top: 0.15em;
  }

  .driver-box .note {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
  }

  .driver-details {
    padding: 1.6rem;
  }
}


@media (max-width: 768px) {

  /* Card spacing */
  .driver-details {
    padding: 1.6rem;
    border-radius: 18px;
  }

  /* Headings scale */
  .driver-details .title {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .driver-details .subtitle {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  /* Text breathing room */
  .driver-details .description,
  .driver-details p1,
  .driver-box p,
  .driver-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    word-break: normal;
  }

  /* Driver box spacing */
  .driver-box {
    padding: 1.3rem;
  }

  .driver-box h4 {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  /* Prevent narrow cards */
  .driver-box,
  .driver-details {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}





/* responsive media query for max width 900px */
@media screen and (max-width: 900px){
    :root {
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;

    }
    body.show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0,0,0,0.2);

    }
   /* ===== Mobile Hamburger & Close Buttons ===== */
.navbar :where(#menu-close-button, #menu-open-button) {
    display: block;
    font-size: var(--font-size-l);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.navbar #menu-open-button {
    color: var(--white-color);
}

.navbar #menu-open-button:hover {
    transform: rotate(90deg);
    color: var(--secondary-color);
}
/* Default: show (desktop) */
.navbar #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: var(--font-size-l);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.navbar #menu-close-button:hover {
    transform: rotate(90deg);
    color: var(--secondary-color);
}

/* Hide on mobile 
@media (max-width: 767px) {
    .navbar #menu-close-button {
        display: none;
    }
}
*/

/* ===== Mobile Slide-in Menu ===== */
.navbar .nav-menu {
    position: fixed;
    top: 0;
    left: -320px;              /* hidden offscreen */
    width: 320px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;

    /* Unique duotone gradient */
    background: linear-gradient(#0f2027, #0b80a7, #000); /* purple + electric blue */
    
    /* Smooth shadow and subtle glow */
    box-shadow: 4px 0 25px rgba(142, 68, 173, 0.6);
    

    /* Slide + fade animation */
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.4s ease,
                transform 0.4s ease;
    
    opacity: 0;
    transform: translateX(-20px);
    z-index: 999;
}

/* Show menu with slide + fade effect */
body.show-mobile-menu .navbar .nav-menu {
    left: 0;
    opacity: 1;
    transform: translateX(0);
}

/* Show menu when toggled */
body.show-mobile-menu .navbar .nav-menu {
    left: 0;
}

/* ===== Mobile Menu Links ===== */
.navbar .nav-menu {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

.navbar .nav-menu .nav-link {
    display: block;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

.navbar .nav-menu .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--primary-color);
  z-index: -1;
  transition: width 0.3s ease;
  border-radius: 12px;
}

.navbar .nav-menu .nav-link:hover {
  color: white;
}

.navbar .nav-menu .nav-link.active {
  background: var(--primary-color);
  color: white;
}
    
.hero-section {
    padding-top: 120px;
    }


    .hero-section .section-content{
        gap: 40px;
        text-align: center;
        padding: 20px;
        flex-direction: column;
        justify-content: center;
    }

    .hero-section .hero-details :is(.subtitle, .description),
     .about-section .about-details {
      max-width: 100%;
    }

    .hero-section .hero-details .buttons {
        justify-content: center;
    }

    .hero-section .hero-image-wrapper img {
    width: 85%;
    height: auto;
    object-fit: contain;
    }


    .hero-section .hero-image-wrapper{
        max-width: 100%;
        width: 100%;
        margin: 0;
        display: flex;
        justify-content: center;
    }

    .about-section .section-content {
        gap: 70px;
        flex-direction: column-reverse;
    }

    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }

   .service-section .service-list {
     gap: 30px;
    }
   .service-section .service-list .service-item {
    width: calc(100% / 2 - 30px);

    }
    
    .service-section .service-list .service-item .service-image{
        max-width: 200px;
    }
    
    .contact-section .section-content {
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }

}

@media screen and (max-width: 640px) {
     
    .service-section {
    padding: 50px 16px;
    }

    .service-section .service-item {
    padding: 1.4rem 1.3rem;
    border-radius: 18px;
    } 
    

    .service-section .service-list {
     gap: 32px;
    }

    .service-section .service-list .service-item {
     width: 100%;
    }

    .service-section .service-image {
    width: 200px;
    height: auto;
    margin-bottom: 0.6rem;
   }

   .service-section .name {
    font-size: 1.05rem;
    line-height: 1.4;
    margin: 0.5rem 0 0.6rem;
   }

    .service-section .text {
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 100%;
   } 

    .testimonials-section {
        padding: 40px 0 60px;
    }

    .testimonials-section .swiper {
        margin: 0 12px 25px;
    }

    .testimonials-section .swiper-wrapper {
       will-change: transform;
       transform: translate3d(0, 0, 0);
   }

    .testimonials-section .swiper-slide {
        display: flex;
        justify-content: center;
        backface-visibility: hidden;
        transform: translateZ(0);
    }

    .testimonials-section .testimonial {
        max-width: 95%;
        padding: 18px 14px;
        border-radius: 16px;
        min-height: 420px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: none;
    }

    .testimonials-section .testimonial .user-image {
        object-fit: cover;
        display: block;
    }


    .testimonials-section .testimonial .user-image {
        width: 150px;
        height: 150px;
        margin-bottom: 17px;
    }

    .testimonials-section .testimonial .name {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .testimonials-section .testimonial .feedback {
        font-size: 0.9rem;
        line-height: 22px;
        max-width: 280px;
    }

    .testimonials-section .swiper-pagination {
        bottom: -2px;
    }

    .testimonials-section .swiper-slide-button {
        display: none;
    }

    .testimonials-section .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 5px !important;
        opacity: 0.4;
        background: var(--secondary-color);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .testimonials-section .swiper-pagination-bullet-active {
        opacity: 1;
        transform: scale(1.4);
    }
    
    .testimonials-section .swiper-pagination {
        position: relative;
        margin-top: 18px;
        bottom: 0;
    }
    .footer-section .section-content {
        flex-direction: column;
        gap: 20px;

    }

    

}



