/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #000000;
  padding: 20px;
  overflow-x: hidden;
}

/* Header Section */
/* Default sticky navigation bar style */
header {
  background-color: #2daf5a;
  color: white;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease; /* Smooth transition */
}

/* New style when scrolled */
header.scrolled {
  background-color: #2395b5 ;  /* Change this to your desired color */
}

.logo-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 50px;
}

.logo-title {
  display: flex;
  align-items: center;
}

.logo {
  width: 70px;
  height: auto;
  margin-right: 15px;
}

h1 {
  color: #FFFACD;
  margin-left: 25px;
  text-align: left;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 18px;
  
}

nav a {
  color: #2C3E50;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #114276;
}

/* General Section Styling */
section {
  margin: 40px 0px 60px 0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background-color: #ffffff;
  color: #000000;
}

section h2 {
  margin-bottom: 10px;
  color: #000000;
}

/* Contact Section Styling */
.contact-us {
  background-color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #000;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.line-left, .line-right {
  border: none;
  height: 1px;
  background-color: #000;
  width: 40%;
  margin: 10px auto;
}

h2 {
  font-size: 36px;
  font-weight: bold;
}

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

/* Left Section */
.contact-left {
  flex: 1;
  padding: 20px;
  min-width: 220px;
}

.nav-btn:hover {
  background-color: #444;
}

.product-list {
  list-style: none;
  padding-left: 0;
}

.product-list li {
  margin: 8px 0;
}

.product-list a {
  text-decoration: none;
  color: #000;
}

.product-list a:hover {
  text-decoration: underline;
}

/* Center Section */
.contact-center {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.contact-center h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-center h4 {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}

/* Right Section */
.contact-right {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.contact-right h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #000;
  border-radius: 4px;
  font-size: 16px;
}

.contact-right input[type="submit"] {
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-right input[type="submit"]:hover {
  background-color: #444;
}

/* Responsive */


/* Hero Section */
#hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.hero-image {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.05);
}



/* Responsive Design */


html {
  scroll-behavior: smooth;
}

/* slides css Section */
.slideshow-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  background-color: #f5f5f5; /* Optional background */
}

.slideshow {
  width: 1633px;
  height: 656px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slideshow img {
  width: 1633px;
  height: 656px;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
  position: relative;
}

.intro-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

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

.intro-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

.intro-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.intro-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.intro-btn:hover {
  background-color: #0056b3;
}

/*about css */
.about-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #f0f4f8;
  text-align: center;
}

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

.about-content h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.about-image-side {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1 1 40%;
}

.about-text {
  flex: 1 1 55%;
  text-align: left;
}

