:root {
    /* ---Background Colors---- */
    --bg-color-black-shade: #0c0d10;
    --bg-color-light-grey-shade: #ebecf7;
    --bg-color-light-grey-shade-2: #ebecf6;
    --bg-color-blue-shade: #00aeef;

    /* ---Text Colors---- */
    --txt-white-color: #ffffff;
    --txt-blue-color: #00aeef;
    --txt-black-color: #1e1e1e;
    --txt-dark-gery-color: #727272;

    /* ---Border Colors---- */
    --bd-white-color: #ffffff;
    --bd-blue-color: #00aeef;

    /* ---Gradient Colors---- */
    --grad-linear-blackish-shade: linear-gradient(252.61deg,
            #000000 -0.22%,
            rgba(0, 0, 0, 0) 108.72%);
}

body {
    font-family: sans-serif;
    font-style: normal;
}

/* ************************  Customized Classes  *********************** */

/* margin */
.me-6 {
    margin-right: 6rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

/* padding */

.my-6 {
    padding-top: 12.5rem;
    padding-bottom: 5rem;
}

/* ##############################  Header  ################################## */

#main__header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}

/* ---Header Logo--- */
.header_logo img {
    width: 200px;
    object-fit: cover;
    background-size: cover;
}

.transparent__header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 9999;
}

.transparent__header.scrolled {
    background-color: var(--bg-color-black-shade);
    transition: background-color 0.3s ease-in-out;
}

/* ---Header Toggle Button--- */

.header__navbar__light .header__navbar_toggler {
    border-color: var(--bd-white-color) !important;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.header__navbar__light .navbar-toggler-icon {
    background-image: none !important;
}

.header__navbar__light .navbar-toggler-icon i {
    font-weight: 400;
    font-size: 30px;
    color: var(--txt-white-color) !important;
}

.header__navbar_toggler:focus {
    box-shadow: none !important;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0px;
    box-shadow: none !important;
}

/* ---Header NavBar Button--- */

.header__navbar__nav {
    gap: 2rem;
}

.header__navbar__nav li a {
    font-weight: 400;
    font-size: 16px;
    color: var(--txt-white-color) !important;
    transition: 0.2s ease-in-out;
}

.header__navbar__nav li a:hover {
    color: var(--txt-blue-color) !important;
}

/* DropDown Menu */

.header__dropdown_item {
    background-color: var(--bd-white-color) !important;
    color: var(--txt-black-color) !important;
    font-weight: 400;
    font-size: 16px;
}

.header__dropdown_item:active {
    color: var(--txt-black-color) !important;
    text-decoration: none;
    background-color: var(--bd-white-color) !important;
}

.header__navbar__nav__dropdown .header__dropdown__menu .header__dropdown_item {
    font-weight: 400;
    font-size: 16px;
    color: var(--txt-black-color) !important;
    transition: 0.2s ease-in-out;
}

.header__navbar__nav__dropdown .header__dropdown__menu .header__dropdown_item:hover {
    color: var(--txt-blue-color) !important;
}

/* ---Header Social Button--- */

.fa-solid,
.fas {
    font-weight: 900 !important;
}

.header__social__icons {
    display: flex;
    gap: 2rem;
}

.header__social__icons i {
    font-weight: 400;
    font-size: 16px;
    color: var(--txt-white-color) !important;
    transition: 0.2s ease-in-out;
}

.header__social__icons i:hover {
    color: var(--txt-blue-color) !important;
}

/* ##############################  Main  ################################## */

/* ---------------------------Hero Banner-------------------------- */

.hero__banner__bg {
    position: relative;
    display: inline-block;
}

.hero__banner__bg img {
    display: block;
    width: 100%;
    height: 100vh;
}

.hero__inner_banner__bg img {
    display: block;
    width: 100%;
    height: 40vh;
}

.hero__banner__gradient__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(252.61deg,
            #000000 -0.22%,
            rgba(0, 0, 0, 0) 108.72%);
    opacity: 0.6;
    /* Adjust the opacity as needed */
    z-index: 1;
}

.hero__banner__bg img {
    animation: zoom-out 10s linear;
}

