body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.navbar {
  position: fixed;
  display: flex;
  justify-content: space-between;
  /* Uncommented for better layout */
  align-items: center;
  /* Center items vertically */
  padding: 20px 40px;
  background-color: #fff;
  /* Base background color */
  width: 100vw;
  z-index: 200;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* Added shadow for depth */
  transition: background-color 0.3s ease;
  /* Smooth transition for background color */
}

.navbar:hover {
  background-color: #e4dede;
  /* Darker background on hover */
}

.nav_left {
  /* padding-left: 90px; */
}

.icon_img {
  /* margin: 0 0 0 100px; */
  display: inline;
  justify-self: center;
  align-self: center;
  width: 150px;
}

.nav_right {
  list-style: none;
  display: flex;
  gap: 30px;
  /* Added gap between nav items */
  padding-right: 90px;
}

.nav_right>li {
  position: relative;
  /* For dropdown positioning */
}

.nav_right>li>a {
  text-decoration: none;
  color: black;
  /* Changed text color for better contrast */
  transition: color 0.3s ease;
  /* Smooth transition for text color */
}


.hero {
  background-image: url("public/hero.jpg");
  background-size: cover;
  /* Ensures the image covers the entire width and height */
  background-position: center;
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  width: 100%;
  /* height: 100vh; */
}

.hero_gap {
  height: 270px;
}

.hero_main {
  margin: 0;
  margin: 0 130px;
}

.heading_1 {
  margin: 0 0 0 190px;
  font-size: 40px;
  /* inline-size: 700px; */
}

.heading_2 {
  margin: 0 0 0 140px;
  font-size: 80px;
  font-weight: 800;
}

.heading_3 {
  margin: 0 0 0 249px;
  /* margin-left: 350px; */
  font-size: 35px;
}

.heading_4 {
  margin: 0 0 0 180px;
  /* margin-left: 350px; */
  font-size: 47px;
  font-weight: 700;
}

.header_moto {
  color: brown;
  margin: 0 70px 0 200px;
  line-height: 27px;
}

.header_moto>span {
  font-weight: 900;
  font-size: 45px;
}

.section__bg {
  background-color: #fff !important;
}

.why {
  color: rgb(23, 84, 128);
  margin: 0;
  line-height: normal;
}

.moto_explain {
  /* margin: 0 100px; */
  display: flex;
}

.moto_points {
  width: 850px;
  margin: 0 0 0 160px;
  font-weight: 700;
  font-size: large;
}

.moto_points li {
  margin-bottom: 10px;
}

.divider {
  border-left: 2px solid gray;
  margin: 0 46px;
}

.divider_2 {

  height: 520px;
}

.section {
  width: 100%;
  padding: 60px 0px;
  background-color: rgb(249, 249, 249);
}

.moto_highlight {
  width: 1200px;
}

.highlight {
  width: 550px;
}

.moto_para {
  font-size: larger;
  margin-bottom: 30px;
}

.stats {
  display: flex;
  flex-direction: row;
}

.card {
  width: 300px;
}

.card>span {
  color: rgb(23, 84, 128);
  font-size: 50px;
  font-weight: 900;
}

.card>p {
  color: rgb(210, 31, 42);
  font-size: x-large;
  margin: 0;
  font-weight: 600;
}

/* target page */
.target {
  display: flex;
  width: 100%;
  background-color: #fff;
  margin: 30px 0;
}

.target_para_head {
  margin-bottom: 100px;
}

.target_para {
  width: 350px;
  font-size: larger;
  font-weight: 700;
  margin: 30px 70px 50px 200px;
}

.target_left {
  width: 653px;
}

.target_right {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
}

