* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f0f0f0;
}

.container {
  margin: 0 auto;
  padding: 0px 40px;
}

/* Colors */
:root {
  --red-primary: #F04A23;
  --blue-dark: #0B243F;
  --gray-light: #F9FAFB;
  --gray-medium: #6B7280;
  --white: #FFFFFF;
  --grey-color: #d1d5db;
  --background-color: #f0f0f0;
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.logo {
  height: 2rem;
  cursor: pointer;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}


.nav-link:hover {
  color: var(--red-primary);
}


.no-link-style {
  text-decoration: none;
  color: inherit;
}

.no-link-style:visited {
  color: inherit;
}

.no-link-style:hover {
  color: inherit;
}


.ship-btn {
  color: var(--red-primary);
  background-color: var(--white);
  border: 1px solid var(--red-primary);
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  align-items: center;
}

.ship-btn:hover {
  color: var(--red-primary);
  background-color: #ffd8ce;
  border: 1px solid var(--red-primary);
  transition: 0.4s;
}

/* Services */
.services-wrapper {
  position: relative;
}

.nav-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 500;
  color: var(--text-color, #222);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--red-primary);
}

.services-list {
  list-style: none;
  background-color: var(--background-color, #fff);
  padding: 0.8rem 1.2rem;
  border-radius: 0.6rem;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 2.2rem;
  left: 0;
  z-index: 1000;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.services-list ul {
  margin: 0;
  padding: 0;
}

.services-list li {
  list-style: none;
}

.services-list .list {
  padding: 0.6rem 0.8rem;
  border-radius: 0.4rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.services-list .list a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-color, #333);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.services-list .list:hover {
  background: rgba(240, 74, 35, 0.08);
}

.services-list .list:hover a {
  color: var(--red-primary);
}

.services-wrapper:hover .services-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

/* Hero Section */
.hero {
  background: url("/assets/sarathi_app/images/assets/Warehouse.jpg") center/cover no-repeat;
  color: white;
  padding: 0rem;
  overflow: hidden;
  margin: 2rem;
  border-radius: 2rem;
  position: relative;
  min-height: 600px;
}

.hero .container {
  display: flex;
  justify-content: flex-end;
  height: 100%;
  padding: 0;
  position: relative;
}


.hero-left {
  background: linear-gradient(to right, var(--blue-dark), rgba(0, 0, 255, 0));
  padding: 3rem;
  padding-inline: 4rem;
  position: absolute;
  bottom: 0rem;
  left: 0rem;
}

.hero-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding-right: 6rem;

}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.hero-detail {
  font-size: large;
  font-weight: 400;
  margin-bottom: 1rem;
  max-width: 45rem;
}

.hero-slogan {
  font-weight: 700;
}

.shipping-form {
  background: white;
  width: 30rem;
  color: #333;
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tab-content h1 {
  color: var(--red-primary);
}

.tab-content h2 {
  color: #737B7D;
  font-weight: 400;
  font-size: medium
}

.form-group {
  margin-bottom: 1.5rem;
}

.input-wrapper {
  position: relative;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.input-wrapper .map-icon {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  height: 1.8rem;
  transform: translateY(-50%);
  pointer-events: auto;
  color: rgb(8, 166, 8);
  cursor: pointer;
}

.input-wrapper i {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
  color: var(--gray-medium);
  cursor: pointer;
}

.form-input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 3rem;
  border: 2px solid #E5E7EB;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--red-primary);
}


.btn-primary {
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(to right, var(--red-primary), #FF5959);
  color: var(--white);
  border: none;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:hover {
  background: #EA580C;
}

.form-footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gray-medium);
}

.link {
  color: var(--red-primary);
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

#nav-default {
  color: var(--red-primary);
}

/* Warehousing */
.warehousing {
  padding: 2rem 8rem;
  background: #f0f0f0;
}

.warehousing-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

.warehousing-detail {
  flex: 1 1 45%;
}

.warehousing-title {
  font-size: 2rem;
  font-weight: 600;
  border-bottom: 4px solid var(--red-primary);
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--red-primary);
}

.warehousing-text {
  color: #667B99;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 35rem;
}

.warehousing-image {
  flex: 1 1 45%;
  text-align: center;
}

.warehousing-image img {
  width: 100%;
  max-width: 30rem;
  height: auto;
  border-radius: 10px 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}


/* How It Works */
.how-it-works {
  padding: 6rem 1rem;
  background: #f0f0f0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #222;
}

.text-red {
  color: var(--red-primary);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: center;
}

.second-steps {
  margin-top: 6rem;
  margin-inline: 13rem;
}

.step {
  background: #fff;
  border-radius: 0.6rem;
  padding: 1.5rem;
  text-align: center;
  max-width: 22rem;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.step-img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 0.4rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.step-title span {
  color: var(--red-primary);
  font-weight: 600;
}

.step-desc {
  color: var(--gray-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* Info */
.info-div,
.info-div1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 5px 15px rgba(79, 79, 79, 0.2);
  overflow: hidden;
}

.info-container {
  background-color: #f8f9fb;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-header {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  color: var(--blue-dark);
  border-bottom: 3px solid var(--red-primary);
  display: inline-block;
  margin: 0 auto 2rem;
}

.info-header span {
  color: var(--red-primary);
}

.left-column {
  margin-left: 4rem;
}

.column-header {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--blue-dark);
}

.list-detail {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.list-detail li {
  font-size: 1rem;
  font-weight: 400;
  color: #4a6078;
  display: flex;
  align-items: center;
}

.list-detail i {
  color: var(--red-primary);
  margin-right: 0.6rem;
  font-size: 1.1rem;
}

/* Right Column */
.right-column {
  background: linear-gradient(135deg, var(--red-primary), #b80f0f);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.right-column .heading {
  font-size: 1.8rem;
  font-weight: 600;
}

.right-column .heading-two {
  font-size: 1.4rem;
  font-weight: 500;
}

.right-column .sub-heading {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 32rem;
  margin: 0 auto;
  color: #fefefe;
}

.detailed-box {
  margin-top: 1rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  font-style: italic;
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.detailed-box:hover {
  transform: scale(1.05);
}

.box-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 14rem;
  z-index: 10;
  pointer-events: none;
}

/* Why Us */
.why-us {
  padding: 4rem 5rem;
  text-align: center;
  background: #f0f0f0;
}

.why-header {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--blue-dark);
  display: inline-block;
  border-bottom: 4px solid var(--red-primary);
}

.why-header span {
  color: var(--red-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 3fr));
  gap: 1rem;
}

.why-card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease;
}

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

.why-card h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--blue-dark);
}