@keyframes zoom-out {
    0% {
        transform: scale(1);
    }

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

/* ---carousel items content--- */

.hero__carousel__item {
    text-align: left;
    position: absolute;
    top: 35%;
    left: 10%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: text-up 12s linear infinite;
    transform: translateY(100px);
    animation-delay: 0s;
}

@keyframes text-up {
    10% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Media queries for extra small screens */
@media (max-width: 575px) {
    .hero__carousel__item {
        top: 50%;
    }
}

.hero__carousel__item h6 {
    font-weight: 700;
    font-size: 16px;
    color: var(--txt-blue-color);
}

.hero__carousel__item h1 {
    font-weight: 700;
    font-size: 40px;
    color: var(--txt-white-color);
}

.hero__carousel__item h1 span {
    font-weight: 700;
    font-size: 40px;
    color: var(--txt-blue-color);
}

.hero__carousel__item p {
    color: var(--txt-white-color);
    font-weight: 400;
    font-size: 16px;
}

/* ---------carousel content buttons---------- */

.hero__banner__carousel__buttons {
    gap: 2rem;
}

/* ---button 1--- */

.carousel__btn__primary_1 {
    border-radius: 8px !important;
    background: transparent !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    color: var(--txt-white-color);
    border: 1px solid var(--bd-white-color) !important;
    padding: 10px 20px !important;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.carousel__btn__primary_1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 8px;
    z-index: -2;
}

.carousel__btn__primary_1:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-color-blue-shade);
    transition: all 0.3s;
    border-radius: 8px;
    z-index: -1;
}

.carousel__btn__primary_1:hover {
    color: var(--txt-white-color);
    border: 1px solid var(--bd-blue-color) !important;
}

.carousel__btn__primary_1:hover:before {
    width: 100%;
}

/* ---button 2--- */

.carousel__btn__primary_2 {
    border-radius: 8px !important;
    background: var(--bg-color-blue-shade) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    color: var(--txt-white-color);
    border: 1px solid var(--bd-blue-color) !important;
    padding: 10px 20px !important;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.carousel__btn__primary_2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color-blue-shade);
    border-radius: 8px;
    z-index: -2;
}

.carousel__btn__primary_2:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-color-light-grey-shade-2);
    transition: all 0.3s;
    border-radius: 8px;
    z-index: -1;
}

.carousel__btn__primary_2:hover {
    color: var(--txt-blue-color) !important;
    border: 1px solid var(--bd-white-color) !important;
}

.carousel__btn__primary_2:hover:before {
    width: 100%;
}

/* ------------------Providing Electric Vehicle Bannar--------------------- */

/* ----column 1----- */

.providing__vehicle__banner__img {
    width: 100%;
    display: flex;
    justify-content: end;
    position: relative;
}

.providing__vehicle__banner__img img {
    width: 100%;
    object-fit: cover;
    background-size: cover;
}

.customer__count {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: var(--bg-color-blue-shade);
    color: white;
    padding: 5px 10px;
    font-weight: 700;
    font-size: 48px;
    font-weight: bold;
}

.customer__count p {
    font-weight: 400;
    font-size: 16px;
}

/* ----column 2----- */

/* ---Banner content--- */

.banners__content__1 {
    text-align: left;
}

.banners__content__1 h6 {
    font-weight: 700;
    font-size: 16px;
    color: var(--txt-blue-color);
}

.banners__content__1 h1 {
    font-weight: 700;
    font-size: 40px;
    color: var(--txt-black-color);
}

.banners__content__1 h1 span {
    font-weight: 700;
    font-size: 40px;
    color: var(--txt-blue-color);
}

.banners__content__1 p {
    color: var(--txt-dark-gery-color);
    font-weight: 400;
    font-size: 16px;
}

/* ---Banner content buttons---  */

.content__btn__primary {
    border-radius: 8px !important;
    background: var(--bg-color-blue-shade) !important;
    font-weight: 700 !important;
    font-size: 18px;
    color: var(--txt-white-color);
    border: 1px solid var(--bd-blue-color) !important;
    padding: 10px 20px !important;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.content__btn__primary:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color-blue-shade);
    border-radius: 8px;
    z-index: -2;
}

.content__btn__primary:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--bg-color-black-shade);
    transition: all 0.3s;
    border-radius: 8px;
    z-index: -1;
}

.content__btn__primary:hover {
    color: var(--txt-blue-color) !important;
    border: 1px solid var(--bd-white-color) !important;
}

.content__btn__primary:hover:before {
    width: 100%;
}

