@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

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

:root {
  --font-family-Montserrat: "Montserrat", sans-serif;

  --primary-red: #d61601;
  --primary-indigo: #110d78;
  --header-iconBg: #292590;

  --black: #000000;
  --text-black1: #444444;
  --text-black2: #9c9c9c;
  --text-greyNeutral: #555555;
  --footer-bg: #01000f;
  --footer-scoialBg: #15123a;
  --dark-blue: #110f20;

  --dark-grey-text: #2c2c2c;
  --grey-border: #717171;
  --date-color: #696969;
  --table-border: #f0a9a1;
  --table-th: #ffecea;

  --tint2: #f8f7ff;
  --white-text: #ffffff;
  --wite1: #dadada;
  --offWhite1-text: #fcfcfc;
  --offWhite2-text: #dddddd;
  --offWhite3-text: #e0e0e0;
  --contact-border: #dbdbdb;
  --border-clinet: #c8c8c8;
}

body {
  color: var(--black);
  font-family: var(--font-family-Montserrat);
  background: var(--offWhite1-text);
}

img {
  width: 100%;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 600;
}

.second_heading {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
}

.third_heading {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
}

h3 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
}

.paragraph_description {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--dark-grey-text);
  font-weight: 400;
}

.paragraph_description p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--dark-grey-text);
  font-weight: 400;
}

.btn_primary_red {
  background-color: var(--primary-red);
  padding: 10px 24px;
	height: 50px;
	display:flex;
	align-items: center;
	justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-text);
}

.btn_primary_indigo {
  background-color: var(--primary-indigo);
  padding: 10px 24px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: max-content;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-text);
}

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

/* 0000000000 HOME PAGE CSS STARTS FORM HERE 000000 */
.top_header_container {
  background: var(--primary-indigo);
  color: var(--offWhite1-text);
  padding: 0.8rem 0;
}

.top_header_container a {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: var(--offWhite1-text);
}

