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

.logo {
  height: 35px;
  cursor: pointer;
}

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

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

/* Colors */
:root {
  --red-primary: #F04A23;
  --orange-accent: #F97316;
  --navy-dark: #1E3A8A;
  --blue-dark: #0B243F;
  --gray-light: #F9FAFB;
  --gray-medium: #6B7280;
  --white: #FFFFFF;
  --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;
  text-decoration: none;
}

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

/* Services Dropdown */
.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/HeroSection.jpg") center/cover no-repeat;
  color: white;
  padding: 6.5rem 0;
  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(--red-primary), rgba(0, 0, 255, 0));
  padding: 2rem;
  max-height: 15rem;
  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-slogan {
  font-weight: 700;
}

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

.tabs {
  display: flex;
  margin-bottom: 1.5rem;
  border-radius: 2rem;
  border: 1px solid rgb(183, 183, 183);
  background: #F3F4F6;
}

.tab-btn {
  flex: 1;
  padding: 0.75rem;
  background: none;
  border: none;
  border-radius: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.tab-btn:first-child {
  border-radius: 2rem 0 0 2rem;
}

.tab-btn:last-child {
  border-radius: 0 2rem 2rem 0;
}

.tab-btn.active {
  background: black;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.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: rgb(8, 166, 8);
  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);
}

/* Info */
.info-header {
  text-align: center;
  font-size: small;
  padding-top: 40px;
}

.info-header .sub-header {
  font-weight: 400;
}

.info-header .sub-headertwo {
  font-weight: 500;
  border-bottom: 4px solid #FF3131;
  display: inline-block;
}

.info-header .sub-headertwo span {
  color: #FF3131;
}

.info-container {
  align-items: center;
}

.info-container .info-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  padding-top: 5rem;
}

.item {
  max-width: 200px;
}

.item .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-container .icon {
  background-color: #FF3131;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-container .icon i {
  color: white;
  font-size: x-large;
}

.text-container {
  text-align: center;
}

.text-container .header-number {
  font-size: 40px;
  font-weight: 400;
  color: #FF3131;
}

.text-container .header-label {
  font-size: 20px;
  font-weight: 400;
  color: #FF3131;
}

/* location */
.location-header {
  text-align: center;
  padding-top: 6rem;
}

.location-header h1 {
  font-size: 25px;
  font-weight: 400;
  display: inline-block;
  border-bottom: 4px solid #FF3131;
}

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

.image-div {
  padding-inline: 9rem;
  padding-block: 4rem;
}

.image-container {
  display: flex;
  justify-content: space-between;
}

.img-box {
  width: 15rem;
  height: 30rem;
  overflow: hidden;
  background-color: #6B7280;
  position: relative;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

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

.overlay-text {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 500;
  padding: 0.5rem 4rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  text-align: center;
}

.overlay-text span {
  color: #666666;
}

.img-box:hover .overlay-text {
  opacity: 1;
}

/* 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(--navy-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-wrapper {
  background: #f0f0f0;
  position: relative;
  z-index: 1;
}

.newsletter {
  background: #F15627;
  color: white;
  text-align: center;
}

.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;
  padding-top: 15px;
}

/* 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;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    display: none;
  }

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

  .info-container {
    align-items: center;
  }

  .info-container .info-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 5rem;
  }

  .image-div {
    padding-inline: 3rem;
    padding-block: 4rem;
  }

  .img-box {
    width: 15rem;
    height: 30rem;
    overflow: hidden;
    background-color: #6B7280;
    position: relative;
  }

  .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
  }

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

  .overlay-text {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-weight: 500;
    padding: 0.5rem 4rem;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    text-align: center;
  }

  .overlay-text span {
    color: #666666;
  }

  .img-box:hover .overlay-text {
    opacity: 1;
  }

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

  .service-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-inline: 4rem;
  }

  .bg-temple {
    display: none;
  }

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

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

  .newsletter-form {
    flex-direction: column;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hero {
    display: flex;
    justify-content: center;
    margin: 1rem;
    padding: 1.5rem 0;
    overflow: visible;
    min-height: 0px;
  }

  .hero-left {
    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;
    position: relative;
  }

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

  .shipping-form {
    width: 100%;
    max-width: 24rem;
    padding: 1.5rem;
  }

  .info-header {
    padding-inline: 1rem;
  }

  .info-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding-top: 5rem;
  }

  .location-header {
    padding-inline: 1rem;
  }

  .location-header h1 {
    font-size: 18px;
  }

  .image-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-inline: 1rem;
    gap: 1rem;
  }

  .img-box {
    flex: 0 0 80%;
    scroll-snap-align: center;
    border-radius: 10px;
  }

  .overlay-text {
    opacity: 1;
  }

  .image-container::-webkit-scrollbar {
    display: none;
  }

  .image-div {
    padding-inline: 0;
  }

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

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

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

  .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: 1rem;
  }

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

  .service-container::-webkit-scrollbar {
    display: none;
  }

  .bg-temple {
    display: none;
  }

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

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

  .service-detail {
    width: 100%;
    padding-right: 15px;
  }

  .newsletter {
    margin-top: 1rem !important;
  }

  .footer-container {
    flex-direction: column;
    gap: 2rem;
    margin-inline: 1rem;
  }

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

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

  .nav-menu {
    gap: 1.5rem;
    font-size: 1rem;
  }

  .hero {
    margin: 1rem;
    padding: 3rem 1rem;
    min-height: 400px;
  }

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

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

  .hero-left {
    max-height: 10rem;
    padding: 1rem;
  }

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

  .info-container .info-items {
    flex-wrap: wrap;
    gap: 60px;
  }

  .item {
    max-width: 180px;
  }

  .image-div {
    padding-inline: 3rem;
  }

  .image-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .img-box {
    width: 12rem;
    height: 20rem;
  }

  .service-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .service-one {
    height: 25rem;
    width: 45%;
  }

  .newsletter-submit {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

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

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

html,
body {
  overflow-x: clip;
}