/* Media Query */

@media (min-width: 768px) and (max-width: 1200px) {
    .banners__content__1 h6 {
        font-weight: 700;
        font-size: 16px;
        color: var(--txt-blue-color);
    }

    .banners__content__1 h1 {
        font-weight: 700;
        font-size: 30px;
        color: var(--txt-black-color);
    }

    .banners__content__1 h1 span {
        font-weight: 700;
        font-size: 30px;
        color: var(--txt-blue-color);
    }

    .banners__content__1 p {
        color: var(--txt-dark-gery-color);
        font-weight: 400;
        font-size: 16px;
    }
}

/* ------------------------------Find Us Bannar------------------------- */

.find__us__bg {
    background: var(--bg-color-light-grey-shade);
    /* margin-bottom: 6rem; */
}

/* ----------------Best EV Charging Stations Bannar------------------- */

/* ---row 1--- */

/* ---Banner content 2---  */

.banner__content__2 {
    text-align: center;
}

.banner__content__2 h6 {
    font-weight: 700;
    font-size: 16px;
    color: var(--txt-blue-color);
}

.banner__content__2 h1 {
    font-weight: 700;
    font-size: 40px;
    color: var(--txt-black-color);
}

.banner__content__2 h1 span {
    font-weight: 700;
    font-size: 40px;
    color: var(--txt-blue-color);
}

.banner__content__2 p {
    color: var(--txt-dark-gery-color);
    font-weight: 400;
    font-size: 16px;
}

/* ---row 2--- */

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

/* ---column 1 and 3--- */

.banner__content__2__img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner__content__2__img img {
    width: 40%;
    object-fit: cover;
    background-size: cover;
}

.div__left__side__content {
    text-align: center;
}

.div__left__side__content h4 {
    font-weight: 700;
    font-size: 24px;
    color: var(--txt-black-color);
}

.div__left__side__content p {
    font-weight: 400;
    font-size: 16px;
    color: var(--txt-dark-gery-color);
}

/* ---column 2--- */

.ev__div__center__img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.ev__div__center__img img {
    width: 120%;
    object-fit: cover;
    background-size: cover;
}

/* Media Query */

@media (min-width: 768px) and (max-width: 992px) {
    .ev__div {
        display: flex;
        justify-content: center;
    }
}

/* ----------------Download Our App Bannar----------------------- */

.app__banner {
    overflow: hidden;
}

/* ---row 2--- */

.app__banner__row {
    position: relative;
}

.ev__charging_img__2 {
    width: 100%;
    display: flex;
    justify-content: center;
}

.ev__charging_img__2 img {
    width: 50%;
    object-fit: cover;
    background-size: cover;
    z-index: 100;
}