.call_icon_image_Container {
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Location_icon_image_Container {
  height: 16px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call_icon_image_Container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.facebook_icon {
  height: 30px;
  width: 30px;
  font-size: 16px;
  background-color: var(--header-iconBg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* navigation bar css  */
.gap_25 {
  gap: 35px;
}

.nav_bar_large {
  padding: 20px 0;
  background-color: transparent;
}

.navbar {
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 300;
}

.fixed-top-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #292590;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar.nav_scrolled {
  animation: slideDown 0.6s ease-out forwards;
  background: #00000052;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo_hero_onscroll {
  height: 50px;
  width: 50px;
  background: var(--offWhite1-text);
  padding: 5px;
  outline: 5px solid #ffffff2e;
  display: none;
}

.navbar.nav_scrolled .logo_hero_onscroll {
  display: block;
  opacity: 1;
}

.nav_bar_large .navbar-nav .nav-item a {
  color: var(--offWhite1-text);
  font-size: clamp(16px, 1.1vw, 16px);
  font-weight: 500;
  position: relative;
  padding: 0;
  transition: all 0.2s ease-in-out;
}

.nav_bar_large .navbar-nav .nav-item a.active::before {
  position: absolute;
  width: 50%;
  height: 2px;
  border-radius: 10px;
  background: var(--white-text);
  content: "";
  left: 0;
  bottom: -5px;
}

.has-dropdown {
  position: relative;
}

.has-dropdown .dropdown {
  position: absolute;
  top: 150%;
  left: 0;
  background: var(--white-text);
  z-index: 1000;
  list-style: none;
  display: none;
  width: max-content;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

.has-dropdown .dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-black1);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.dropdown_padding li a {
  padding: 14px 16px !important;
  cursor: pointer;
  color: var(--text-black1) !important;
}

.dropdown_padding li a:hover {
  color: var(--white-text) !important;
  background: var(--primary-red);
}

.dropdown_padding li {
  border-bottom: 1px solid var(--date-color);
}

.dropdown_padding li:last-child {
  border-bottom: 0;
}

.menu_text {
  font-size: 18px;
  font-weight: 500;
  color: var(--white-text);
}

.offcanvas-header {
  background: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.custom-close-btn {
  background: none;
}

.custom-close-btn .fa-xmark {
  font-size: 25px;
  background: none;
}

.navbar-toggler i {
  font-size: 35px;
  color: var(--white-text);
}

.navbar-toggler {
  border: none;
  box-shadow: none;
}

.navbar-toggler:focus:not(:focus-visible) {
  box-shadow: none !important;
  outline: none;
}

/* hero_section  */
.hero_Section_banner {
  height: 800px;
  position: relative;
}

.hero_Section_banner2 {
  height: 400px;
  background: url("./images/homePage/heroTruck.jpeg");
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero_Section_banner2 .overlay_hero {
    background: #03143091;
}

.home_slider_swiper_image {
  position: relative;
  height: 100%;
  width: 100%;
}

.home_slider_swiper_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.overlay_hero {
  background: #03143066;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.logo_hero {
  height: 140px;
  width: 180px;
  outline: 10px solid #ffffff2e;
  position: absolute;
  z-index: 10;
  background: var(--offWhite1-text);
  left: 0;
  padding: 5px 10px;
  top: -20px;
}

/* Container styling (optional) */
.swiper-paginationHome {
  height: 5px;
  background-color: #595959 !important;
  border-radius: 4px;
  max-width: 300px;
  transform: rotate(90deg) translateY(-50%);
  z-index: 10;
  position: absolute;
  left: 88% !important;
  top: 50% !important;
}

/* Fill styling */
.swiper-pagination-progressbar-fill {
  border-radius: 4px;
  transition: transform 0.3s ease;
  background-color: var(--primary-red) !important;
}

.home_slider_container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero_section_heading_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  width: 100%;
  margin: auto;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero_section_heading_container h1 {
  color: var(--offWhite1-text);
  text-align: center;
}

/* .mySwiperHomeSlider .swiper-wrapper {
    position: absolute;
    top: 30%;
} */

.homeSlider_pagination .swiper-button-nextHome {
  position: absolute;
  right: 0px;
  bottom: 20px;
  z-index: 2;
}

.homeSlider_pagination .swiper-button-prevHome {
  position: absolute;
  right: 55px;
  bottom: 20px;
  z-index: 2;
}

.homeSlider_pagination .swiper-button-nextHome.swiper-button-disabled,
.homeSlider_pagination .swiper-button-prevHome.swiper-button-disabled {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

.homeSlider_pagination .swiper-button-nextHome,
.homeSlider_pagination .swiper-button-prevHome {
  background-color: transparent;
  width: 45px;
  height: 45px;
  display: flex;
  border: 1px solid var(--offWhite1-text);
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider_pagination .swiper-button-prevHome::after {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  /* Required for FontAwesome */
  font-weight: 600;
  /* Needed for solid icons */
  color: var(--offWhite1-text) !important;
  font-size: 25px;
}

.homeSlider_pagination .swiper-button-nextHome::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  /* Required for FontAwesome */
  font-weight: 600;
  /* Needed for solid icons */
  color: var(--offWhite1-text) !important;
  font-size: 25px;
}

/* home about section  */
.homePageAboutSection {
  background-color: var(--tint2);
  position: relative;
  overflow: hidden;
}

.About_text_container_home {
  padding: 100px 0;
	padding-right: 16px;
}

.about_texthome {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  color: var(--date-color);
}

.about_home_left_image {
  position: absolute;
  width: 50%;
	padding-left: 10px;
  top: 0;
  right: 0;
  height: 100%;
}

.about_home_left_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index_first_popup {
  height: 100%;
  width: 100%;
  display: block;
}

.redPlayIconHome {
  position: absolute;
  height: 100px !important;
  width: 100px !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.palY_icon_container {
  height: 100px;
  width: 100px;
}

.palY_icon_container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about_text_container {
  position: relative;
  padding-left: 20px;
}

.about_text_container::before {
  height: 100%;
  width: 5px;
  background-color: var(--primary-red);
  content: "";
  position: absolute;
  left: 0;
}

.about_text_container p:nth-child(2) {
  color: var(--primary-red);
}

/* about home second section  */
.chooseTheRightCDLSection {
  padding: 84px 0;
  background-color: var(--footer-bg);
  color: var(--white-text);
}

.CDL_button_container {
  display: flex;
  align-items: center;
  justify-content: end;
  border: 1px solid var(--grey-border);
}

.CDL_button_container p {
  color: var(--offWhite2-text);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  padding: 10px 5px;
  width: 50%;
  text-align: center;
  cursor: pointer;
}

.CDL_button_container p.active {
  color: var(--offWhite2-text);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  padding: 10px 5px;
  width: 50%;
  text-align: center;
  background-color: var(--primary-red);
}

.cdl_Des {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--offWhite2-text);
  font-weight: 400;
  margin-top: 20px;
}

.dark_blue_bg {
  background-color: var(--dark-blue);
  padding: 48px 24px;
  height: 100%;
}

.dark_blue_bg .icon {
  height: 100px;
  width: 80px;
}

.dark_blue_bg .icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.dmvTest_heading {
  font-size: 20px;
  font-weight: 600;
  color: var(--offWhite1-text);
  text-align: center;
}

.dmvTestDescription {
  font-size: 16px;
  font-weight: 400;
  color: var(--offWhite3-text);
}

.mySwiperChooseCDL,
.mySwiperWhyChoose {
  padding-bottom: 60px;
}

.swiper-pagination-bullet {
  background-color: #413e59;
  opacity: 1;
}

.mySwiperWhyChoose .swiper-pagination-bullet {
  background-color: #d7d7d7;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #d61601 !important;
}

/* choose home third section  */
.home_page_whyChoose_container {
  padding: 84px 0;
}

.home_page_why_choose_content_containerPadding {
  /* padding: 40px 0; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.home_page_why_choose_content_container {
  height: 100%;
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 420px;
}

.about_image_home_container {
  width: 100%;
  height: 100%;
  flex: 1;
}

.about_image_home_container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.black_overlay {
  background: linear-gradient(to bottom, #00000000, #000000);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.home_page_why_choose_content_container h4 {
  color: var(--white-text);
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  bottom: 3%;
  left: 5%;
}

/* success stories  */
.home_page_success_stories_container {
  background: var(--tint2);
  padding: 84px 0;
}

.success_stories_content_container {
  box-shadow: 0px 0px 10px 0px #0000000f;
  overflow: hidden;
}

.success_stories_heading h3 {
  max-width: 600px;
  margin: auto;
  text-align: center;
  color: var(--primary-red);
}

.success_story_height {
  height: 100%;
}

.success_stories_left_section {
  height: 440px;
}

.success_stories_left_section img {
  height: 100%;
  object-fit: cover;
	object-position: top;
}

.YoutubeRedIcon {
  height: 60px !important;
  width: 60px !important;
  object-fit: contain !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.success_stoies_right_section {
  padding: 24px;
}

.SuccessPersonDetail h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  padding-bottom: 10px;
}

.SuccessPersonDetail p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-grey-text);
}

.google_icon_container {
  height: 40px;
  width: 40px;
  overflow: hidden;
}

.google_icon_container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.DateContainer {
  padding-top: 20px;
  border-top: 1px solid var(--border-clinet);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.DateContainer p {
  color: var(--date-color);
  font-size: 14px;
  font-weight: 400;
}

/* SUCCESS STORIES SLIDER  */
.success_stories_slider_section {
  background: var(--white-text);
}

.mySwiperSuccessStories {
  padding-top: 60px;
}

.mySwiperSuccessStories .swiper-pagination-bullet {
  background-color: #d7d7d7;
  opacity: 1;
}

.successStoriesSliderWrapper .swiper-button-nextArrow {
  position: absolute;
  right: -30px;
  z-index: 2;
  top: 50%;
}

.successStoriesSliderWrapper .swiper-button-prevArrow {
  position: absolute;
  left: -30px;
  z-index: 2;
  top: 50%;
}

.successStoriesSliderWrapper .swiper-button-nextArrow.swiper-button-disabled,
.successStoriesSliderWrapper .swiper-button-prevArrow.swiper-button-disabled {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

.successStoriesSliderWrapper .swiper-button-nextArrow,
.successStoriesSliderWrapper .swiper-button-prevArrow {
  background-color: transparent;
  display: flex;
  border: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.successStoriesSliderWrapper .swiper-button-prevArrow::after {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  /* Required for FontAwesome */
  font-weight: 600;
  /* Needed for solid icons */
  color: var(--black) !important;
  font-size: 25px;
}

.successStoriesSliderWrapper .swiper-button-nextArrow::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  /* Required for FontAwesome */
  font-weight: 600;
  /* Needed for solid icons */
  color: var(--black) !important;
  font-size: 25px;
}

/* home second last banner  */
.second_last_banner_image_container {
  background: url("./images/homePage/truckbg.jpg");
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.banner_last_overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #031430c2;
}

.banner_icon img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.banner_content_container {
  padding: 100px 0;
}

.banner_content_container .second_heading {
  color: var(--offWhite1-text);
}

.banner_content_container p {
  color: var(--contact-border);
  font-size: 18px;
  font-weight: 400;
  padding: 12px 0 44px 0;
}

.banner_contact_details_Container a {
  color: var(--offWhite1-text);
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 500;
}

.banner_contact_details_Container {
  gap: 24px !important;
}

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

.banner_clip_image_container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -100px;
  height: 100%;
}

.clipped_image {
  width: 100%;
  max-width: 450px;
  height: 100%;
  clip-path: polygon(35% 0, 100% 0, 65% 100%, 0% 100%);
  overflow: hidden;
}

.clipped_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.clip_image2,
.clip_image3 {
  margin-left: -130px;
}

@media (max-width: 1600px) {
    .clipped_image {
        max-width: 360px;
    }
    .clip_image2,
    .clip_image3 {
        margin-left: -90px;
    }
}

@media (max-width: 1400px) {
  .clipped_image {
    max-width: 350px;
  }
}

@media (max-width: 1200px) {
  .clipped_image {
    max-width: 300px;
  }

  .clip_image2,
  .clip_image3 {
    margin-left: -90px;
  }
}

@media (max-width: 1100px) {
  .clipped_image {
    max-width: 260px;
  }

  .clip_image2,
  .clip_image3 {
    margin-left: -100px;
  }
}

/* home contact css  */
.home_page_contact_container {
  padding: 84px 0;
}

.left_contact_container {
  padding: 48px;
  background-color: var(--white-text);
}

.left_contact_container h3 {
  color: var(--primary-red);
  max-width: 400px;
}

.left_contact_container p {
  color: #2c2c2c;
  font-size: clamp(16px, 2vw, 18px);
}

.contact_shadow {
  box-shadow: 0px 0px 14px 2px #0000001a;
}

.contact_form {
  margin-top: 24px;
}

.contact_form input {
  padding: 10px 24px;
  width: 100%;
  border: 1px solid var(--contact-border);
  outline: none;
}

.contact_form textarea {
  padding: 10px 24px;
  width: 100%;
  border: 1px solid var(--contact-border);
  outline: none;
}

.contact_form input::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-black2);
}

.contact_form button {
  background: var(--primary-indigo);
  color: var(--offWhite1-text);
  padding: 10px;
  border: none;
  width: 100%;
  text-align: center;
}

.same_height {
  height: 100%;
  max-height: 700px;
}

.rightImageContact img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* footer  */
footer {
  background-color: var(--footer-bg);
  padding-top: 84px;
  overflow-x: hidden;
  color: var(--offWhite1-text);
}

.footer_logo {
  max-width: 120px;
}

.foooter_company_desc {
  padding: 20px 0;
  border-bottom: 1px solid #302e41;
}

.foooter_company_desc p {
  font-size: 16px;
  font-weight: 400;
  color: var(--contact-border);
}

.social_icon_container {
  height: 50px;
  width: 50px;
  font-size-adjust: 24px;
  color: var(--white-text);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--footer-scoialBg);
}

.footer_content_container h4 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 12px;
}

.footer_links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_links ul li a {
  color: var(--contact-border);
  font-size: 16px;
  font-weight: 400;
  transition: all 0.5s ease-in-out;
}

.footer_links ul li a:hover {
  color: var(--primary-red);
}

.equal_height {
  height: 100%;
}

.footer_location {
  display: flex;
  gap: 14px;
}

.footer_location p {
  color: var(--offWhite1-text);
  font-size: 20px;
}

.footer_location a,
.footer_location span {
  font-size: 16px;
  font-weight: 400;
  color: var(--contact-border);
}

.gap_10 {
  gap: 10px;
}

.get_direction {
  margin-top: 40px;
  border-bottom: 1px solid var(--contact-border);
  width: max-content;
}

.get_direction a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: var(--contact-border);
  color: var(--contact-border);
  text-transform: uppercase;
}

.footer_arrow {
  width: 20px;
}

.design_company {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-red);
  text-align: center;
  padding-top: 30px;
  padding-bottom: 40px;
}

