/* =================================================
   Job Role: Web Developer & Media Graphic Designer
   Website Designed By Abdul Rahman Raza
   Official Website www.designerich.info
=================================================== */

/* =======================
   Universal Font Face Styles
======================= */
@font-face {
  font-family: Ethnocentric;
  src: url('/fonts/ethnocentric.woff2') format('woff2'),
       url('/fonts/ethnocentric.woff') format('woff');
}

@font-face {
    font-family: 'ethnocentricitalic';
    src: url('webfontkit/ethnocentric_rg_it-webfont.woff2') format('woff2'),
         url('webfontkit/ethnocentric_rg_it-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'ethnocentricregular';
    src: url('webfontkit/ethnocentric_rg-webfont.woff2') format('woff2'),
         url('webfontkit/ethnocentric_rg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


/* === Slider Base Corner Beat === */

/* Each slide acts as container for badges + corners */


.corner {
  position: absolute;
  width: 20px;
  height: 80px;
  border: 2px dashed #fff;
  z-index: 100;
}

.corner::before,
.corner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

/* Medium circle */
.corner::before {
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
}

/* Small filled dot */
.corner::after {
  width: 12px;
  height: 12px;
  background: #fff;
  animation: pulseZoom 1s ease-in-out infinite;
}

/* Zoom animation */
@keyframes pulseZoom {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.15); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* === Variants (desktop default) === */
.top-right {
  top: 70px;
  right: 460px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 10%;
}
.top-right::before {
  bottom: -30px;
  right: -14px;
}
.top-right::after {
  bottom: -23px;
  right: -7px;
}

.bottom-left {
  bottom: 100px;
  left: 470px;
  border-top: none;
  border-right: none;
  border-bottom-left-radius: 10%;
}
.bottom-left::before {
  top: -30px;
  left: -14px;
}
.bottom-left::after {
  top: -23px;
  left: -7px;
}

.top-left {
  top: 80px;
  left: 540px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 10%;
}
.top-left::before {
  bottom: -30px;
  left: -14px;
}
.top-left::after {
  bottom: -23px;
  left: -7px;
}




/* === Slider Base Corner Beat === */


.hero-text {
  font-family: ethnocentricregular, sans-serif;
}

/* =======================
   Universal Styles
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --header-h: 64px;
  --brand-h: 40px;
}

body {
  font-family:Montserrat, sans-serif;
  background:#000 url('../images/uploads/bg-gradient.png') no-repeat left top/cover;
  color: #fff;
  line-height: 1.6;
}

/* =======================
   Lazy Load
======================= */
.lazy {
  opacity: 0;
  transition: opacity 0.6s;
}
.lazy-loaded {
  opacity: 1;
}

/* =======================
   Preloader
======================= */
#preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  z-index: 9999;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =======================
   Header & Navigation
======================= */
header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: linear-gradient(90deg,#000,#444);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1rem;
  height: var(--header-h);
  flex-wrap: wrap;
}

.brand img {
  height: var(--brand-h);
  display: block;
}

/* Nav Desktop */
nav {
  display: flex;
  align-items: center;
  
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.25rem;
  display: inline-block;
  transition: opacity 0.3s ease;
}
nav a:hover {
  opacity: 0.9;
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 36px;
  height: 28px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 4px;
  z-index: 1301;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .28s cubic-bezier(.2,.9,.2,1), opacity .18s ease;
}
header.open .nav-toggle span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
header.open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(.8);
}
header.open .nav-toggle span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

nav li a.active, .dropdown-item li a.active {
    color: #aaf900;
}

.dropdown-menu a.active{
    color: #aaf900;
}
/* Mobile Navigation */
@media(max-width:991px){
  .nav-toggle { display: flex; }

  nav {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: 100%; background: #111;
    padding: 4rem 1rem 1rem;
    transition: right .3s ease;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1200;
  }
  header.open nav { right: 0; }

  nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    width: 100%;
  }
  nav li {
    width: 100%;
    text-align: left;
  }
  nav a {
    width: 100%;
    padding: 0.75rem 0;
    color: #fff;
  }



  .nav-item.dropdown > .nav-link::after {
    content: "\25BC"; font-size: 0.65rem; color: #ccc; float: right; margin-left: auto;
  }
  .dropdown.open > .nav-link::after { content: "\25B2"; }

  .overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0; pointer-events: none;
    transition: opacity .22s;
    z-index: 1190;
  }
  header.open .overlay { display: block; opacity: 1; pointer-events: auto; }

  header.open .nav-toggle { position: fixed; top: 1rem; right: 1rem; }

  .dropdown-mobile {
    max-height: 0; overflow: hidden; display: none; opacity: 0;
    transition: max-height .32s cubic-bezier(.2,.9,.2,1), opacity .28s ease, padding .28s ease;
    padding: 0;
  }
  .dropdown.open .dropdown-mobile {
    display: block;
    max-height: 420px;
    opacity: 1;
    padding: 0.5rem 0 0.5rem 1rem;
  }
  .dropdown-mobile .dropdown-item {
    display: block;
    color: #fff;
    padding: 0.32rem 0;
    text-decoration: none;
  }
}