.ev__charging_content__2 {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.ev__charging_content__2 h4 {
    font-weight: 700;
    font-size: 24px;
    color: var(--txt-black-color);
}

.ev__charging_content__2 p {
    font-weight: 400;
    font-size: 16px;
    color: var(--txt-dark-gery-color);
}

.position__img {
    width: 20% !important;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -5px;
    left: 495px;
}

.position__img__1 {
    width: 20% !important;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -78px;
    left: 493px;
}

.position__img__2 {
    width: 20% !important;
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: -50px;
    left: 400px;
}

/* ----buttons---- */

.anchor_f_1 {
    width: 100%;
    display: flex;
    justify-content: end;
}

.anchor_f_1 img {
    width: 100%;
    object-fit: cover;
    background-size: cover;
}

.anchor_f_2 {
    width: 100%;
    display: flex;
    justify-content: start;
}

.anchor_f_2 img {
    width: 100%;
    object-fit: cover;
    background-size: cover;
}

@media only screen and (max-width: 1200px) {
    .position__img {
        width: 20% !important;
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: -25px;
        left: 405px;
    }

    .position__img__1 {
        width: 20% !important;
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: -78px;
        left: 493px;
    }

    .position__img__2 {
        width: 20% !important;
        display: flex;
        justify-content: center;
        position: absolute;
        bottom: -50px;
        left: 400px;
    }
}

@media only screen and (max-width: 992px) {
    .position__img {
        display: none;
    }

    .position__img__1 {
        display: none;
    }

    .position__img__2 {
        display: none;
    }

    .navbar {
        background-color: #212529;
    }
}

@media only screen and (max-width: 768px) {
    .ev__charging_img__2 img {
        width: 80% !important;
        object-fit: cover;
    }

    .row__order__1 {
        order: 2;
    }

    .row__order__2 {
        order: 1;
    }

    .navbar {
        background-color: #212529;
    }
}

@media only screen and (max-width: 576px) {
    .anchor_f_1 {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .anchor_f_1 img {
        width: 70%;
    }

    .anchor_f_2 {
        display: flex;
        justify-content: center;
    }

    .anchor_f_2 img {
        width: 70%;
    }

    .row__order__1 {
        order: 2;
    }

    .row__order__2 {
        order: 1;
    }

    .navbar {
        background-color: #212529;
    }
}

/* ##############################  Footer  ################################## */

.footer__bg__color {
    background: var(--bg-color-black-shade);
    margin-top: 5vh;
}

.footer__col__img {
    width: 100%;
    display: flex;
    justify-content: start;
}

.footer__col__img img {
    width: 80%;
    object-fit: cover;
    background-size: cover;
}

.footer__col p {
    color: var(--txt-white-color);
    text-align: justify;
    font-weight: 400;
    font-size: 16px;
}

.footer__col h4 {
    color: var(--txt-white-color);
    font-weight: 700;
    font-size: 18px;
}

.footer__col ul {
    padding-left: 0;
}

.footer__col ul {
    list-style-type: none;
}

.footer__col ul li a {
    color: var(--txt-white-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-decoration-line: underline;
    transition: all 0.4s ease-in-out;
}

.footer__col ul li a:hover {
    color: var(--txt-blue-color);
}

.fa-location-dot:before {
    margin-right: 10px;
}

.fa-phone:before {
    margin-right: 10px;
}

.fa-solid,
.fas {
    line-height: 25px !important;
    color: var(--txt-white-color);
}

.footer__col i p {
    font-weight: 400 !important;
    font-size: 12px !important;
}

.footer__row__2 p {
    text-align: center;
    color: var(--txt-white-color);
}

/* --------------------------Media Query------------------------- */

@media (min-width: 768px) and (max-width: 992px) {
    .hero__banner__bg img {
        display: block;
        width: 100%;
        height: 700px;
    }

    .hero__carousel__item {
        top: 25% !important;
        transform: translateY(0);
    }

    .ev__div__center__img img {
        width: 80% !important;
    }
}

@media (min-width: 575px) and (max-width: 767px) {
    .hero__banner__bg img {
        display: block;
        width: 100%;
        height: 750px;
    }

    .hero__carousel__item {
        top: 15% !important;
        transform: translateY(0);
    }

    .hero__carousel__item h1 {
        font-size: 30px !important;
    }

    .hero__carousel__item h1 span {
        font-size: 30px !important;
    }

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

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

    .ev__div__center__img img {
        width: 70% !important;
    }
}

@media (min-width: 425px) and (max-width: 574px) {
    .carousel__row {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero__banner__bg img {
        display: block;
        width: 100%;
        height: 670px;
    }

    .hero__carousel__item {
        top: 15% !important;
        transform: translateY(0);
    }

    .hero__carousel__item h1 {
        font-size: 25px !important;
    }

    .hero__carousel__item h1 span {
        font-size: 25px !important;
    }

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

    .ev__div__center__img img {
        width: 100% !important;
    }
}

@media (min-width: 320px) and (max-width: 424px) {
    .carousel__row {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero__banner__bg img {
        display: block;
        width: 100%;
        height: 800px;
    }

    .hero__carousel__item {
        top: 15% !important;
        transform: translateY(0);
    }

    .hero__carousel__item h1 {
        font-size: 20px !important;
    }

    .hero__carousel__item h1 span {
        font-size: 20px !important;
    }

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

    .ev__div__center__img img {
        width: 100% !important;
    }

    .carousel__btn__primary_1 {
        font-size: 14px !important;
    }

    .carousel__btn__primary_2 {
        font-size: 14px !important;
    }
}

.checkout_count {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background: #FF3724;
    color: #000;
    top: -8px;
    right: -15px;
    border-radius: 50%;
    padding: 0.3em 0.3em !important;
}

.text-right {
    text-align: right;
}

.error {
    color: #FF3724;
}

.carousel-indicators button {
    background-color: #00AEEF !important;
}