.design_company a {
  text-decoration: underline;
}

.congrats_slider_image_container {
  height: 520px;
}

.congrats_slider_image_container img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
  object-position: top;
}

.congrats_slider_image_containerSmall {
  height: 160px;
}

.congrats_slider_image_containerSmall img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mySwiperCongrats2 {
  padding-bottom: 30px;
}

.mySwiperCongrats2 .swiper-slide-active {
  box-shadow: 0px 4px 14px 4px #00000029;
}

/* Highlight active thumbnail with a border */
.thumb.active .congrats_slider_image_containerSmall {
  border: 4px solid var(--primary-red);
  padding: 5px;
  transition: all 0.2s ease-in-out;
}

.swiper-button-prevCongrats,
.swiper-button-nextCongrats {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  font-size: 24px;
  color: var(--black);
  background: var(--white-text);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prevCongrats {
  left: 10px;
}

.swiper-button-nextCongrats {
  right: 10px;
}

.CDLcongrats_Section_container {
  padding: 84px 0;
  position: relative;
}

.smallTyre_shape {
  height: 300px;
  max-width: 200px;
  position: absolute;
  top: 20px;
  right: 0;
}

.bigTyre_shape {
  width: 100%;
  position: absolute;
  bottom: 0%;
  z-index: 0;
}

.margin80 {
  margin: 84px 0;
}

.tin2bg {
  background: var(--tint2);
}

/* 0000000000 HOME PAGE CSS ENDS FROM HERE 000000 */

/* ===================== TRANING PHILOSOPHY PROCESS PAGE CSS STARS FROM HERE ============= */
.hero_heading_Section_container {
  max-width: 600px;
  position: absolute;
  top: 50%;
}

.indiusryInfoSlaries_container {
  max-width: 800px !important;
}

.hero_heading_Section_container h2 {
  color: var(--offWhite1-text);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
}

.AngleBreadCrump {
  height: 16px;
  width: 16px;
  object-fit: contain;
}

.back_breadCrump p {
  color: var(--wite1);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
}

.back_breadCrump {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
}

.back_breadCrump a {
  color: var(--offWhite1-text);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 600;
}

.philosophy_description_container {
  padding: 84px 0;
  overflow-x: hidden;
}

.left_Text_philosophy h5 {
  font-size: clamp(18px, 3vw, 20px);
  color: var(--primary-red);
  padding-bottom: 20px;
  font-weight: 600;
}

.left_Text_philosophy ul {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.left_Text_philosophy ul li {
  position: relative;
  padding-left: 35px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
}

.left_Text_philosophy p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-black1);
  font-weight: 400;
}