.why-card h2 i {
  color: var(--red-primary);
  margin-right: 0.5rem;
}

.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a6078;
}

/* Our Services */
.services-header {
  padding-top: 5rem;
  background: #f0f0f0;
}

.header-one {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
}

.header-one span {
  color: #FF3131;
  font-weight: 500;
}

.header-two {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: #667B99;
}

.service-wrapper {
  padding-inline: 0rem;
  padding-block: 3rem;
  background: #f0f0f0;
}

.service-wrapper,
.newsletter-wrapper {
  position: relative;
}

.bg-temple {
  position: absolute;
  left: 0;
  top: 70%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.service-container {
  display: flex;
  justify-content: space-between;
  padding-inline: 7rem;
}

.service-one {
  height: 25rem;
  width: 19rem;
  background-color: #F4F7FA;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0.1, 0.1, 0.1, 0.1);
  z-index: 50;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

#one:hover,
#two:hover,
#three:hover,
#four:hover {
  border-color: #F04A23;
  transform: translateY(-5px);
}


.service-detail {
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-left: 20px;
}

.service-detail .service-icon {
  background: var(--blue-dark);
  color: #fff;
  font-size: 1.3rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail .service-icon i {
  color: white;
  font-size: large;
}

.service-detail h1 {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.service-detail p {
  color: #667B99;
  font-size: 0.95rem;
  margin: 0.75rem 0 1rem;
  line-height: 1.5;
}

.service-detail ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.service-detail li {
  font-size: 0.9rem;
  color: #667B99;
  margin-bottom: 0.4rem;
  position: relative;
}

.learnMoreBtn {
  background: transparent;
  border: none;
  color: var(--red-primary);
  font-weight: 500;
  cursor: pointer;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.learnMoreBtn button {
  text-align: center;
  color: #292624;
  font-size: medium;
  border: none;
  background-color: #F4F7FA;
  cursor: pointer;
}

.learnMoreBtn:hover {
  color: #b02020;
  transform: translateX(5px);
}

.learnMoreBtn.disabled {
  color: #999;
  cursor: not-allowed;
}

/* Newsletter */
.newsletter {
  background: #F15627;
  color: white;
  text-align: center;
  margin-top: 20rem;
}

.newsletter-inside {
  padding: 30px;
}

.newsletter-submit {
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px
}

.newsletter input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 250px;
}

.newsletter-btn {
  background-color: #0B233F;
  color: white;
  padding: 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #0B233F;
  color: white;
  padding: 40px 20px 10px;
}

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

.footer-logo img {
  height: 35px;
  margin-bottom: 10px;
}

.about-sarathi {
  width: 300px;
  color: #D1D5DB;
}

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

.footer-links a,
.footer-services a {
  color: #D1D5DB;
  text-decoration: none;
  font-size: 16px;
}

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

.footer-contact p {
  list-style: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  color: #D1D5DB;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #ffffff30;
  color: #ccc;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
   .menu-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
  }

  .nav-menu {
    display: none; 
    flex-direction: column;
    font-size: 1.1rem;
    gap: 2.2rem;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 200;
  }

  /* When active */
  .nav-menu.active {
    display: flex;
  }

  .hero {
    display: flex;
    justify-content: center;
    margin: 1rem;
    align-items: center;
  }

  .hero-left {
    padding: 2rem;
    display: none;
  }

  .hero-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.5rem;
  }

  .hero-slogan {
    font-size: 1.1rem;
    font-weight: 500;
  }

  .hero .container {
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .hero-content {
    padding-right: 0rem;
  }

  .shipping-form {
    max-width: 30rem;
    margin: 0 auto;
  }

  .warehousing {
    padding: 2rem 3rem;
    background: #fafafa;
  }

  .warehousing-container {
    gap: 1rem;
  }

  .warehousing-title {
    font-size: 1.5rem;
  }

  .warehousing-image {
    max-width: 18rem;
  }

  .how-it-works {
    padding-top: 0rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .container {
    justify-content: center;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-items: center;
    gap: 2rem;
  }

  .second-steps {
    gap: 2rem;
    margin-top: 2rem;
    margin-inline: 0rem;
  }

  .step {
    text-align: center;
  }

  .box-img {
    display: none;
  }

  .info-div,
  .info-div1 {
    display: flex;
    flex-direction: column;
  }

  .info-header {
    font-size: 1.5rem;
  }

  .list-detail h1 {
    font-size: 0.9rem;
  }

  .left-column {
    margin-inline: 2rem;
  }

  .why-header {
    font-size: 1.5rem;
  }

  .why-us {
    padding: 4rem 3rem;
    text-align: center;
    background: #f9fafc;
  }

  .why-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .services-header {
    padding-top: 1rem;
    padding-inline: 3rem;
  }

  .service-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-inline: 3rem;
  }

  .bg-temple {
    display: none;
  }

  .service-wrapper {
    padding-inline: 0rem;
    justify-content: center;
  }

  .service-one {
    width: 100%;
    height: 25rem;
    background-color: #F4F7FA;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0.1, 0.1, 0.1, 0.1);
  }
}

@media (max-width: 480px) {
  .nav-menu {
    display: none;
  }

  .hero {
    display: flex;
    justify-content: center;
    margin: 1rem;
    align-items: center;
    overflow: visible;
  }

  .warehousing-image{
    display: none;
  }

  .hero-left{
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.95;
    margin-bottom: 0.5rem;
  }

  .hero-slogan {
    font-size: 1.1rem;
    font-weight: 500;
  }

  .hero .container {
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .hero-content {
    padding-right: 0rem;
  }

  .shipping-form {
    max-width: 24rem;
    margin: 0 auto;
  }

  .warehousing {
    padding: 2rem 3rem;
    background: #fafafa;
  }

  .warehousing-container {
    gap: 1rem;
  }

  .warehousing-detail{
    text-align: justify;
  }

  .warehousing-title {
    font-size: 1.5rem;
  }


  .how-it-works {
    padding-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container {
    justify-content: center;
  }

  .steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4rem;
  }

  .second-steps {
    margin-top: 6rem;
    margin-inline: 0rem;
  }

  .step {
    text-align: center;
  }

  .box-img {
    display: none;
  }

  .info-div,
  .info-div1 {
    display: flex;
    flex-direction: column;
  }

  .info-header {
    font-size: 1.5rem;
  }

  .list-detail h1 {
    font-size: 0.9rem;
  }

  .left-column {
    margin-inline: 2rem;
  }

  .why-header {
    font-size: 1.5rem;
  }

  .why-us {
    padding: 4rem 3rem;
    text-align: center;
    background: #f9fafc;
  }

  .why-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .carousel-dotstwo {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 8px;
  }

  .carousel-dotstwo button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .carousel-dotstwo button.active {
    background: var(--red-primary);
  }

  .services-header {
    padding-inline: 3rem;
  }

  .service-container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    overflow-x: auto;  
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
  }
  
  .service-container::-webkit-scrollbar {
    display: none; 
  }

  .bg-temple {
    display: none;
  }

  .service-wrapper {
    padding-inline: 0rem;
    justify-content: center;
  }

  .service-one {
    height: 25rem;
    width: 30rem;
    background-color: #F4F7FA;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0.1, 0.1, 0.1, 0.1);
    scroll-snap-align: center;
  }

  .service-detail p {
    width: 21rem;
  }

  .newsletter {
    margin-top: 1rem;
  }

  .footer-container{
    margin-inline: 1rem;
  }

  .footer-container{
    margin-inline: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }

  /* Hero section */
  .hero {
    margin: 1rem;
    min-height: 450px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-detail {
    font-size: 1rem;
    max-width: 35rem;
  }

  .shipping-form {
    width: 100%;
    max-width: 28rem;
    margin: 1rem auto;
  }

  /* Warehousing */
  .warehousing {
    padding: 2rem 3rem;
  }

  .warehousing-container {
    gap: 2rem;
  }

  .warehousing-title {
    font-size: 1.7rem;
  }

  .warehousing-text {
    font-size: 0.95rem;
  }

  /* How it works */
  .second-steps {
    margin-inline: 3rem;
  }

  /* Why us */
  .why-us {
    padding: 3rem 2rem;
  }

  .why-header {
    font-size: 1.8rem;
  }

  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  /* Services */
  .service-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding-inline: 2rem;
  }

  .service-one {
    width: 16rem;
    height: auto;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .about-sarathi {
    width: 100%;
  }
}


html,
body {
  overflow-x: hidden;
}