/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*=== MEDIA QUERY ===*/
@import url("https://fonts.googleapis.com/css?family=Anaheim|Quattrocento+Sans:400,700");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans:300,400,600");
@import url("font.css");

*{
  margin: 0;
  padding: 0;
  font-family: 'font_1', sans-serif!important;
}

@keyframes rotate {
 100% {
    transform: rotate( 180deg);
  }
}

@keyframes radiate {

  0%{
    transform: scale(1);
  }

  50%{
    transform: scale(1.1);
  }

  100%{
    transform: scale(1);
  }
  
}

@keyframes unrotate {
  100% {
    transform: rotate(-180deg);
  }
}

:root {
  font-family: 'font_1', sans-serif!important;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
  --graywhite: rgb(204, 204, 204);
  --primary-blue: #4A90E2;
  --bg-gradient: linear-gradient(135deg, #e0f2ff 0%, #ffffff 100%);
  --card-bg: rgba(255, 255, 255, 0.9);
}

@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}

h1{
  font-family: 'font_1', sans-serif;
  font-size: 3.5em!important;
  font-weight: 500!important;
}

@media (max-width: 550px) {
  h1{
    font-size: 2.5em!important;
  }
}

h2, h3, h4, h5, h6{
  font-weight: 600;
}


.button_primary {
    padding: 1em 2em;
    background: #0c0b0b;
    color: whitesmoke!important;
    text-decoration: none!important;
}

.button_secondary {
    padding: 1em 2em;
    background-color: #becb0a;
    color: whitesmoke!important;
    text-decoration: none!important;
}

.button_tertiary {
    padding: 1em 2em;
    background-color: #6dc7c0;
    color: whitesmoke!important;
    text-decoration: none!important;
}

.under_construction{
  background: url('../images/ecar.png');
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .6);
}

.content h1{
  color: antiquewhite;
  font-size: 62px;
  font-family: Inter;
}

.content p{
  color: rgb(180, 180, 180);
  font-size: 28px;
  margin-bottom: 50px;
  font-weight: lighter;
}

.content .mail_link{
  padding: 20px 30px;
  border-radius: 4px;
  background: linear-gradient(90deg, purple, rgb(30, 30, 100));
  color: white;
  text-decoration: none;
}


/* Real website begins */

.wrapper{
  display: flex;
  flex-direction: column;
}

.hero{
  background: url('../images/hero_image.png');
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: calc(100vw);
}

.hero .overlay{
  padding: 0 100px;
  height: 100vh;
  display: flex;
  flex-flow: column;
}

.hero .hero-nav{
  display: flex;
  justify-content: space-between;
  height: 120px;
  align-items: center;
}

.hero .hero-nav .nav-logo{
  width: 100px;
}

.nav-logo img{
  width: 100%;
}

.hero-nav .toggler{
  display: flex;
  column-gap: 30px;
  align-items: center;
}

.hero-nav .toggler span{
  color: whitesmoke;
  font-size: 24px;
}


.hero .hero-body{
  display: flex;
  height: calc(100vh - 120px);
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 30px;
  max-width: 700px;
}


.hero-body h1{
  font-size: 3.5rem;
  font-weight: 600;
  color: whitesmoke;
}

.hero-body p{
  color: whitesmoke;
  font-family: 'font_2'!important;
  font-weight: 100;
}


@media (max-width:830px) {
  .hero .overlay{
    padding: 0 50px;
  }

  .hero-body h1{
    font-size: 3rem;
    font-weight: 600;
    color: whitesmoke;
  }
}

@media (max-width:550px) {
  .hero .overlay{
    padding: 0 25px;
    background: rgba(0, 0, 0, .5);
  }

  .hero-body h1{
    font-size: 2rem;
  }

  .hero .hero-body{ 
    padding-bottom: 50px;
  }

  .hero{
    background: url('../images/hero_image.png');
    background-position: right;
  }

  .hero .hero-nav .nav-logo{
    width: 70px;
  }
}

 div.link-content{
  display: flex;
  justify-content: space-between;
  padding-bottom: 5em;
}

div.hero div.link-content a{
  color: whitesmoke;
  border-radius: 0.1em;
  text-decoration: none;
  transition: all .5s ease-in-out;
}

div.link-content .cta > a:first-of-type{
  padding: 1em 2em;
  background: #becb0a;
}