.left_Text_philosophy ul li::before {
  content: "";
  position: absolute;
  background: url("../images/icons/doubleTick.svg");
  height: 25px;
  width: 25px;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 2px;
}

.right_philosophy_text_container .blue_bg_container {
  background-color: var(--primary-indigo);
  color: var(--offWhite1-text);
  padding: 24px;
}

.equal_heightequalRigth {
  height: 620px;
  overflow: hidden;
}

.blue_bg_container h4 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
}

.blue_bg_container p {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
}

.philosophyRight1_imge {
  height: 100%;
}

.philosophyRight1_imge img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.small_imgaae_container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.success_rate_container {
  /* padding: 24px; */
  padding: 20px 0;
  background: var(--tint2);
}

/*
.progress-ring {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-indigo) 0% 90%, var(--wite1) 0%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .progress-ring::before {
    content: '';
    position: absolute;
    width: 130px;
    height: 130px;
    background-color: var(--tint2);
    border-radius: 50%;
    z-index: 1;
  }

  .progress-ring span {
    position: relative;
    z-index: 2;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-indigo);
    text-align: center;
  }

  .progress-ring small {
    display: block;
    font-size: 12px;
    font-weight: normal;
    color: #333;
  } */

/* ===================== TRANING PHILOSOPHY PROCESS PAGE CSS ENDS FORM HERE ============= */