/* Mega Menu (Desktop) */
.mega-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #111;
  padding: 0 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  z-index: 1250;
  transition: max-height .36s cubic-bezier(.2,.9,.2,1), opacity .28s ease, padding .3s ease;
}
.mega-menu.open {
  max-height: 720px;
  opacity: 1;
  padding: 1.5rem 2rem;
}

@media(min-width:992px){
  .mega-inner {
    display: flex;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  .mega-col {
    flex: 1;
    text-align: center;
    color: #fff;
    padding: 0.25rem 1rem;
  }
  .mega-col img {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 0.6rem;
    display: block;
    border-radius: 6px;
  }
  .row-actions {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
  }
  .btn-detail,
  .btn-book {
        padding: 0.45rem 0.75rem;
        border-radius: 0;
        font-weight: 300;
        text-decoration: none;
        font-size: 0.95rem;
        border: 0;
        cursor: pointer;
        background: transparent;
        color: #fff;
  }
  .dropdown-mobile { display: none !important; max-height: 0 !important; opacity: 0 !important; padding: 0 !important; }
}

/* =======================
   Slider & Left Content
======================= */

/* =======================
   Neon Circle
======================= */
.neon-circle {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -25%);
  width: 680px;
  height: 220px;
  border-radius: 50%;
  border: 4px solid #a6f700;
  box-shadow: 0 0 25px #a6f700, 0 0 50px #a6f700;
  animation: neonBlink 3s infinite ease-in-out;
  z-index: 1;
}

@keyframes neonBlink {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 10px #a6f700, 0 0 20px #a6f700; }
  50% { opacity: 1; box-shadow: 0 0 10px #a6f700, 0 0 20px #a6f700; }
}

/* =======================
   Layout
======================= */


.slider-container-controller{
  max-width:1366px;
  margin:0px auto;
    display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 50vh;

}


.slider-container {
  background: url('../images/uploads/gradient-bg-slider.png') no-repeat left top/cover;
}



.slider-text {
  flex: 1 1 30%;
  padding: 20px;
}

.slider-text h1 {
  font-size: 3.9rem;
  margin-bottom: 20px;
  color: #fff;
  line-height:normal;
  animation: fadeUp 1.5s ease-out forwards;
}

.slider-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #ccc;
}

.slider-text .btn {
  background: #fff;
  color: #000;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}

.slider-text .btn-black {
  background: #000;
  color: #fff;
}

.slider-text .btn:hover,
.slider-text .btn-black:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* =======================
   Slider
======================= */
.slider {
  flex: 1 1 55%;
  position: relative;
  overflow: hidden;

}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  z-index: 5;
  position:relative;
  min-height:580px;

}