.about-text p {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-full p {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
}

.highlight-block {
  background-color: #e8f5e9; /* Light green highlight */
  border-left: 6px solid #168a3f;
  padding: 30px;
  margin-top: 40px;
  border-radius: 12px;
}

.highlight-heading {
  color: #168a3f;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
}

.highlight-text {
  font-size: 17px;
  color: #2e3b2f;
  line-height: 1.8;
}


/* testimonial reviews*/
.testimonials-section {
  background-color: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
}

.testimonial {
  background-color: #000000;
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.testimonial p {
  font-style: italic;
  color: #555;
}

.testimonial h3 {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

/* ctav section */
.cta-section {
  background-color: #2395b5;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-btn {
  padding: 15px 30px;
  background-color: #ffbf00;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #e6a700;
}

/* Footer css */
.footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
}

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

.footer ul li {
  display: inline;
  margin: 0 15px;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

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

/* become section */
.partner-section {
  display: flex;
  min-height: 100vh;
  background-color: #2395b5; /* Blue background */
  color: white;
}

.partner-image {
  flex: 1;
  background: url('png/lg.png') no-repeat center center;
  background-size: cover;
}

.partner-form {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partner-form h2 {
  margin-bottom: 30px;
}

.partner-form form {
  display: flex;
  flex-direction: column;
}

.partner-form input,
.partner-form textarea {
  margin-bottom: 20px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.partner-form input:focus,
.partner-form textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #ffffff;
}

.partner-form button {
  padding: 12px;
  background-color: #0056b3;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.partner-form button:hover {
  background-color: #003e80;
}




/* manufacturing section */
/* Factory Gallery Section */
.factory-gallery {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.factory-gallery h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #222;
}

.factory-images-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.factory-images-row img {
  width: 23%; /* 4 images per row with spacing */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.factory-description {
  margin-top: 30px;
  font-size: 18px;
  color: #444;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


/* Manufacturing Section */
.manufacturing-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.manufacturing-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #222;
}

.process-rows {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-item {
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: left;
}

.process-item img {
  width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.process-item p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  flex: 1;
}





.machinery-section {
  padding: 40px 20px;
  text-align: center;
}

.machinery-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.machinery-images img {
  width: 45%;
  border-radius: 10px;
}

.machinery-text {
  max-width: 800px;
  margin: 0 auto;
}

.materials-used {
  text-align: center;
  padding: 40px 20px;
}

.materials-used img {
  width: 60%;
  border-radius: 10px;
  margin-bottom: 20px;
}

    /* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Product layout */
.product-layout {
  display: flex;
  min-height: 80vh;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background: linear-gradient(to bottom, #d6f2db, #c1ebce);
  color: #065f2c;
  padding: 20px 10px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}


.sidebar h2 {
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
}

/* Sidebar Buttons */
.nav-item {
  padding: 12px 15px;
  margin-bottom: 10px;
  background-color: transparent;
  border: 2px solid #b4dfc2;
  border-radius: 6px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  color: #065f2c;
}

.nav-item:hover,
.nav-item.active {
  background-color: #b4dfc2;
  border-color: #168a3f;
}






.product-content {
  flex-grow: 1;
  padding: 30px;
  background: #f9fdfb;
}

.product-detail {
  display: none;
  animation: fadeIn 0.5s ease;
}

.product-detail.active {
  display: block;
}

.product-box {
  background: #d6f2db;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-box img {
  max-width: 300px;
  border-radius: 8px;
}

.product-info {
  flex: 1;
  min-width: 280px;
}

.product-info h2 {
  color: #065f2c;
  margin-bottom: 10px;
}

.product-info ul {
  margin-left: 20px;
  margin-bottom: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}




.download-btn {
  display: inline-block;
  margin: 15px 0;
  padding: 10px 16px;
  background: #168a3f;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}
.download-btn:hover {
  background: #116b30;
}




.application-gallery {
  margin-top: 25px;
}
.gallery-row {
  display: flex;
  gap: 10px;
}
.gallery-row img {
  width: 30%;
  border-radius: 6px;
  transition: transform 0.3s;
}
.gallery-row img:hover {
  transform: scale(1.05);
}





.product-contact-box {
  margin-top: 30px;
  background: #e7f7eb;
  padding: 20px;
  border-radius: 8px;
}
.product-contact-box form input,
.product-contact-box form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #b4dfc2;
  border-radius: 4px;
}
.product-contact-box button {
  background: #168a3f;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.product-contact-box button:hover {
  background: #116b30;
}





.testimonial-section {
  margin-top: 30px;
}
.testimonial {
  background: #d6f2db;
  padding: 15px;
  border-left: 4px solid #168a3f;
  border-radius: 6px;
  font-style: italic;
}
.testimonial span {
  display: block;
  text-align: right;
  margin-top: 10px;
  font-weight: bold;
  color: #065f2c;
}





.why-choose-us {
  padding: 60px 30px;
  background: #e5f9ec;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #065f2c;
}

.reasons-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.reason-box {
  flex: 1 1 200px;
  max-width: 300px;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.reason-box:hover {
  transform: translateY(-8px);
}

.reason-box img {
  width: 140px;
  margin-bottom: 15px;
}

.reason-box h4 {
  color: #168a3f;
  margin-bottom: 10px;
  font-size: 18px;
}

.reason-box p {
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}










@media (min-width: 769px) {
  nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  nav ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
    list-style: none;
  }

  .hamburger {
    display: none !important;  /* Hide hamburger */
  }

  .logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}





@media (max-width: 768px) {
  .logo-nav-container {
    display: flex;
    gap: 6px;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .hamburger span {
    height: 3px;
    width: 22px;
    background: #2C3E50;
    border-radius: 3px;
  }

  .logo-title {
    display: flex;
    align-items: center;
    gap: 5x;
  }

  .logo {
    width: 60px;
    height: auto;
  }

  .company-name {
    font-size: 23px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    color: #FFFACD;
    line-height: 1;
    margin: 0;
    display: inline-block;
  }

  nav {
    display: none;
  }

nav.mobile-shown {
  display: flex;
  flex-direction: column;
  align-items: stretch;  /* stretch full width */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 9999;
  animation: slideIn 0.3s ease-in-out;
  padding: 60px 20px 20px;  /* pushes content down from top */
}




nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;  /* spacing comes from padding + border */
}


nav ul li a {
  text-decoration: none;
  color: #2C3E50;
  font-size: 18px;
  font-weight: bold;
  padding: 16px 12px;
  border-bottom: 1px solid #ddd;
  display: block;
  text-align: left;
  background-color: #fff;
  transition: background 0.2s ease;
}

nav ul li:last-child a {
  border-bottom: none;  /* remove line on last item */
}

nav ul li a:hover {
  background-color: #f9f9f9;
}

}

@keyframes slideIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


@media (max-width: 768px) {
  .slideshow {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1633 / 656;
    overflow-x: auto;
    display: flex;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .slideshow img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    scroll-snap-align: start;
    object-fit: cover;
  }

  .slideshow-container {
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
    padding: 0;
  }

  .slideshow::-webkit-scrollbar {
    display: none;
  }
}






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

  .about-image-side {
    width: 90%;
    height: auto;
  }

  .about-text {
    text-align: center;
    padding: 0 15px;
  }

  .about-full {
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
  }

  .highlight-block {
  background-color: #f9f9f9;  /* light subtle shade instead of green */
  padding: 20px;
  border-radius: 10px;
  margin: 20px 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.highlight-heading {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2C3E50;
}

.highlight-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  padding: 0 10px;
}





.contact-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px 15px;
}

.contact-left,
.contact-center,
.contact-right {
  width: 100%;
}

.contact-left {
  order: 1;
}

.contact-center {
  order: 2;
  padding: 10px 0;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
}

.contact-right {
  order: 3;
}

/* Nice heading and text styling */
.contact-center h3,
.contact-center h4 {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 6px;
}

.contact-center p {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Keep product list clear */
.contact-left ul {
  font-size: 16px;
  line-height: 1.6;
  padding-left: 20px;
}



@media (max-width: 768px) {
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background-color: #000000;
    color: white;
    text-align: center;
  }

  .footer p {
    margin: 0 0 10px;
    font-size: 13px;
  }

  .footer ul {
    display: flex;
    flex-wrap: nowrap;         /* ❗ key: no wrapping */
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-x: auto;          /* prevents line-breaks */
  }

  .footer ul li a {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;       /* ❗ key: keep each link single-line */
  }
}

}




@media (max-width: 768px) {
  /* Factory Images Section */
  .factory-section {
    padding: 20px 15px;
  }

 @media (max-width: 768px) {
 @media (max-width: 768px) {
  .factory-images-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
  }

  .factory-images-row img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
  }
}





  .factory-text {
    font-size: 16px;
    text-align: justify;
    padding: 0 10px;
    line-height: 1.6;
  }

  /* Process Items */
  .process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }

  .process-item img {
    width: 85%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .process-item p {
    font-size: 16px;
    padding: 0 10px;
    text-align: justify;
  }

  /* Machinery Section */
  .machinery-section {
    padding: 20px 15px;
  }

  .machinery-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .machinery-images img {
    width: 85%;
    height: auto;
    border-radius: 10px;
  }

  .machinery-text {
    font-size: 16px;
    text-align: justify;
    padding: 0 10px;
  }

  /* Materials Section */
  .materials-section {
    padding: 20px 15px;
  }

  .materials-used {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .materials-used img {
    width: 85%;
    height: auto;
    border-radius: 10px;
  }

  .material-text {
    font-size: 16px;
    text-align: justify;
    padding: 0 10px;
  }
}

/* Become Partner Section - Mobile */
.partner-section {
  background-image: none !important; /* hide background logo if it's set there */
  padding-top: 20px;
  text-align: center;
}

/* Make sure logo inside the section is shown clearly */
.partner-section img.partner-logo {
  display: block;
  margin: 0 auto 15px auto;
  width: 100px;
  height: auto;
}

/* Center heading and paragraph */
.partner-section h2,
.partner-section p {
  text-align: center;
  padding: 0 15px;
}

/* Form stays centered */
.partner-form {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}







@media (max-width: 768px) {

  .product-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    padding: 15px;
    box-shadow: none;
    border-bottom: 1px solid #ccc;
  }

  .sidebar h2 {
    font-size: 20px;
  }

  .nav-item {
    font-size: 14px;
    padding: 10px 12px;
  }

  .product-content {
    padding: 15px;
  }

  .product-box {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .product-box img {
    max-width: 100%;
    height: auto;
  }

  .product-info {
    width: 100%;
  }

  .download-btn {
    width: 100%;
    text-align: center;
  }

  .gallery-row {
    flex-direction: column;
  }

  .gallery-row img {
    width: 100%;
  }

  .product-contact-box form input,
  .product-contact-box form textarea {
    font-size: 14px;
    padding: 10px;
  }

  .product-contact-box button {
    width: 100%;
    font-size: 16px;
  }

  .reasons-container {
    flex-direction: column;
    align-items: center;
  }

  .reason-box {
    max-width: 100%;
    width: 100%;
  }

  .testimonial-section {
    padding: 10px 0;
  }

  .testimonial {
    font-size: 14px;
  }

  footer.footer {
    padding: 15px;
    text-align: center;
  }

  footer.footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    list-style: none;
    gap: 10px;
    margin-top: 10px;
  }

  footer.footer ul li {
    margin: 0;
  }

  footer.footer ul li a {
    font-size: 14px;
  }
}
}