div.link-content .cta > a:first-of-type:hover{
  box-shadow: 2px 2px 15px #becb0a4b;
  /* border: 1px solid ; */
  color: #becb0a;
  background: transparent;
}

.cta_1:hover ~ .cta_2{
  padding: 1em 2em;
  background: #becb0a;
  box-shadow: none;
  color: whitesmoke!important;
}

div.link-content .cta > a:last-of-type{
  padding: 1em 2em;
  box-shadow: 2px 2px 15px #becb0a4b;
  /* border: 1px solid ; */
  color: #becb0a;
  margin-left: 20px;
}

.link-content > a:last-of-type{
  text-decoration: none;
}

@media (max-width: 555px) {
  .cta{
    display: flex;
    flex-direction: column!important;
    text-align: center;
    width: 100%;
    row-gap: 20px;
  }

  div.link-content .cta > a:last-of-type{
    margin-left: 0px;
  }
}



/* Links */

.nav_link{
  position: absolute;
  width: calc(100vw - 20px);
  height: 100vh;
  left: 0;
  top: -150vh;
  transition: all .5s ease;
  z-index: 10;
}

.nav_link .nav_sections{
  height: 100vh;
}

.nav_link .nav_sections > div:first-of-type{
  background: #161515;
  padding: 50px 100px!important;
}

div.nav_link .nav_links{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 0 8em;
}

.nav_link .nav_logo{
  width: 100px;
}

.nav_logo img{
  width: 100%;
}

.nav_links .major_links{
  display: flex;
  flex-direction: column;
  padding: 0;
}

.major_links li{
  list-style: none;
  margin: 10px 0;
  transition: transform .8s ease;
  display: block;
  width: 100%;
}

.major_links li a{
  color: var(--graywhite);
  font-size: 2em;
  text-decoration: none;
}

.major_links li:hover{
  transform: scale(.95);
}

hr{
  background: rgb(124, 124, 124);
}


.nav_links .social_links{
  display: flex;
}

.nav_links .social_links li{
  list-style: none;
  margin-right: 40px;
}

.nav_links .social_links li a{
  font-size: 1.5em;
  text-decoration: none;
  color: rgb(204, 204, 204);
}

.toggle_close{
  position: absolute;
  z-index: 10;
  right: 0;
  margin-right: 50px;
  top: 0;
  margin-top: 50px;
  cursor: pointer;
}

.toggle_close > span:first-of-type{
  color: #cccccc;
  font-size: 16px;
}

.toggle_close > span:last-of-type{
  color: white;
  font-size: 28px;
  font-weight: 100!important;
}


.rotate{
  animation: rotate .4s linear;
}

.unrotate{
  animation: unrotate .4s linear;
}

.show_nav{
  top: 0!important;
}

#toggler, #search_icon{
  cursor: pointer;
}

.nav_link .nav_sections > div:last-of-type{
  background: #0c0b0b;
}


.nav_sections .other_option{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  row-gap: 50px;
}

.other_option span a{
  text-decoration: none;
  color: var(--graywhite);
}

.other_option h5{
  color: whitesmoke;
}

.other_option .link_icon{
  transition: margin .5s ease-in-out;
}

.other_option a:hover > .link_icon{
  margin-left: 20px;
}

@media (max-width: 550px) {
  div.nav_link .nav_links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 0 2em;
  }

  .toggle_close{
    margin-right: 15px;
  }

  .nav_link .nav_logo{
    width: 70px;
  } 
}



/* Section 2 */
.section {
  padding: 100px 0 0 0;
  width: calc(100vw);
  overflow: hidden;
}

.section-2{
  padding-bottom: 100px;
}
.grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 20px;
}

.grid .grid-card{
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 25px;
  text-align: center; 
  transition: all .5s ease-in!important;
}

.grid-card:hover {
  background: #FAFAFA;
}

.grid-card:hover > span{
  color: #6dc7c0;
}

