:root {
--primary-color: #bd1b2d;

  --secondary-color:#0931be;
  --grey: #6e6e6e;
  --back: #f9f9f9;

  --fontraj: "Rajdhani", sans-serif;
  --fontmon: "Montserrat", sans-serif;
  --fontpop: "Poppins", sans-serif;
  --fontnunito: "Nunito Sans", sans-serif;

  --font-size-base: 16px;
}

body {
  background-color: var(--back);
}
.header {
  display: flex;
  justify-content: center;
  padding-top: 1rem;

  position: absolute;
  top: 0%;
  left: 50%;
}

.navbar {
  background: var(--back);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  position: fixed;
  border-radius: 9rem;
  width: 60%;

  z-index: 9;
  height: 5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.navbar-brand img {
  height: 80px;
  width: auto;
}
.navbar.sticky.slide-down {
  transform: translateY(-100%);
}

.navbar.sticky.slide-up {
  transform: translateY(0);
}
.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  transform: translateY(0);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0rem !important;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.5) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(0px);
}

.nav-item {
  font-family: var(--fontnunito);
  font-weight: 500;
  font-size: var(--font-size-base);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  color: var(--secondary-color);
}

/* On hover */
.nav-link:hover {
  color: var(--secondary-color);
}

.nav-item a:is(:link, :active, :visited).active {
  color: var(--secondary-color);
}

.btn-download {
  background-color: var(--secondary-color);
  padding: 0.6rem 1rem;
  border-radius: 9rem;
  font-family: var(--fontnunito);
  font-weight: 500;
  color: var(--back);
  font-size: 16px;
  font-weight: 500;
  transition: box-shadow 0.3s ease;
}

.btn-download:hover {
  background-color: var(--secondary-color);
  padding: 0.6rem 1rem;
  border-radius: 9rem;
  font-family: var(--fontnunito);
  font-weight: 500;
  color: var(--back);
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* subtle soft shadow */
}

@media (max-width: 480px) {
  .navbar {
    padding: 0rem 1rem;
    height: 4rem;
  }

  .navbar.sticky {
    padding: 0rem 1rem;
  }

  .navbar-brand img {
    height: 40px;
  }

  .navbar-toggler-icon {
    height: 20px;
    width: 20px;
  }
  .navbar-collapse {
    background-color: var(--back);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--grey);
  }

  /* Custom max-width for the modal */
}

@media (min-width: 481px) and (max-width: 768px) {
  .navbar {
    padding: 0rem 2rem;
    width: 90%;
  }

  .navbar.sticky {
    padding: 0rem 2rem;
  }

  .navbar-brand img {
    height: 40px;
  }

  .navbar-toggler-icon {
    height: 20px;
    width: 20px;
  }
  .navbar-collapse {
    background-color: var(--back);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--grey);
  }
}

@media (min-width: 769px) and (max-width: 1000px) {
  .navbar {
    padding: 0rem 4rem;
    width: 90%;
  }

  .navbar.sticky {
    padding: 0rem 4rem;
  }

  .navbar-brand img {
    height: 50px;
  }

  .navbar-toggler-icon {
    height: 24px;
    width: 24px;
  }
  .navbar-collapse {
    background-color: var(--back);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--grey);
  }
}
@media (min-width: 1000px) and (max-width: 1400px) {
  .navbar {
    padding: 0rem 4rem;
    width: 80%;
  }
}

/* container fluid  */
@media (min-width: 1300px) {
  .container-fluid {
    max-width: 1300px !important;
  }
}

@media (max-width: 480px) {
  .container-fluid {
    max-width: 360px !important;
  }
}

@media (min-width: 481px) and (max-width: 615px) {
  .container-fluid {
    max-width: 481px !important;
  }
}