.slide {
  min-width: 100%;
  flex: 1 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.slide img {
  max-width:80%;
  height: auto;
  border-radius: 10px;
  animation: fadeCar 1s ease forwards;
}

/* =======================
   Badges
======================= */
.badge {
  position: absolute;
  background: rgba(40,40,40,0.9);
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  max-width: 180px;
  color: #fff;
}

.badge h4 { font-size: 0.90rem; margin-bottom: 5px; color: #fff; }
.badge p { font-size: 0.8rem; color: #ccc; }

.badge-safety { top: 0%; left: 8.88%; z-index:120;}
.badge-eco { top: 0%; right:  0%; z-index:120;}
.badge-charge { bottom: 11%; right: 7.78%; background: rgba(20,20,20,0.9); z-index:120;}

/* =======================
   Animations
======================= */
@keyframes fadeUp { 0%{opacity:0;transform:translateY(20px);}100%{opacity:1;transform:translateY(0);} }
@keyframes fadeCar { 0%{opacity:0;transform:scale(0.9);}100%{opacity:1;transform:scale(1);} }

/* =======================
   Responsive
======================= */

@media (min-width: 767px) and (max-width: 900px) {



    .feature-text h2 {
        font-size: 2.30vh !important;
    }
	
	section.slidex .sliderex .btn.book, section.slidex .sliderex .btn.catalogue {
    font-size: 1.60vh;
}


.story-text, .story-image {
        margin-top: 6rem;
    }

.vision-cars img {
        width: 100% !important;
    }
	
	
.left, .right {
    flex: 1 1 100% !important;
    padding: 2rem 2rem !important;
}

.form-container {
    padding: 2rem !important;
}

}

@media (min-width: 430px) and (max-width: 767px) {

.feature-img img {
    margin: 0px auto;
    display: block;
}

.feature-section .feature-text {
    max-width: 93%;
}

.feature-text h2 {
        font-size: 3vh !important;
    }
	
	
.story-section {
        padding: 0 !important;
        margin: 0 !important;
    }	
	
.story-text, .story-image {
        margin-top: 6rem;
    }

.vision-cars img {
        width: 100% !important;
    }
	
.vision-buttons .book, .vision-buttons .catalogue {
    font-size: 0.7rem !important;
    padding: 0.5rem 1rem !important;
    display: block !important;
    height: auto !important;
}


.form-grid {
    display: block !important;
    grid-template-columns: 1fr 1fr;
    margin: 0!important;
}

.form-grid input {
    margin-top: 1rem;
}

.left, .right {
    flex: 1 1 100% !important;
    padding: 2rem 2rem !important;
}

.form-container {
    padding: 2rem !important;
}

}

@media (min-width: 0px) and (max-width: 430px) {

.feature-img img {
    margin: 0px auto;
    display: block;
	width:60%;
}

.feature-section .feature-text {
    max-width: 93%;
}

	.feature-text h2 {
    font-size: 2vh !important;
}


.story-section {
        padding: 0 !important;
        margin: 0 !important;
    }	
	
.story-text, .story-image {
        margin-top: 6rem;
    }

.vision-cars img {
        width: 100% !important;
    }
	
.vision-buttons .book, .vision-buttons .catalogue {
    font-size: 0.7rem !important;
    padding: 0.5rem 1rem !important;
    display: block !important;
    height: auto !important;
}

.form-grid {
    display: block !important;
    grid-template-columns: 1fr 1fr;
    margin: 0!important;
}

.form-grid input {
    margin-top: 1rem;
}

.left, .right {
    flex: 1 1 100% !important;
    padding: 2rem 2rem !important;
}

.form-container {
    padding: 2rem !important;
}

.form-grid input, .form-grid select {
    margin: 0rem 0rem 1rem 0rem;
}

}
@media (min-width: 767px) and (max-width: 1014px) {
.hero-image {
    margin-top: 3rem;
}

.cta button.btn {
    margin: auto;
    float: unset;
    display: block;
}
}
@media (min-width: 0px) and (max-width: 767px) {
.hero-image {
    flex: 1 1 auto !important;
}

.cta button.btn {
    margin: auto;
    float: unset;
    display: block;
}
}

@media (min-width: 0px) and (max-width: 360px) {

.slider-text .btn {
    font-size: 1.50vh;
}

.footer-bottom {
    margin-top: -57px!important;
    padding-bottom: 30px!important;
}

	.feature-text h2 {
    font-size: 1.88vh !important;
}


.story-section {
        padding: 0 !important;
        margin: 0 !important;
    }	
	
.story-text, .story-image {
        margin-top: 6rem;
    }

.vision-cars img {
        width: 100% !important;
    }
	
.vision-buttons .book, .vision-buttons .catalogue {
    font-size: 0.7rem !important;
    padding: 0.5rem 1rem !important;
    display: block !important;
    height: auto !important;
}

}

@media (min-width: 0px) and (max-width: 900px) {
	
.banner-right h1 {
    font-size: 1rem !important;
    text-shadow: 1px 2px 3px #000;
}

.banner-right p {
    font-size: 0.9rem !important;
    text-shadow: 1px 2px 3px #000;
}

.btn-custom {
    font-size: 0.6rem;
}

}

@media (min-width: 1207px) and (max-width: 1311px) {

	.left, .right {
    flex: 1 1 70% !important;
    padding: 2rem 2rem !important;
}

.form-container {
    padding: 2rem !important;
}

	
}

@media (min-width: 900px) and (max-width: 1207px) {
	.left, .right {
    flex: 1 1 100% !important;
    padding: 2rem 2rem !important;
}

.form-container {
    padding: 2rem !important;
}

}

@media (min-width: 792px) and (max-width: 1007px) {
	
.banner-right h1 {
    font-size: 1rem !important;
    text-shadow: 1px 2px 3px #000;
}

.banner-right p {
    font-size: 0.9rem !important;
    text-shadow: 1px 2px 3px #000;
}

.btn-custom {
    font-size: 0.8rem;
}

.text-content {
    max-width: 27rem !important;
}

.left, .right {
    flex: 1 1 100% !important;
    padding: 2rem 2rem !important;
}

.form-container {
    padding: 2rem !important;
}

}

@media (min-width: 1007px) and (max-width: 1175px) {
	.text-content {
    max-width: 35rem !important;
}


}
@media (min-width: 0px) and (max-width: 900px) {
	


section.slidex h1 {  font-size: 3vh !important;}

.text-content h1 {  font-size: 2.55vh !important;}

  .slider-container { flex-direction: column; text-align: center;   }
  .slider-container-controller {max-width: 100%; min-height: auto; padding: 1rem;}
  .slider-text { flex: 1 1 100%; padding: 0; margin-bottom: 20px;  max-width: 100%;}
  .slider { flex: 1 1 100%; padding-top:4rem;}
  .badge { font-size: 0.75rem; max-width: 140px; display:none; }
  .neon-circle { width: 90%; height: 100px; top:inherit; bottom:0rem;}
  
  
  .slides {min-height: auto; padding-bottom:3rem;}
    .corner {
    width: 60px;
    height: 60px;
	display:none;
  }
  .corner::before {
    width: 18px;
    height: 18px;
  }
  .corner::after {
    width: 9px;
    height: 9px;
  }

  /* adjust positions for tablet */
  .top-right { top: 50px; right: -200px; }
  .bottom-left { bottom: 70px; left: 200px; }
  .top-left { top: 40px; left: 250px; }
  
  
  .slider-text h1 {
    font-size: 5vh;
}
}


@media (min-width: 900px) and (max-width: 1007px) {
  .slider {
  flex: 1 1 100%;
  position: relative;
  overflow: hidden;
  padding-top:4rem;

}
 nav ul {gap: 1rem;}
.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  z-index: 5;
  position:relative;
  min-height:580px;

}

.slide {
  min-width: 100%;
  flex: 1 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.slide img {
  max-width:42rem;
  height: auto;
  border-radius: 10px;
  animation: fadeCar 1s ease forwards;
}
  .slider-text h1 {
    font-size: 6vh;
}
.slider-container-controller {max-width: 100%; min-height: auto;}
  
  
.badge-safety { top: 0%; left:10.17rem; z-index:120;}
.badge-eco { top: 0%; right:  0%; z-index:120;}
.badge-charge { bottom: 11%; right: 7.78%; background: rgba(20,20,20,0.9); z-index:120;}
.neon-circle { width: 90%; height: 100px; top:inherit; bottom:3rem;}


  .top-right { top: 4rem; right: 29rem; display:none; }
  .bottom-left { bottom: 6rem; left: 33rem; display:none; }
  .top-left { top: 4rem; left: 44rem; display:none; }
  
  .slider-text {
    flex: 1 1 100%;
    padding: 20px;
	text-align: center;
}

}

@media (min-width: 1007px) and (max-width: 1311px) {
	
	  .slider {
  flex: 1 1 47%;
  position: relative;
  overflow: hidden;
  
  
  

}
.slider-container-controller {max-width: 100%; min-height: auto;}
.neon-circle { width: 90%; height: 100px; top:inherit; bottom:-1rem;}
  .slider-text h1 {
    font-size: 6vh;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  z-index: 5;
  position:relative;
  min-height:auto;

}

.slide {
  min-width: 100%;
  flex: 1 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.slide img {
  max-width:80%;
  height: auto;
  border-radius: 10px;
  animation: fadeCar 1s ease forwards;
}

  .top-right { top: 4rem; right: 29rem; display:none; }
  .bottom-left { bottom: 6rem; left: 33rem; display:none; }
  .top-left { top: 4rem; left: 44rem; display:none; }
  
 .badge p {font-size: 0.7rem;} 
 .badge h4 {font-size: 0.70rem;}
 .slider-text .btn { font-size: 0.7rem;}
 
 nav ul {gap: 1.10rem;}
}

/* =======================
   Banner
======================= */
.banner {
  position: relative;
  background: url('../images/uploads/powerup_bg.png') no-repeat left top/cover;
  color: #fff;
  padding: 20px 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index:1;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 2;
}
.banner-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.banner-left,
.banner-right {
  flex: 1 1 45%;
  min-width: 280px;
}
.banner-left { text-align: center; }
.banner-left img { width: 100%; max-width: 480px; }
.banner-right { text-align: left; }
.banner-right h1 { font-size: 2rem; font-weight: bold; margin-bottom: 10px; }
.banner-right p { font-size: 1rem; margin: 15px 0; }
.btn-custom {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 25px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}
@media(max-width:768px){
  .banner-content { flex-direction: column; }
  .banner-left { margin-bottom: 20px; }
  .banner-right { text-align: center; }
}

/* =======================
   Footer
======================= */
.site-footer {
  background: #000;
  color: #fff;
  padding: 40px 20px;
}

.site-footer hr{
	margin:1rem auto;
	border-top:1px solid oklch(44.6% .03 256.802);
	border-bottom:0px;
	border-left:0px;
	border-right:0px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-logo { text-align: center; margin-bottom: 25px; }
.footer-logo img { height: 45px; }

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-nav {
  max-width: 63rem;
  width: 100%;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: auto;
  white-space: nowrap;
}
.footer-nav ul::-webkit-scrollbar { height: 6px; }
.footer-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.footer-nav a:hover,
.footer-nav a.active { color: #b6ff00; }

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}
.social-links a {
  color: #fff;
  font-size: 18px;
}
.social-links a:hover { color: #b6ff00; }

@media(max-width:768px){
  .footer-row { flex-direction: column; text-align: center; }
  .social-links { justify-content: center; margin-top: 15px; }
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin: 30px 0;
  text-align: left;
}
.footer-col h4 { margin-bottom: 12px; font-size: 16px; font-weight: bold; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #ccc; text-decoration: none; font-size: 14px; }
.footer-col ul li a.active {color: #aaf900;}
.footer-col ul li a:hover { color: #b6ff00; }

.newsletter p { font-size: 13px; margin-bottom: 12px; }
.newsletter form { display: flex; flex-wrap: nowrap; }
.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
}
.newsletter button {
  padding: 10px 16px;
  border: none;
  background: #b6ff00;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
  height: fit-content;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-top: 20px;
}
.newsletter input[type="email"] {
  background-color: #fff; /* white background */
  font-size:0.77rem;
  width: 100%;
}

/* =======================
   Charging
======================= */


  .section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      margin:0px auto;
      padding: 60px 5%;
      max-width: 1366px;
    }
    .text-content {
      max-width: 700px;
    }
    .text-content h1 {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .text-content p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
      color: #ccc;
    }
    .btn {
      display: inline-block;
      padding: 12px 30px;
      border: 1px solid #fff;
      background: #000;
      color: #fff;
      text-decoration: none;
      font-size: 14px;
      transition: 0.3s;
    }
    .btn:hover {
      background: #000;
      color: #fff;
    }
	.icon {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	}

	.icon img {
	max-width: 400px;
	width: 100%;
	animation: blink 2s infinite ease-in-out;
	}

	@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
	}

	
	
	
	
    /* Responsive */
    @media (max-width: 768px) {
      .section {
        flex-direction: column;
        text-align: center;
      }
      .text-content {
        margin-bottom: 30px;
      }
    }
    /* WhatsApp Button */
    .whatsapp {
      position: fixed;
      right: 20px;
      bottom: 20px;
      background: #25D366;
      border-radius: 50%;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
	  z-index;1200;
    }
    .whatsapp img {
      width: 40px;
      height: 40px;
    }
	
	
/* =======================
   Eyes Content Charging
======================= */	

.container {
      max-width: 1200px;
      margin: auto;
    }
    .feature-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 50px 0;
      flex-wrap: wrap;
    }
    .feature-section:nth-child(even) {
      flex-direction: row-reverse;
    }
    .feature-text {
      flex: 1;
      padding: 20px;
    }
    .feature-text h2 {
      font-size: 36px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 15px;
    }
    .feature-text p {
      font-size: 16px;
      color: #ccc;
    }
    .feature-img {
      flex: 1;
      padding: 10px;
    }
    .feature-img img {
      width: 90%;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }
    @media(max-width: 768px) {
      .feature-section {
        flex-direction: column;
      }
      .feature-section:nth-child(even) {
        flex-direction: column;
      }
    }	




/* =======================
   Car Charging Functions
======================= */	



    section.slidex {
      position: relative;
      text-align: center;
      padding: 40px 20px;
      overflow: hidden;
	  background: url('../images/uploads/bg-slider.png') no-repeat left top/cover;
    }

    section.slidex::before {
      content: "X10";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 20rem;
      font-weight: bold;
      color: rgba(255, 255, 255, 0.05);
      z-index: 0;
      pointer-events: none;
    }

    section.slidex h1 {
      color: #000;
      font-size: 3rem;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

 /* Base slide alignment */
section.slidex .sliderex .slide {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0.4;         /* dim unselected */
  transform: scale(0.9);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Selected (center) slide highlighted */
section.slidex .sliderex .slick-center .slide {
  opacity: 1;           /* full visible */
  transform: scale(1);  /* normal size */
}

/* Image spacing */
section.slidex .sliderex .slide img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 15px;
}

/* Caption text */
section.slidex .sliderex .caption {
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-top: 5px;

  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;   /* keep in one line */
  gap: 6px;              /* space between parts */
}

section.slidex .sliderex .caption span.color {
  display: inline-flex;
  align-items: center;
}

section.slidex .sliderex .caption span.color-box {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  border: 1px solid #000;
}


/* Button alignment */
section.slidex .sliderex .buttons {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

section.slidex .sliderex .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  border: 2px solid #000;
  cursor: pointer;
}

/* Catalogue button */
section.slidex .sliderex .btn.catalogue {
  background: #fff;
  color: #000;
}

/* Book button */
section.slidex .sliderex .btn.book {
  background: #000;
  color: #fff;
}


    section.slidex .sliderex .slick-prev, section.slidex .sliderex .slick-next {
      background: #000 !important;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      z-index: 10;
    }

    section.slidex .sliderex .slick-prev::before, section.slidex .sliderex .slick-next::before {
      color: #fff;
      font-size: 20px;
    }

    @media (max-width: 768px) {
      section.slidex .sliderex .slide img {
        width: 95%;
      }
      section.slidex::before {
        font-size: 10rem;
      }
    }
	
/* =======================
   Car Charging Functions
======================= */