@media (max-width: 1000px) {
  .grid{
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 550px) {
  .grid{
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .nav_link .nav_sections > div:first-of-type{
    background: #161515;
    padding: 50px 25px!important;
  }

  .grid .grid-card{
    width: 100%;
  }
}


@media (max-height: 570px) {
  .hero-body h1{
    font-size: 1.5rem;
  }

  .hero-body p{
    font-size: 12px;
  }
}


/* Section 3 */
.section-3{
  background: #edeef2;
  padding-bottom: 100px;
}

.section-4{
  padding: 0;
}

.section-4 .section_4_img{
  background: url('../images/malzubic_suv.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  min-height: 350px;
}

.section-4 .section_3_content{
  padding: 100px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

@media (max-width: 550px) {
  .section-4 .section_3_content{
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
  }
}

.section-5{
  background: url('../images/malzubic_bus.png');
  height: 350px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.section-5 .overlay{
  background: rgba(0, 0, 0, .7);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-5 .overlay .watch{
  animation: radiate .5s linear infinite;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  /* border: 1px solid whitesmoke; */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 100;
  color: whitesmoke;
  background: rgba(255, 255, 255, .2);
  background: radial-gradient(#becb0a44, rgba(0, 0, 0, .8));
}

.section-4b{
  padding-bottom: 100px!important;
}

.section-4b .why-card h2{
  color: #00d2ff;
}

.carousel_card{
   height: auto!important
}

@media (max-width: 550px) {
  .my_row{
    display: flex!important;
    flex-direction: column-reverse!important;
  }

  .owl-stage{
    height: 130vh!important;
  }
}


.car_info{
  height: auto!important;
}

.car_details{
  display: flex;
  flex-direction: column;
  row-gap: 20px;  
  height: auto!important;
}

.car_details .each_row{
  display: flex;
  width: 100%;
  align-items: baseline;
  color: #444444;

}

.car_details .space_dots{
  flex-grow: 1;
  border-bottom: 2px dotted rgb(26, 26, 26);
  height: 1em;
  margin: 0 5px;
}



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


/* footer */
.footer{
  background: #0c0b0b;
}

.footer h5, .footer p, .footer a{
  color: #cccccc!important;
  text-decoration: none!important;
}

.footer ul{
  display: flex;
  flex-direction: column;
}

.footer ul li{
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 10px 0;
  transition: transform .3s ease-in;
}

.footer ul li:hover{
  transform: scale(0.92);
}

.newsletter_form{
  display: flex;
  align-items: center;
  width: 100%;
}

.newsletter_form .input_div{
  display: flex;
  width: 100%;
  background: transparent;
  align-items: center;
}

.input_div span{
  width: 25px;
  color: #cccccc;
  font-size: 22px;
  margin-right: 10px;
}

.input_div input{
  width: 100%;
  background: transparent;
  color: #cccccc;
  border: none;
  outline: none;
  padding: 0 4px;
  font-size: 14px;
}

.input_div input::placeholder{
  color: #cccccc;
}

.newsletter_form button{
  padding: 6px 12px!important;
  margin-left: 5px;
  border: none;
}

.policy_form{
  font-size: 14px;
  color: #aaaaaa;
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.custom_check{
  width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  margin-right: 5px;
  position:relative;
  display: flex;
  flex-direction: column;
}

.policy_form input{
  opacity: 0;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  cursor: pointer;
}

.custom_check .checkbox{
  width: 100%;
  height: 100%;
}

.checkbox::after{
  content: '\002B';
  position: absolute;
  color: #cccccc;
  font-size: 22px;
  top: 0;
  left: 0;
  margin-top: -11px;
  margin-left: -1px;
  display: none;
}


.policy_form input:checked + .checkbox::after{
  display: flex!important;
}

.before_footer{
  padding-top: 0px;
}









.testimonial-section {
  padding: 60px 20px;
  background: var(--bg-gradient);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 30px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info h3 { margin: 0; font-size: 1.1rem; color: #222; }
.role { margin: 0; font-size: 0.85rem; color: #777; }

.quote {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  min-height: 80px;
}

.stars { color: #FFD700; font-size: 1.2rem; margin-top: 15px; }

/* Newsletter Styling */
.newsletter-footer {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.subscribe-btn {
  background: linear-gradient(to right, #2196F3, #9C27B0);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

/* Custom Checkbox Logic */
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.custom-checkbox input { position: absolute; opacity: 0; width: 0; }

.checkmark {
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 6px;
  position: relative;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
  border-color: #2196F3;
}

.checkmark::after {
  content: "\27A4"; /* Paper Plane icon */
  position: absolute;
  color: white;
  font-size: 12px;
  left: 5px;
  top: 2px;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark::after { display: block; }

.scrollTop{
  position: fixed;
  padding: 15px 20px;
  background: #becb0a!important;
  color: black;
  font-size: 20px;
  cursor: pointer;
  right: 10px;
  bottom: 50px;
  z-index: 100;
  display: none;
}



















.charging-pulse {
  animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}