@media (min-width: 616px) and (max-width: 768px) {
  .container-fluid {
    max-width: 500px !important;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .container-fluid {
    max-width: 769px !important;
  }
}

@media (min-width: 901px) and (max-width: 1000px) {
  .container-fluid {
    max-width: 900px !important;
  }
}

@media (min-width: 1001px) and (max-width: 1199px) {
  .container-fluid {
    max-width: 1001px !important;
  }
}

@media (min-width: 1200px) and (max-width: 1299px) {
  .container-fluid {
    max-width: 1200px !important;
  }
}

/* hero section  */

.hero-section {
  padding: 4rem 6rem;
  height: 720px;
  padding-top: 15rem;
}
.display-hero {
  font-family: var(--fontnunito);
  font-weight: 800;
  font-size: 64px;
  color: white;
}
.lead-hero {
  font-family: var(--fontnunito);
  font-weight: 500;
  font-size: 24px;
  color: white;
}
.red-curve-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  overflow: hidden;
  z-index: -1;
}

.red-curve-svg {
  width: 100%;
  height: 700px;
}

.z-1 {
  position: relative;
  z-index: 1;
}

.road {
  position: absolute;
  left: 40%;
  bottom: 1.2%;
}
@media (max-width: 480px) {
  .hero-section {
    padding: 1rem 1rem;
    height: 486px;
    padding-top: 10rem;
  }
  .display-hero {
    font-size: 36px;
  }
  .lead-hero {
    font-size: 20px;
  }
  .navbar {
    width: 90%;
  }
  .header-app a img {
    width: 100px;
  }
  .road {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero-section {
    padding: 2rem 2rem;
    height: 720px;
    padding-top: 12rem;
  }
  .display-hero {
    font-size: 40px;
  }
  .lead-hero {
    font-size: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .hero-section {
    padding: 3rem 3rem;
    height: 720px;
    padding-top: 12rem;
  }
  .display-hero {
    font-size: 52px;
  }
  .lead-hero {
    font-size: 20px;
  }
}
/* how sarara works  */

.working {
  padding: 4rem 6rem;
  background-color: var(--back);
}

.main-title {
  font-family: var(--fontnunito);
  font-size: 48px;
  color: black;
  text-align: center;
  font-weight: 600;
}

.step-card {
  background: transparent;
  border-radius: 15px;
  padding: 25px;

  cursor: pointer;
  transition: all 0.3s ease;

  height: auto;
}

.step-card-right {
  display: flex;
  flex-direction: column;
  justify-content: right;
  text-align: left;
  align-items: flex-start;
}
.step-card-left {
  display: flex;
  flex-direction: column;
  justify-content: right;
  text-align: right;
  align-items: flex-end;
}

.step-card:hover .step-number {
  background-color: var(--secondary-color);
  color: white;
}

.step-number {
  width: 65px;
  height: 65px;
  border-radius: 1rem;
  background: #e0eff7;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fontnunito);
  font-size: 600;
  font-size: 40px;
  font-weight: bold;

  transition: all 0.3s ease;
}

.step-card.active .step-number {
  background-color: var(--secondary-color);
  color: white;
}

.step-title {
  font-family: var(--fontnunito);
  font-size: 24px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.step-description {
  font-size: 16px;
  color: #666;
  font-family: var(--fontnunito);
  line-height: 1.4;
}

.phone-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-image {
  height: 550px;
  width: auto;
}
.step-image.active {
  display: flex !important;
}
@media (max-width: 480px) {
  .phone-container {
    width: 200px;
    height: 200px;

    align-items: center;
    justify-content: center;
  }
  .working {
    padding: 1rem 1rem;
  }
  .main-title {
    font-size: 36px;
  }
  .step-card {
    padding: 10px;
  }
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .step-row {
    display: flex;
    gap: 1rem; /* space between cards */
  }

  .step-card {
    flex: 1;
  }
  .step-row {
    flex-direction: column;
  }
  .step-card-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  .step-card-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  .step-image {
    height: 291px;
    width: auto;
  }
  .step-title {
    font-size: 20px;
  }
  .step-description {
    font-size: 14px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .working {
    padding: 2rem 2rem;
  }
  .phone-container {
    width: 200px;
    height: 200px;

    align-items: center;
    justify-content: center;
  }

  .main-title {
    font-size: 36px;
  }
  .step-card {
    padding: 10px;
  }
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .step-row {
    display: flex;
    gap: 1rem; /* space between cards */
  }

  .step-card {
    flex: 1;
  }
  .step-row {
    flex-direction: column;
  }
  .step-card-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  .step-card-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  .step-image {
    height: 300px;
    width: auto;
  }
  .step-title {
    font-size: 20px;
  }
  .step-description {
    font-size: 14px;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .working {
    padding: 3rem 3rem;
  }
  .phone-container {
    width: 260px;
    height: 260px;

    align-items: center;
    justify-content: center;
  }

  .main-title {
    font-size: 42px;
  }
  .step-card {
    padding: 10px;
  }
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }
  .step-row {
    display: flex;
    gap: 1rem; /* space between cards */
  }

  .step-card {
    flex: 1;
  }
  .step-row {
    flex-direction: column;
  }
  .step-card-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  .step-card-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin-top: 2rem;
  }
  .step-image {
    height: 400px;
    width: auto;
  }
  .step-title {
    font-size: 26px;
  }
  .step-description {
    font-size: 20px;
  }
}
/* rider section  */

.rider {
  padding: 4rem 6rem;
  background-color: var(--back);
}

.illustration-section {
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
}

.accordion-section {
  flex: 1;
  min-width: 400px;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  border-radius: 15px !important;
}

.accordion-button {
  background: var(--back);
  border: none;
  padding: 20px 25px;
  font-family: var(--fontnunito);
  font-weight: 600;
  font-size: 24px;
  color: #333;
  border-radius: 15px !important;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: var(--back);
  border: 0px;
  box-shadow: none !important ;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px 25px;
  background: var(--back);
  font-family: var(--fontnunito);
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  padding-top: 0px !important;
}

.step-number1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e0eff7;
  color: var(--secondary-color);
  border-radius: 50%;
  font-weight: bold;
  margin-right: 15px;
  font-family: var(--fontnunito);
  font-size: 24px;
}
@media (max-width: 480px) {
  .illustration-section {
    display: none;
  }

  .rider {
    padding: 1rem 1rem;
  }
  .step-number1 {
    font-size: 20px;
  }
  .accordion-button {
    font-size: 20px;
    padding: 1rem 1rem;
  }
  .accordion-body {
    padding: 1rem 1rem;
    font-size: 14px;
    padding-top: 0rem !important;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .rider {
    padding: 2rem 2rem;
  }
  .illustration-section img {
    width: 240px !important;
    height: auto;
  }
  .step-number1 {
    font-size: 20px;
  }
  .accordion-button {
    font-size: 20px;
    padding: 1rem 1rem;
  }
  .accordion-body {
    padding: 1rem 1rem;
    font-size: 14px;
    padding-top: 0rem !important;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .rider {
    padding: 3rem 3rem;
  }
  .illustration-section img {
    width: 300px !important;
    height: auto;
  }
  .step-number1 {
    font-size: 20px;
  }
  .accordion-button {
    font-size: 20px;
    padding: 1rem 1rem;
  }
  .accordion-body {
    padding: 1rem 1rem;
    font-size: 14px;
    padding-top: 0rem !important;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .accordion-section {
    min-width: 100%;
  }
}

/* why choose  */

.whychoose {
  padding: 4rem 6rem;
  background-color: #0d1b2a;
}
.side-title {
  color: white;
  text-align: left;
}
.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #ff6b6b;
  animation: borderColorMove 4s linear infinite;
}

@keyframes borderColorMove {
  0% {
    border-color: #ff6b6b;
  }
  16.66% {
    border-color: #4ecdc4;
  }
  33.33% {
    border-color: #45b7d1;
  }
  50% {
    border-color: #96ceb4;
  }
  66.66% {
    border-color: #ffeaa7;
  }
  83.33% {
    border-color: #fd79a8;
  }
  100% {
    border-color: #ff6b6b;
  }
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.whytitle {
  font-family: var(--fontnunito);
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.whytext {
  font-family: var(--fontnunito);
  color: #aaaaaa;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .whychoose {
    padding: 1rem 1rem;
  }
  .side-title {
    color: white;
    text-align: center;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .whychoose {
    padding: 2rem 2rem;
  }
  .side-title {
    color: white;
    text-align: center;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .whychoose {
    padding: 3rem 3rem;
  }
  .side-title {
    color: white;
    text-align: center;
  }
}

/* about us section  */
.aboutus {
  padding: 4rem 6rem;
  background-color: var(--back);
}
.about-title {
  text-align: left;
}
.about-section {
  background-color: #f8f9fa;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.phone-mockup {
  position: relative;
}
.phone-mockup img {
  max-width: 500px;
  position: relative;
  z-index: 5;
}

.phone-mockup svg {
  position: absolute;
  z-index: 1;
  left: -16%;
  bottom: -28%;
}

.about-content {
  padding-left: 2rem;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.about-text {
  background: var(--back);
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 1.5rem;
  font-family: var(--fontnunito);
  font-size: 20px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 2rem;
  position: relative;
}

.learn-more-btn {
  background: var(--secondary-color);
  border: none;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  color: white;
  font-weight: 600;
  font-family: var(--fontnunito);
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(52, 152, 219, 0.4);
  color: white;
}

@media (min-width: 1000px) {
  .smallab {
    display: none;
  }
}
@media (max-width: 480px) {
  .aboutus {
    padding: 1rem 1rem;
  }
  .bigab {
    display: none;
  }
  .phone-mockup {
    max-width: 300px;
  }
  .phone-mockup img {
    max-width: 300px;
  }
  .about-title {
    text-align: center;
  }
  .phone-mockup svg {
    width: 100px;
    height: auto;
  }
  .about-content {
    padding-left: 0rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-text {
    font-size: 16px;
    margin-bottom: 1rem;
  }
  .learn-more-btn {
    padding: 0.5rem 1rem;
    font-size: 14px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .aboutus {
    padding: 2rem 2rem;
  }
  .bigab {
    display: none;
  }
  .phone-mockup {
    max-width: 400px;
  }
  .phone-mockup img {
    max-width: 400px;
  }
  .about-title {
    text-align: center;
  }
  .phone-mockup svg {
    width: 100px;
    height: auto;
  }
  .about-content {
    padding-left: 0rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-text {
    font-size: 16px;
    margin-bottom: 1rem;
  }
  .learn-more-btn {
    padding: 0.5rem 1rem;
    font-size: 14px;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .aboutus {
    padding: 3rem 3rem;
  }
  .bigab {
    display: none;
  }
  .phone-mockup {
    max-width: 400px;
  }
  .phone-mockup img {
    max-width: 400px;
  }
  .about-title {
    text-align: center;
  }
  .phone-mockup svg {
    width: 100px;
    height: auto;
  }
  .about-content {
    padding-left: 0rem !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-text {
    font-size: 20px;
    margin-bottom: 1rem;
  }
}

/* download section  */

.download {
  padding: 4rem 6rem;
  background-color: var(--back);
  padding-top: 0rem !important;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.download-inside {
  background-color: var(--primary-color);
  padding: 2rem 2rem;
  border-radius: 2rem;
  overflow: hidden;
}

.qr-img {
  height: 200px;
  width: auto;
}
.QR p {
  color: white;
  font-family: var(--fontnunito);
  font-size: 20px;
  font-weight: 500;
}
.downloadphoneup {
  position: absolute;
  bottom: 80%;
  right: 0%;
}
.downloadphonedown {
  position: absolute;
  top: -3rem;
  right: 40%;
}
@media (max-width: 480px) {
  .download {
    padding: 1rem 1rem;
    margin-top: 1rem;
  }
  .downloadphoneup {
    display: none;
  }
  .downloadphonedown {
    display: none;
  }
  .qr-img {
    height: 150px;
    width: auto;
  }
  .QR p {
    font-size: 16px;
    text-align: center;
  }
  .btn-store a img {
    width: 100px;
    height: auto;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .download {
    padding: 2rem 2rem;
    margin-top: 1rem;
  }
  .downloadphoneup {
    display: none;
  }
  .downloadphonedown {
    display: none;
  }
  .qr-img {
    height: 150px;
    width: auto;
  }
  .QR p {
    font-size: 16px;
    text-align: center;
  }
  .btn-store a img {
    width: 140px;
    height: auto;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .download {
    padding: 3rem 3rem;
    margin-top: 1rem;
  }
  .downloadphoneup {
    display: none;
  }
  .downloadphonedown {
    display: none;
  }
  .qr-img {
    height: 200px;
    width: auto;
  }
  .QR p {
    font-size: 20px;
    text-align: center;
  }
  .btn-store a img {
    width: 140px;
    height: auto;
  }
}
/* footer  */

.last {
  padding: 0rem 6rem;
}
.footer-logo img {
  height: 60px;
}

.footer-logo p {
  font-family: var(--fontpop);
  font-size: 16px;
  color: #666;
  font-weight: 500;
  margin-right: 4rem;
}

.footer-title {
  color: var(--secondary-color);
  font-family: var(--fontpop);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer-link {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.Copyright {
  color: #000;
  font-family: var(--fontpop);
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .last {
    padding: 1rem 1rem;
  }
  .footer-app a img {
    width: 100px;
  }
  .footer-logo img {
    height: 50px;
  }
  .footer-logo p {
    font-size: 14px;

    margin-right: 1rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .last {
    padding: 2rem 2rem;
  }
  .footer-app a img {
    width: 100px;
  }
  .footer-logo img {
    height: 50px;
  }
  .footer-logo p {
    font-size: 14px;

    margin-right: 1rem;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .last {
    padding: 3rem 3rem;
  }
}

/* contact page  */
.hero-section2 {
  padding: 4rem 6rem;
  height: 420px;
  padding-top: 9rem;
}

.contact-container {
  padding: 4rem 6rem;

  overflow: hidden;
  display: flex;
}

.contact-left {
  background: var(--secondary-color);
  color: #e0eff7;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 50px;
  border-bottom: 1px solid #e0eff7;
  padding-bottom: 2rem;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.social-icons i {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-icons i:hover {
  transform: scale(1.2);
}

.company-info {
  text-align: center;
  margin: 40px 0;
  border-bottom: 1px solid #e0eff7;
  padding-bottom: 2rem;
  width: 100%;
}

.location-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.location-icon i {
  font-size: 24px;
}

.company-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.company-location {
  font-size: 14px;
  opacity: 0.9;
}

.support-section {
  text-align: center;
}

.support-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.support-icon i {
  font-size: 24px;
}

.support-title {
  font-size: 18px;
  font-family: var(--fontnunito);
  font-weight: 600;
  margin-bottom: 15px;
}

.support-numbers {
  margin-bottom: 10px;
}

.support-numbers div {
  font-size: 14px;
  margin-bottom: 3px;
}

.support-email {
  font-size: 14px;
  opacity: 0.9;
}

.contact-right {
  padding: 40px;
  background-color: white;
  min-height: 500px;
}

.contact-title {
  color: var(--primary-color);
  font-family: var(--fontnunito);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.mapp {
  background-color: var(--back);
  padding: 3rem 6rem;
}

@media (max-width: 480px) {
  .contact-container {
    padding: 1rem 1rem;
  }
  .mapp {
    padding: 1rem 1rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .contact-container {
    padding: 2rem 2rem;
  }
  .mapp {
    background-color: var(--back);
    padding: 2rem 2rem;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .contact-container {
    padding: 3rem 3rem;
  }
  .mapp {
    background-color: var(--back);
    padding: 3rem 3rem;
  }
}


/* about us  */

/* our story  */

  .our-story{
    padding: 3rem 6rem;
    background-color: var(--back);
    color: var(--grey);
    font-family: var(--fontnunito);
    font-size: 16px;
    font-weight: 500 ;
   
  }
  

  .story-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    font-family: var(--fontnunito);
    font-weight: 600;
   
  }
  .grid-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 20px;
    max-width: 1000px;
  }

  .left-img img,
  .right-top img,
  .right-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
  }

  .left-img {
    grid-row: span 2;
  }

  .right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
  }

  .experience-badge {
    height: 100%;
    width: 100%;
    background: white;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    font-family: var(--fontpop);
    z-index: 2;
  }

  .experience-badge strong {
    color: var(--secondary-color);
    font-size: 50px;
    font-family: var(--fontraj);
  }



  .commitment-section {
    padding: 1rem 6rem;
    background-color: var(--primary-color);
    position: relative;
    color: var(--back);
    margin-bottom: 2rem;
  }
  .commitment-section p{
    font-family: var(--fontpop);
    font-size: 16px;
    color: var(--back);
    font-weight: 400;
  }
  @media (max-width: 480px) {
    .our-story {
      padding: 1rem 1rem;
      font-size: 14px;
    }
  
    .story-title {
      font-size: 2rem;
    }
  
   
  
    .commitment-section {
      padding: 1rem 1rem;
     
    }
  
    .commitment-section p {
      font-size: 14px;
    }
    
    
    
    
  }
  @media (min-width: 481px) and (max-width: 768px){
    .our-story {
      padding: 2rem 2rem;
      
    }
   
  
    .commitment-section {
      padding: 2rem 2rem;
     
    }
  }
  @media (min-width: 769px) and (max-width: 1000px){
    .our-story {
      padding: 3rem 4rem;
      
    }
    
  
    .commitment-section {
      padding: 3rem 4rem;
     
    }

  }
  @media (min-width: 1001px) and (max-width: 1400px){
    .our-story {
      padding: 3rem 4rem;
      
    }
    
  
    .commitment-section {
      padding: 3rem 4rem;
     
    }

  }
  

  /* services  */

  

      /* services  */

      .services{
        padding: 3rem 6rem;
        background-color: var(--back);


      }

      .tab-title{
        width: 100%;
      }


      .approach-tabs .nav-link {
        text-align: center;
        padding: 15px 10px;
        border: none;
        color: #bbb;
        font-weight: 500;
      }
  
      .approach-tabs .nav-link.active {
        background-color: #fff;
        color: #000;
       
        font-weight: 600;
      }
  
      .approach-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 5px;
        display: block;
      }
  
      .tab-content {
       
        padding: 2rem;
        background-color: #fff;
      }
  
      .approach-box {
       background-color: var(--back);
      }

      

      .service-card {
        width: auto;
        height: 24rem; /* fixed height */
        position: relative;
        cursor: pointer;
        border: none;
        background-color: transparent;
        overflow: visible;
        
      }
      .service-card:hover .bottom p{
        font-size: 16px;
        font-family: var(--fontpop);
        color: var(--grey);
        font-weight: 400;
    }
      
      .top {
        height: 12rem;
        background:var(--secondary-color);
        border-radius: 20px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        transition: 1s;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        z-index: 1;
      }
      
      .bottom {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        background: white;
        border-radius: 0 0 20px 20px;
        padding: 1rem;
        text-align: justify;
        opacity: 0;
        transform: translateY(-50%);  
        transform-origin: top;
        transition: 0.5s ease;
        z-index: 2;
      }
      
      .service-card:hover .bottom {
        opacity: 1;
        transform: translateY(0);
      }
      
      .service-card:hover .top {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        transform: translateY(-100%); 
      }
      
      .top img {
        height: 8rem;
        width: 8rem;
      }
      
      .top h1 {
        font-size: 24px;
        color: var(--back);
        margin-bottom: 1rem;
        font-weight: 600;
        text-align: center;
      }
      
@media (max-width: 480px){
  .services{
    padding: 1rem 1rem;
  
  }
 
}
@media (min-width: 481px) and (max-width: 768px){
  .services{
    padding: 2rem 2rem;
  
  }
 
}
@media (min-width: 769px) and (max-width: 1000px){
  .services{
    padding: 3rem 4rem;
  
  }
}
@media (min-width: 1001px) and (max-width: 1400px){
  .services{
    padding: 3rem 4rem;
  
  }
}