/* ===================== CDL LICENSE SECTION CSS STARS FORM HERE ============= */

.rightSmallImage_contaienr {
  height: 200px;
  overflow: hidden;
}

.rightSmallImage_contaienr img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.leftSmallImage_contaienr {
  height: 400px;
  overflow: hidden;
}

.leftSmallImage_contaienr img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.cdlLicense_content_container h5 {
  color: var(--primary-red);
  padding-bottom: 10px;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
}

.cdlLicense_content_container p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-black1);
  font-weight: 400;
  padding-bottom: 20px;
}

.bootom_image_contaienr {
  height: 300px;
  width: 100%;
  overflow: hidden;
}

.bootom_image_contaienr img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.classCDL_heading h5 {
  font-size: clamp(18px, 3vw, 20px);
  color: var(--primary-indigo);
  font-weight: 600;
  text-align: center;
}

.left_class_div_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  box-shadow: 2px 2px 12px 0 #0000001a;
  background: var(--tint2);
  border-radius: 4px;
  padding: 48px 24px;
  position: relative;
}

.left_class_div_container ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 15px;
  text-align: start;
}

.left_class_div_container ul li {
  position: relative;
  padding-left: 35px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: var(--black);
}

.left_class_div_container ul li::before {
  content: "";
  position: absolute;
  background: url("./images/icons/doubleTick.svg");
  height: 25px;
  width: 25px;
  left: 0;
  top: 2px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.CDLClass_traning_container {
  margin-top: 200px;
}

.leftClass_circle_container {
  width: 100%;
  height: auto;
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leftClass_circle_inner_container {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-color: var(--primary-indigo);
  color: var(--offWhite1-text);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.leftClass_circle_inner_container p {
  font-size: 32px !important;
  font-weight: 800 !important;
  color: var(--offWhite1-text) !important;
}

.left_class_div_container h5 {
  font-size: 20px;
  font-weight: 600;
}

.left_class_div_container p {
  color: var(--text-black1);
  font-size: 16px;
  font-weight: 400;
}

.frame_selection_image {
  /* border: 1px solid rebeccapurple; */
  width: 100%;
  position: absolute;
  top: -38%;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1400px) {
  .leftClass_circle_container {
    top: -125px;
  }
}

@media (max-width: 1200px) {
  .leftClass_circle_container {
    top: -105px;
  }

  .leftClass_circle_inner_container {
    height: 80px;
    width: 80px;
  }
}

/* ===================== CDL LICENSE SECTION CSS ENDS FORM  ============= */

/* =============== INDUSTRY INFO SALARIES SECTION CSS STARTS FORM HERE ============= */
.industryInfoSalaryTableContainer {
  padding-top: 84px;
}

.salary_table th {
  background-color: var(--table-th);
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
}

.salary_table td,
.salary_table th {
  border: 1px solid var(--table-border);
}

.salary_table tr td {
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-black1);
}

.Data_compiled_text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-black1);
  padding-top: 10px;
}