.img_container {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.image_target_right {
  width: 80%;
  margin-bottom: 20px;
  align-self: center;
}

.image_desc {
  width: 400px;
  align-self: center;
  margin-bottom: 20px;
}

.image_desc>p {
  margin: 0;
}

.fact {
  margin-top: 230px;
  margin-left: 20px;
}

.fact_q {
  font-size: xx-large;
  font-weight: 900;
}

.fact_num_desc {
  display: flex;
  flex-direction: row;
  /* text-align:; */
}

.fact_num {
  color: rgb(23, 84, 128);
  display: flex;
  flex-direction: row;
  align-self: center;
  align-items: end;
}

.num {
  font-size: 70px;
  font-weight: 900;
}

.num_perc {
  font-size: large;
  font-weight: 800;
  align-self: end;
  position: relative;
  color: rgb(23, 84, 128);
  bottom: 19px;
}

.num_desc {
  align-self: center;
  color: rgb(23, 84, 128);
  font-size: 14px;
  font-weight: 800;
  margin: 10px;
  line-height: normal;
}

/* label  */
.label {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(23, 84, 128);
  color: #fff;
}

.label_heading {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
}

.label_heading>span {
  align-self: center;
}

.label_heading>span:nth-child(1) {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
}

.label_heading>p {
  font-size: 35px;
  margin: 5px;
}

.cards {
  display: flex !important;
  flex-direction: row;
  width: 100%;
  margin-top: 20px;
  gap: 0px;
  margin-bottom: 100px;
}

.blue_card {
  display: flex;
  flex-direction: column;
  width: 350px;
  gap: 15px;
  margin: 10px;
  padding: 20px;
  background-color: rgb(39, 139, 226)
}

.blue_card>h1 {
  align-self: center;
}

.nav_items .dropdown {
  min-width: 160px;
  display: none;
  list-style: none;
  position: absolute;
  padding: 0;
  margin: 0;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav_items li:hover .dropdown {
  display: block;
}

.nav_items .dropdown li {
  list-style: none;
  padding: 10px;
}

.nav_items .dropdown li a {
  color: black;
  text-decoration: none;
}

.nav_items .dropdown li a:hover {
  background-color: #f0f0f0;
}



.cards {
  display: flex;
  gap: 20px;
}

.blue_card {
  background-color: #007bff;
  color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
}

.blue_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.facebook-embded {
  width: 250px;
  margin-right: 80px;
}

.i_frame {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.red_a {
  text-decoration: none;
  color: rgb(197, 11, 11);
}

.dash {
  width: 68px;
  /* margin: 0 40px; */
  margin-top: 8px;
  border-top: 2px solid black;
}

/* realization */

.realization {
  padding: 70px 150px;
  margin-top: 50px;
}

.poll-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.poll-text {
  flex: 1;
  margin-right: 20px;
}

.poll-text p:first-child {
  font-size: large;
  margin-bottom: 10px;
}

.poll-text p:nth-child(2) {
  font-size: 35px;
  color: rgb(39, 139, 226);
  font-weight: 900;
  margin: 0;
}

.poll-text p:nth-child(3) {
  font-size: 35px;
  color: rgb(39, 139, 226);
  font-weight: 900;
  margin: 0;
}

.poll-text p:last-child {
  font-size: large;
  margin-top: 10px;
}

.poll-image {
  flex: 0 0 40%;
}

.poll-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.poll_desc {
  font-weight: bold;
}

.purpose {
  display: flex;
  justify-content: space-between;
  padding: 70px 150px;
  margin: 70px 0;
}

.left_purpose {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  color: rgb(23, 84, 128);
  line-height: 1;
}

.left_purpose p:nth-child(1) {
  font-size: x-large;
  margin: 1px 0;
}

.left_purpose p:nth-child(2) {
  font-size: 50px;
  font-weight: 900;
  margin: 0;
}

.left_purpose p:nth-child(3) {
  font-size: xx-large;
  margin: 0;
}

.left_purpose p:nth-child(4) {
  font-size: x-large;
  margin: 0;
  font-style: italic;
}

.purpose_card {
  background-color: #fff;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  transition: transform 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 200px;
  margin: 5px;
}

.right_purpose {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.purpose_card>img {
  max-width: 60%;
  margin-bottom: 5px;
  align-self: center;
}

.purpose_card span {
  font-size: 0.9em;
  /* Smaller text */
  color: #555;
}

.row1_purpose {
  display: flex;
  flex-direction: row;
}

/* testemonila */

.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.mySlides {
  display: none;
}

.mySlides:first-child {
  display: block;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Fade effect */
.fade {
  animation: fade 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

/* Dots styling */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Active dot */
.dot.active {
  background-color: #717171;
}

/* Navigation buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.youtube-iframe {
  width: 60%;
  margin: auto;
  display: block;
}

.testemonial {
  margin: 70px 0;
  padding: 20px;
  background-color: #f9f9f9;

}

.testemonial_header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(210, 31, 42);
}

.testemonial_header p:nth-child(1) {
  font-size: x-large;
  margin: 60px 0 0 0;
}

.testemonial_header p:nth-child(2) {
  margin: 0 0 50px 0;
  font-size: 40px;
  font-weight: 900;
}

/* prefooter */

.pre_footer {
  background-color: #d32f2f;
  color: white;
  padding: 40px 120px;
  text-align: center;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.left_pre_footer {
  width: 500px;
  display: grid;
  justify-items: start;
}

.pre_footer h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.pre_footer p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 10px 0;
}

.pre_footer a {
  color: yellow;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s;
}

.pre_footer a:hover {
  color: #ffeb3b;
  /* Lighter yellow on hover */
}

.pre_footer hr {
  border: 1px solid white;
  margin: 20px 0;
}

.social-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-badges img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s;
}

.social-badges img:hover {
  transform: scale(1.2);
  transition: transform 0.3s;
}

.dropdown {
  display: none;
  /* Initially hidden */
  position: absolute;
  /* Positioning for dropdown */
  top: 100%;
  /* Position below the parent */
  left: 0;
  background-color: white;
  /* Background for dropdown */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* Shadow for dropdown */
  z-index: 1000;
  /* Ensure dropdown is above other elements */
  border-radius: 4px;
  /* Rounded corners */
}

.nav_right>li:hover .dropdown {
  display: block;
  /* Show dropdown on hover */
}

.dropdown li {
  padding: 10px 20px;
  /* Padding for dropdown items */
}

.dropdown li a {
  color: black;
  /* Text color for dropdown items */
  text-decoration: none;
  /* No underline */
}

.dropdown li a:hover {
  background-color: #f0f0f0;
  /* Light background on hover */
}

.black-icon {
  filter: brightness(0) invert(0);
  /* This will make the image black */
}

.zoomed {
  transform: scale(1.2);
}

@media only screen and (max-width: 1025px) {
  .heading_2 {
    margin: 0 0 0 77px;
    font-size: 73px;
    font-weight: 1000;
  }

  .heading_3 {
    margin: 0 0 0 133px;
    /* margin-left: 350px; */
    font-size: 35px;
  }

  .heading_4 {
    margin: 0 0 0 150px;
    /* margin-left: 350px; */
    font-size: 40px;
    font-weight: 900;
  }

  .header_moto {
    margin: 0px 70px 0px 93px;
  }

  .moto_points {
    margin: 0 0 0 70px;
    width: 500px;
  }

  .moto_points li {
    margin-bottom: 10px;
  }

  .divider {
    height: 404px;
    margin: 0 40px;
  }

  .moto_highlight {
    width: 500px;
    margin-top: 15px;
  }

  .highlight {
    width: 450px;
  }

  .purpose {
    padding: 70px 88px;
  }
}