.Data_compiled_text a {
  color: var(--primary-red);
  text-decoration: underline;
}

/* =============== INDUSTRY INFO SALARIES SECTION CSS ENDS FORM HERE ============= */

/* =============== INDUSTRY INFO SECTION CSS STARS FORM HERE ============= */
.driving_carrer_benefit_container {
  padding: 84px 0;
}

.drivingCareer_benefit_heading_container {
  padding-bottom: 50px;
}

.drivingCareer_benefit_heading_container h2 {
  color: var(--primary-red);
  text-align: center;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 32px);
  padding-bottom: 5px;
}

.drivingCareer_benefit_heading_container p {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: var(--text-black1);
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.driving_benefit_container {
  padding: 48px 24px;
  box-shadow: 0px 0px 14px 0px #0000000a, 0px 4px 8px 3px #0000000d;
  background: var(--white-text);
}

.image_container {
  height: 80px;
  width: 80px;
  overflow: hidden;
}

.image_container img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.driving_benefit_container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.driving_benefit_container h4 {
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  text-align: center; 
  margin-top: 34px;
  margin-bottom: 12px;
}

.driving_benefit_container p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-black1);
  text-align: center;
}

/* =============== INDUSTRY INFO SECTION ENDS FORM HERE ============= */

/* ============= Trucking industry links section css stars form here =============  */
.indusry_links_section_container {
  padding: 84px 0;
}

.truking_industry_links_content_container h2 {
  color: var(--primary-red);
  font-weight: 800;
  font-size: clamp(24px, 4vw, 32px);
  padding-bottom: 5px;
}

.rising_pay_name_container {
  background: var(--tint2);
  width: max-content;
  position: relative;
  padding: 12px 30px 12px 12px;
  margin: 20px 0;
}

.rising_pay_name_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background: var(--primary-red);
}

.rising_pay_name_container h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
}

.rising_pay_name_container span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-black1);
}

.truking_industry_links_content_container h5 {
  color: var(--text-black1);
  font-size: 18px;
  font-weight: 600;
  padding-top: 10px;
}

.truking_industry_links_content_container ul {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.truking_industry_links_content_container ul li {
  position: relative;
  padding-left: 35px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: var(--black);
}

.truking_industry_links_content_container ul li::before {
  content: "";
  position: absolute;
  background: url("./images/icons/doubleTick.svg");
  height: 25px;
  width: 25px;
  left: 0;
  top: 2px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.truking_industry_links_content_container small {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-black1);
}

.association_Description_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.border_ligtPrimary {
  border: 1px solid #f2cbc7;
  box-shadow: 0px 0px 14px 0px #0000000a, 0px 4px 8px 3px #0000000d;
  margin-top: 50px;
}

.association_Description_container h5 {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.association_Description_container a {
  color: var(--primary-red);
  font-weight: 500;
  text-decoration: underline;
}

.association_Description_container p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-black1);
  font-weight: 400;
  text-align: center;
}

.border_right {
  border-right: 1px solid #f2cbc7;
}

/* ============= Trucking industry links section css ends from here =============  */

/* ========= PHOTO GALLARY SECTION CSS STARTS FORM HERE ========= */
.photoGallarySectionContainer {
  padding: 84px 0;
}

.height320 {
  height: 320px;
  overflow: hidden;
}

.height320 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.w50 {
  width: 50%;
  overflow: hidden;
}

.height500 {
  height: 524px;
  overflow: hidden;
}

.height500 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.height250 {
  height: 250px;
}

.height250 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* ========= PHOTO GALLARY SECTION CSS ENS FORM HERE========= */

/* ========= VIDEO GALLARY SECTION CSS STARTS FORM HERE =====/ */
.videoGallary_container {
  padding-top: 84px;
}

.video_Gallary_container {
  height: 440px;
  width: 100%;
}

.video_Gallary_container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.contact_bg_tint_contaner {
  padding: 32px;
  background: var(--tint2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.contact_icon_image_container {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: #f2f1f9;
  padding: 25px;
  margin: auto;
}

.contact_icon_image_container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.contact_bg_tint_contaner h6 {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding-top: 10px;
}

.contact_bg_tint_contaner p {
  color: var(--text-black1);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  text-align: center;
}

/* ========= VIDEO GALLARY SECTION CSS ENDS FORM HERE  =====/ */

.circle {
  width: 100%;
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 1.2;
}

.circle canvas {
  vertical-align: top;
  height: 160px !important;
  width: 160px !important;
}

.circle strong {
  position: absolute;
  width: 100%;
  font-size: clamp(24px, 4vw, 32px);
  z-index: 5;
  font-weight: 800;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-indigo);
}

.circle .insideCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 115px;
  width: 115px;
  border-radius: 50%;
  box-shadow: 0px 0px 8px 0px #0000001a;
}

.circle strong i {
  font-style: normal;
  font-size: 0.6em;
  font-weight: normal;
}

.circle span {
  display: block;
  color: var(--text-black1);
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1400px) {
  .logo_hero {
    height: 105px;
    width: 140px;
    outline: 10px solid #ffffff2e;
    position: absolute;
    z-index: 10;
    background: var(--offWhite1-text);
    left: 0;
    padding: 5px 10px;
    top: -10px;
  }

  .swiper-paginationHome {
    left: 85% !important;
  }
}

@media (max-width: 1200px) {
  .circle canvas {
    vertical-align: top;
    height: 120px !important;
    width: 120px !important;
  }

  .circle .insideCircle {
    height: 80px;
    width: 80px;
  }

  .circle strong {
    font-size: 24px;
  }

  .circle span {
    bottom: 5px;
  }

  .swiper-paginationHome {
    left: 82% !important;
  }
  .gap_25 {
    gap: 20px;
  }
}

.large_show{
	display: flex;
}
/* Large devices (desktops, 992px) */

@media (max-width: 992px) {
  .About_text_container_home,
  .home_page_whyChoose_container,
  .home_page_contact_container,
  .CDLcongrats_Section_container,
  .philosophy_description_container,
  .driving_carrer_benefit_container,
  .indusry_links_section_container,
  .photoGallarySectionContainer,
  .home_page_success_stories_container {
    padding: 44px 0;
  }

  .industryInfoSalaryTableContainer,
  .videoGallary_container {
    padding-top: 44px;
  }

  .about_home_left_image {
    position: static;
    width: 100%;
    height: 450px;
  }

  /* nav bar small screen   */
  .gap_25 {
    gap: 0;
  }

  .dropdownNavLink {
    display: none !important;
  }

  .offcanvas {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    height: 100vh !important;
    overflow-y: scroll;
    width: 100%;
    z-index: 1100 !important;
  }

  .offcanvas-body {
    padding: 0;
    background-color: var(--white-text);
  }

  .nav-item {
    width: 100%;
    border-bottom: 0;
    border-bottom: 1px solid #e2e2e2;
  }

  .nav-link {
    width: 100% !important;
    padding: 16px 24px !important;
    background: var(--white-color);
  }

  .navbar-nav .nav-link.active {
    color: var(--text-greyNeutral) !important;
  }

  .nav_bar_large .navbar-nav .nav-item a:hover {
    color: var(--neutral-black1-font);
  }

  .nav_bar_large .navbar-nav .nav-item a.active {
    color: var(--neutral-black1-font);
  }
.nav_bar_large .navbar-nav .nav-item a.active::before {
  display: none;
}
  .has-dropdown .dropdown {
    position: static;
    width: 100%;
    display: block;
  }

  .nav-link .fa-angle-down {
    display: none;
  }

  .nested-dropdown {
    position: static;
    width: 100%;
  }

  .nav_bar_large .navbar-nav .nav-item a {
    color: var(--text-greyNeutral);
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #e2e2e2;
  }

  .dropdown_padding li a {
    border-bottom: 1px solid #e2e2e2;
  }

  .dropdown_padding li {
    border-bottom: 0;
  }

  .has-dropdown {
    padding: 0;
  }

  .offcanvas-header button {
    background: transparent;
    border: none;
    color: var(--white-text);
  }

  .navbar-toggler {
    margin-left: auto;
  }

  /* small nav css ends  */

  .logo_hero {
    top: 30px;
    height: 70px;
    width: 90px;
  }

  .swiper-paginationHome {
    left: 76% !important;
  }

  .hero_Section_banner {
    height: 65vh;
  }

  .home_page_why_choose_content_container {
    height: 350px;
  }

  .mySwiperSuccessStories {
    padding-bottom: 40px;
  }

  .success_story_height {
    height: auto;
  }

  .congrats_slider_image_container {
    height: 400px;
  }

  .banner_clip_image_container {
    right: -250px;
    height: 100%;
  }

  .hero_Section_banner2 {
    height: 500px;
  }

  .equal_heightequalRigth {
    height: auto;
  }

  .leftClass_circle_container {
    top: -165px;
  }

  .leftClass_circle_inner_container {
    height: 100px;
    width: 100px;
  }

  .left_class_div_container {
    margin-top: 160px;
  }

  .CDLClass_traning_container {
    margin-top: 20px;
  }

  .border_right {
    border-bottom: 1px solid #f2cbc7;
    border-right: 0;
  }
}

/* Medium devices (tablets, 768px) */
@media (max-width: 768px) {
  .success_stories_left_section {
    height: 280px;
  }

  .logo_hero {
    left: 25px;
  }

  .hero_Section_banner {
    height: 75vh;
  }

  .hero_Section_banner2 {
    height: 360px;
  }

  .swiper-paginationHome {
    left: 70% !important;
    width: 250px !important;
  }

  .left_contact_container {
    padding: 48px 20px;
  }

  .rightImageContact {
    height: 350px;
    padding: 20px;
  }

  .mySwiperCongrats2 {
    padding: 10px;
  }

  .congrats_slider_image_containerSmall {
    height: 100px;
  }

  .banner_clip_image_container {
    right: -350px;
    height: 100%;
  }

  .banner_icon a {
    word-wrap: wrap;
  }

  .banner_contact_details_Container {
    margin-top: 20px;
  }

  .rightSmallImage_contaienr {
    height: 140px;
    overflow: hidden;
  }

  .leftSmallImage_contaienr {
    height: 280px;
    overflow: hidden;
  }

  .bootom_image_contaienr {
    height: 220px;
  }

  .w50 {
    width: 100%;
    overflow: hidden;
  }

  .height500,
  .height250 {
    height: 320px;
    overflow: hidden;
  }

  .video_Gallary_container {
    height: 320px;
  }

  .chooseTheRightCDLSection {
    padding: 64px 0;
  }

  .hero_section_heading_container {
    gap: 16px;
  }
}

/* Small devices (landscape phones, 576px) */
@media (max-width: 576px) {
  .swiper-paginationHome {
    left: 75% !important;
    width: 150px !important;
  }

  .banner_clip_image_container {
    right: -400px;
  }

  .banner_icon {
    max-width: 250px;
    word-break: break-word;
  }

  .leftClass_circle_container {
    top: -155px;
  }

  .leftClass_circle_inner_container {
    height: 100px;
    width: 100px;
  }

  .left_class_div_container {
    margin-top: 160px;
  }

  .CDLClass_traning_container {
    margin-top: 20px;
  }

  .clipped_image {
    max-width: 250px;
  }

  .homeSlider_pagination .swiper-button-nextHome,
  .homeSlider_pagination .swiper-button-prevHome {
    bottom: 20px;
  }

  .home_page_whyChoose_containerpadding {
    padding: 0 !important;
  }
	.large_show{
		display: none;
	}
}

@media (max-width: 480px) {
  .banner_icon {
    max-width: 180px;
    word-break: break-word;
  }

  .leftClass_circle_container {
    top: -128px;
  }
}

@media (max-width: 420px) {
  .leftClass_circle_container {
    top: -123px;
  }

  .leftClass_circle_inner_container {
    height: 80px;
    width: 80px;
  }
}

@media (max-width: 400px) {
  .leftClass_circle_container {
    top: -110px;
  }

  .leftClass_circle_inner_container {
    height: 80px;
    width: 80px;
  }
}

/* new css added  */


/* Initial hidden state(for last banner animation) */
.banner_content_container {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.banner_clip_image_container .clipped_image {
  opacity: 0;
  transform: translateX(80px); 
  transition: all 0.8s ease;
}

/* Visible state */
.banner_content_container.animate {
  opacity: 1;
  transform: translateY(0);
}

.banner_clip_image_container .clipped_image.animate {
  opacity: 1;
  transform: translateX(0);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.banner_clip_image_container .clipped_image.animate {
  animation: slideInRight 0.8s ease forwards;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Initial state  home slider */
.hero_section_heading_container h1,
.hero_section_heading_container .btn_primary_red {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Active/animate state */
.hero_section_heading_container.animate h1,
.hero_section_heading_container.animate .btn_primary_red {
  opacity: 1;
  transform: translateY(0);
}


