@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&display=swap');

:root {
    --primary-color: #e21e1e;
    --secondary-color: #54595F;
    --text-gray: #7A7A7A;
    /* --heading-font-family: 'Play', 'sans-serif'; */
    --heading-font-family: 'Roboto slab', 'sans-serif';
    --para-font-family: 'manrope', 'sans-serif';
    --border-radius: 7px;
    --dark-red: #820505;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-left {
    text-align: left !important;

}

.banner-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: white;
    /* default side */
}

.banner-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to bottom right, red, black); */
    background: url('../images/bg.png') right/cover no-repeat;
    clip-path: polygon(100% 0, 40% 0, 70% 100%, 100% 100%);
    z-index: 1;
}


section {
    overflow: hidden;
}

/* Navbar css */
.navbar {
    z-index: 99;

}

.navbar-nav {
    gap: 20px;
    margin-right: 80px;
}


.navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}


.navbar-brand img {

    width: 200px;
}


.navbar-nav .nav-link {
    color: #fff;
    font-family: var(--para-font-family);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-link {
    color: #fff;
    font-family: var(--para-font-family);
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.contact-link:hover {
    color: #ababab;
}

.hero-box {
    height: 94vh;
    display: flex;
    align-items: center;
    z-index: 100;
    position: relative;
}

.heading {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 45px;
    letter-spacing: -2px;

}

.heading .main-heading {
    color: var(--primary-color);
    font-size: 80px;
    font-family: 'Roboto Slab';

}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;

}


.hero-content .subheading {
    font-family: "Montserrat", sans-serif;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 18px;
}

.fill-btn {
    font-family: var(--para-font-family);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 10px 20px;
    background: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.battery-img-box {
    position: relative;
    z-index: 100;
    /* margin-top: 120px; */
}

.battery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 100;
}

/* From Uiverse.io by BHARGAVPATEL1244 */
.fill-btn {
    outline: none;
    cursor: pointer;
    border: none;
    padding: 0.9rem 2rem;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 17px;
    border-radius: 500px;
    overflow: hidden;
    background: #000;
    color: rgb(255, 255, 255);
}

.fill-btn span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
}

.fill-btn:hover span {
    color: #fff;

}

.fill-btn::before,
.fill-btn::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.fill-btn::before {
    content: "";
    background: var(--primary-color);
    color: #fff;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.fill-btn:hover::before {
    transform: translate3d(100%, 0, 0);

}

/* Feature section */
.feature-section {

    text-align: center;
}

.feature-section h2 {
    margin-bottom: 40px;
}


.feature-box {
    display: flex;
    align-items: center;
    /* flex-direction: column-reverse; */
    gap: 20px;
    text-align: left;
    margin-bottom: 40px;
}

.feature-icon {
    background-color: rgb(226, 30, 30);
    width: 90px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.feature-icon.black {
    background-color: #111;
}

.feature-text h5 {
    font-weight: 700;
    margin: 0;
    font-family: var(--heading-font-family);
}

.feature-text p {
    margin: 0;
    width: 80%;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-gray);
    font-family: var(--para-font-family);
}

.feature-number {
    font-weight: bold;
    font-size: 60px;
    color: #f056561c;
}

.navbar {
    /* background-color: #000; */
    /* background: rgba(0, 0, 0, 0.4); */
    /* semi-transparent black */
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); */
    position: absolute;
    top: 0;
    width: 100%;
}

.navbar.nobg {
    /* background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px); */
    border: none;
    z-index: 9999;
}

.logo {
    filter: brightness(0) invert(1);

}

.nobg .logo {
    filter: none !important;
}



.center-shape img {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .feature-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .center-shape {
        margin: 40px auto;
    }
}

/* Morquee container css */

.marquee-box {
    background: linear-gradient(to right, rgb(226, 30, 30), black);
    padding: 24px 0;
    overflow: hidden !important;
}

marquee {
    font-size: 22px;
    color: white;
}

.marquee-content span {
    margin: 0 50px;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 4px black;
}

@media (max-width: 600px) {
    marquee {
        font-size: 1rem;
    }

    .marquee-content span {
        margin: 0 25px;
    }
}

/* testimonial  section */

.testimonial-section {
    background-color: #111;

}





.testimonial-image img {
    width: 100%;
    border-radius: 10px;
    max-height: 400px;
    object-fit: cover;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.testimonial-image img:hover {
    filter: grayscale(0);
    transform: scale(1.03);
}


.battery-swiper-container {

    color: #000;
    overflow: hidden;
}

.battery-swiper-wrapper {
    width: 100%;
}

.battery-swiper-slide {
    box-sizing: border-box;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    min-height: 364px;
    padding: 30px;
}

.testimonial-text h3 {
    font-size: 22px;
    font-weight: 700;

    margin-bottom: 10px;
    font-family: var(--heading-font-family);
}

.testimonial-text h3::first-letter {
    font-size: 34px;
    letter-spacing: 1px;
}

.testimonial-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-family: var(--para-font-family);
}

.testimonial-footer {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    justify-content: space-between;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgb(226, 30, 30);
}

.testimonial-user-info {
    font-size: 14px;
}

.testimonial-user-info span {
    display: block;
    font-weight: 600;
}

.quote {
    font-size: 40px;
    color: rgb(226, 30, 30);
    opacity: 0.7;
}



/* Footer css */

/*--------------------------- Footer css--------------------------- */

.footer-area {

    padding: 40px 0px;
    background-color: #000000;
    color: #fff;
    padding-top: 120px;
}

.footer-area a {
    text-decoration: none;
}

.footer-area .footer-heading {
    font-size: 20px;
    color: #fff;
    font-family: var(--heading-font-family);
}

.footer-area .footer-underline {
    height: 1px;
    width: 70px;
    background-color: #ddd;
    margin: 10px 0px;
}

.copyright-area {
    padding: 14px 0px;
    background-color: var(--dark-red);
}

.copyright-area p {
    margin-bottom: 0px;
    color: #fff;
    font-family: var(--para-font-family);
}

.copyright-area .social-media {
    text-align: end;
}

.copyright-area .social-media a {
    margin: 0px 10px;
    color: #fff;
    width: 20px;
}

.footer-area a,
.footer-area p {
    color: #fff;
    font-size: 14px;
    font-family: var(--para-font-family);
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-area a:hover {
    color: var(--primary-color) !important;
}

/* Product details --------brodcam*/
.brodcam-banner {
    position: relative;
    width: 100%;
    height: 350px;
    /* or any height you want */
    background-image: url('../images/brodcam.jpg');
    /* your background image */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding-top: 58px;
}

.brodcam-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* semi-transparent black overlay */
    z-index: 1;
}

.brodcam-banner h1,
.brodcam-banner .breadcrumb {
    position: relative;
    z-index: 2;
}

.brodcam-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    color: #fff;
    font-family: var(--heading-font-family);
}

.breadcrumb {
    font-size: 1rem;
    color: #eee;
}

.breadcrumb a {
    color: rgb(255, 255, 255);
    /* custom red */
    text-decoration: none;
}

.breadcrumb span {
    color: #9f9d9d;
}


.battery-inner-container .main-img {
    height: 400px;
    background-color: #F5F5F5;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.battery-inner-container .main-img img {
    width: 100%;
    height: 400px;

    height: 100%;
    object-fit: contain;
}

.side-battery-box {
    position: sticky;
    top: 0;
}

.side-battery-box .quick-details {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;

    background-color: #fff;
    border-radius: 15px;
}

h2.battery-heading {
    font-family: var(--heading-font-family);
    margin-bottom: 15px;
}

.quick-details p {
    /* color: var(--text-gray); */
    font-weight: 500;
}

.quick-details p .icon-box {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    width: 25px;
    height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 3px;
}

.quick-details p .price {
    color: var(--primary-color);
}

.small-btn {
    padding: 8px 2rem;
}

.enquiry-form {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;

    background-color: #fff;
    border-radius: 15px;
    margin-top: 20px;
}

.enquiry-form h5 {
    font-family: var(--heading-font-family);
    margin-bottom: 12px;
}

.form-control:focus {
    box-shadow: none;
}

.product-detail-box h3,
.product-features h3 {
    margin-top: 15px;
    font-family: var(--heading-font-family);
}

.product-detail-box p {
    color: var(--text-gray);
    font-family: var(--para-font-family);
    font-weight: 500;
}

.product-features {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;

    background-color: #f9f9f9b3;
    border-radius: 15px;
    margin-top: 20px;
}

ul {
    padding-left: 16px;
}

.product-features li {
    list-style-type: none;
    font-family: var(--para-font-family);
}

.product-features li span {
    margin-right: 7px;
}

.product-features li span img {
    width: 18px;
}

.advantage-container {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 15px;
    /* background-color: #000; */
    background-image: url('../images/bg.png');
    position: relative;
    z-index: 2;
}

.padd-advantage {
    padding: 30px 40px;
}

.advantage-container::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-color: #000000c8;
    z-index: -1;
}

.advantage-container h3 {
    font-family: var(--heading-font-family);
    color: #fff;
    margin-bottom: 15px;
}

.advantage-div {

    display: flex;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 15px;
    color: #fff;

    background-color: var(--primary-color);
}


.spec-table {
    width: 100%;
    /* max-width: 500px; */
    border-radius: 15px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;

    color: #000000;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.spec-table h2 {
    background: rgb(226, 30, 30);
    margin: 0;
    padding: 15px 20px;
    /* text-align: center; */
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    font-family: var(--heading-font-family);

}

.spec-table table {
    width: 100%;
    border-collapse: collapse;
}


.spec-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #f2f2f2;
    vertical-align: top;
}


/* .spec-table td:first-child {
    font-weight: 600;
    width: 50%;
    color: #000000;
}

.spec-table tr:first-of-type {
    font-size: 20px;

} */

/* .spec-table td:last-child {
    color: #050505;

} */

/* .spec-table tr:last-child td {
    border-bottom: none;
} */

@media (max-width: 600px) {
    .spec-table td {
        font-size: 14px;
        padding: 12px;
    }

    .spec-table h2 {
        font-size: 18px;
    }
}

/* related product */
.related-product {
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 15px;
}

.related-product h5 {
    font-family: var(--heading-font-family);
}

.related-product ul {
    list-style-type: disclosure-closed;
    margin-bottom: 0;
}

.related-product li a {
    color: #201d1d;
    font-family: var(--para-font-family);
    font-weight: 500;
    transition: all 0.3s ease;
}

.related-product li a:hover {
    color: var(--primary-color);
}

/* css for dropdown of p[roduct */
.navbar-expand-lg .navbar-nav .dropdown-menu {
    width: 630px;
    background: rgb(0, 0, 0);
    padding: 30px 40px;
    top: 47px;
}

.dropdown-menu[data-bs-popper] {
    left: -200px;
}

.dropdown-menu.show {
    display: flex;
    justify-content: center;
}

.dropdown-item {
    color: #fff;
}

.dropdown-item p {
    text-align: center;

}

.dropdown-item p i {
    font-size: 35px;

}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #fff;
}

.dropdown-item:hover {
    color: var(--primary-color);
    background: inherit;
}

/* Our product card in home page design */


.card-container h2 {
    text-align: center;
}

.card-container h2 span {
    color: var(--primary-color);
}

.product-swiper-container {
    padding: 20px;
}

.product-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}



.product-swiper-pagination .swiper-pagination-bullet {
    background: var(--primary-color);
}

.product-swiper .swiper-wrapper {
    margin: 10px 0;
}

.product-swiper-button-next,
.product-swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-swiper-button-prev {
    left: -10px;
}

.product-swiper-button-next {
    right: -10px;
}

/* Make sure swiper container is positioned */
.product-swiper {
    position: relative;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    width: 100%;
    border: 1px solid #f600001a;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    overflow: hidden;
}


.product-card table td {
    font-size: 14px;
}

.product-heading {
    padding: 10px 10px 0 15px;
}

.product-card table tr td:first-of-type {
    border-left: 0;
}

.product-card table tr td:last-of-type {
    border-right: 0;
}

.product-heading h6 {
    font-weight: bold;
    font-size: 17px;
    text-transform: uppercase;
    font-family: var(--para-font-family);
    letter-spacing: 1px;
}

.product-heading .line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 10px;

}

.product-card table b {
    font-weight: 700;
    color: var(--text-gray);
}

.product-card table td {
    padding-left: 15px;
    padding-right: 15px;
}

.product-btn .fill-btn {
    width: 100%;
    text-align: center;
    border-radius: 0;
    margin-bottom: -6px;
}

.product-img {
    background: #fff0f0;
    display: flex;
    height: 250px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    /* max-height: 200px; */

    /* min-height: 300px; */
    object-fit: contain;
    transition: all 0.3s ease;
}

.product-img:hover img {
    transform: scale(1.06);
}

.product-content {
    padding: 10px 0;
    text-align: left;
    padding-bottom: 0;
}

/* CTA Section */
.support-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
    margin-bottom: -80px;
    margin-top: 50px;
}

.support-section::before {
    content: "";
    background: url('images/map.avif');
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: 0;
}

.support-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.text-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 16px;
    font-weight: 400;
}

.big-text {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: white;
    opacity: 0.2;
    position: absolute;
    right: 60px;
    top: -30px;
    z-index: 0;
}

.learn-more-btn {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--primary-color);
    padding: 12px 24px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
}

.learn-more-btn:hover {
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .big-text {
        font-size: 80px;
        right: 20px;
        top: 20px;
    }

    .learn-more-btn {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 20px;
    }

    .support-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* contact page-----------
 */
.map-container {
    margin-bottom: -185px;
}

.contact-container {
    margin-top: 50px;
}

.contact-form-container {
    padding: 35px 45px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 15px;
    background-color: #000;
    z-index: 9999;
    position: relative;
    margin-bottom: -45px;
}

.inner-form-box h4 {
    font-family: var(--heading-font-family);
    color: #fff;
}

.inner-form-box label {
    color: #fff;
}

.inner-form-box .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    padding-left: 0;
    color: #fff;
}

.inner-form-box .form-control::placeholder {
    color: #4e4e4e;
}

.inner-form-box .form-control:focus {
    background-color: transparent;
    color: #cbcaca;
}

.inner-form-box .fill-btn {
    width: 100%;
    text-align: center;
    background-color: var(--dark-red);
}



.get-touch-container .get-info {
    font-family: var(--para-font-family);
    color: var(--text-gray);
    font-weight: 500;
}

.contact-icons-box .inner-icons {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 15px;
    margin-bottom: 15px;
}

.inner-icons div {
    background-color: var(--primary-color);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-icons div i {
    font-size: 25px;
}

.inner-icons p a {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.inner-icons p a:hover {
    color: var(--primary-color);
}

.inner-icons p span {
    color: var(--text-gray);

    font-weight: 600;
}

/* About page css */
/* why choose us section */
.outer-why-choose {
    background: #f9f9f9;

}

.vc-why-choose-section {
    display: flex;
    align-items: center;
    justify-content: space-between;

    flex-wrap: wrap;
}

.vc-why-text {
    flex: 1;
    min-width: 320px;
}

.vc-why-text h2 {
    margin-bottom: 30px;
}

.vc-why-choose-section .about-p {
    font-family: var(--para-font-family);
    font-size: 16px;
    color: var(--text-gray);
}

.vc-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
}

.vc-feature-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    transition: all 0.3s ease;
    border-radius: 15px;
    padding-bottom: 22px;
}

.vc-feature-item:hover {
    background-color: #000;
}

.vc-feature-item:hover .vc-feature-number,
.vc-feature-item:hover .vc-feature-title,
.vc-feature-item:hover .vc-feature-desc {
    color: #dad8d8;
}

.vc-feature-number {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
}

.vc-feature-title {
    font-weight: 600;
    font-size: 16px;
    color: #000;
}

.vc-feature-desc {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.vc-why-image {
    flex: 1;
    min-width: 300px;
    margin-left: 40px;
    display: flex;
    justify-content: center;
}

.vc-why-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .vc-why-choose-section {
        flex-direction: column;
        gap: 30px;
    }

    .vc-why-image {
        margin-left: 0;
    }
}



/* ----------vission mission------- */


.core-section {

    text-align: center;
}

.core-heading {
    margin-bottom: 40px;
}


.core-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.core-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;

    padding: 30px;
    max-width: 320px;
    text-align: left;
    transition: transform 0.3s ease;
    border-top: 5px solid var(--primary-color);
    transition: all 0.4s ease;
}

.core-card:hover {
    transform: translateY(-3px);
    background-color: #000;
}

.core-card:hover .core-title,
.core-card:hover .core-text {
    color: #fff;
}

.core-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.core-title {
    font-family: var(--heading-font-family);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #111;
}

.core-text {
    font-family: var(--para-font-family);
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .core-card {
        max-width: 90%;
    }
}

/* About us section  */

.inner-about {
    position: relative;
    display: flex;
    z-index: 1;
}

.inner-about::before {
    position: absolute;
    top: 120px;
    left: -100px;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    border: 30px solid var(--primary-color);
    -webkit-animation: zoom-one 5s infinite linear;
    animation: zoom-one 5s infinite linear;
    content: "";
    z-index: -1;
}

@keyframes zoom-one {
    0% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    100% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
}



.about-img img,
.about-img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}

.about-img img {
    border-radius: 15px;
}

.about-img2 {
    border-radius: 15px;
    position: absolute;
    right: 48px;
    top: 90px;
    border: 10px solid #ffffff;
    -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    max-width: 300px;
}

.side-about {
    margin-left: 60px;
}

.about-para p {
    color: var(--text-gray);
    font-weight: 500;
    text-align: justify;
}

.highlight-about {
    background-color: #ffe1cf;
    border-radius: 15px;
    border-left: 7px solid var(--primary-color);

    margin-left: 20px;
    padding: 12px;
    color: #000;
}

/* custom-heading class */
.custom-heading {
    font-family: var(--heading-font-family);
    color: #000;
    font-size: 2.5rem;
}

.custom-heading span {
    color: var(--primary-color);
}

/* end */

/* Service card */
.outer-service {
    background-color: #f4f2f9;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    width: 100%;
}

.service-card {
    background: #fff;
    width: 100%;
    height: 250px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(45deg, #e21e1e, #ff4444);
    transition: height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.service-card::after {
    position: absolute;
    left: 50%;
    top: 75px;
    margin-left: -45px;
    height: 92px;
    width: 92px;
    border-radius: 50%;
    background-color: #f4f2f9;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    content: "";
    z-index: 1;


}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(226, 30, 30, 0.3);
}

.service-card>* {
    position: relative;
    z-index: 2;
}

.service-title {
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-family: var(--heading-font-family);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    color: #fff;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 15px 0;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2.5;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(255, 165, 0, 0.3));
}

.service-card:hover .service-icon {
    stroke: white;
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(255, 255, 255, 0.4));
}

.read-more {
    color: rgba(32, 32, 32, 0.9);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-top: 15px;
    padding: 8px 16px;

    border-radius: 25px;
    transition: all 0.3s ease;

}

.service-card:hover .read-more {
    color: #fff;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.9;
    }
}

.service-card:hover::after {
    opacity: 0.1;
}

@media (max-width: 1400px) {
    .services-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        height: 250px;
    }
}

/* Entrance animation */
.service-card {
    animation: slideInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* section padding for all */
.section-padding {
    padding: 50px 0;
}

/* Battery banner */
.custom-swiper {
    width: 100%;
}

.custom-swiper .swiper-slide {
    position: relative;
    color: #fff;
    overflow: hidden;
    height: 400px;
}

.custom-swiper .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.custom-swiper .swiper-slide:hover .slide-img {
    transform: scale(1.05);
}

.custom-swiper .slide-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    /* max-width: 80%; */
    padding: 20px;
    border-radius: 15px;
    z-index: 2;
    min-width: 180px;
}

.blue-box {
    background: #1c1c1c;
}

.dark-box {
    background: #1c1c1c;
}

.custom-swiper .slide-content small {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    opacity: 0.9;
}


.custom-swiper .slide-content h2 {
    font-size: 26px;
    font-weight: bold;
    margin: 0;
}

@media (max-width: 768px) {
    .custom-swiper .swiper-slide {
        height: 300px;
    }

    .custom-swiper .slide-content h2 {
        font-size: 20px;
    }
}


/*  */

.produts-section {
    min-height: 500px;
    background-image: url(../images/bg-20.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.produts-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #000;
    opacity: 0.3;
    z-index: 1;
}

.produts-section .container {
    position: relative;
    z-index: 2;
    color: #fff;
}

.produts-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.produts-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.produts-section .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    background-color: #fff;
    color: #000;
    transition: 0.3s ease-in-out;
}

.produts-section .btn:hover {
    background-color: #f1f1f1;
    color: #333;
}

.produts-content {
    position: relative;
    z-index: 99;
}

.related-product-img img {
    width: 100px;
    object-fit: contain;
}

.related-product-card {
    align-items: center;

}

.related-product-card .btn {
    text-decoration: none;
    display: flex;
    gap: 8px;
    color: var(--primary-color);
    padding: 0 !important;
}


/*  */

.product-grid-container {
    padding-top: 60px !important;

}








/*  responsive*/



.navbar {
    z-index: 99;
}

/* White background for mobile view */

.navbar-nav {
    gap: 20px;
    margin-right: 80px;
}

.navbar-brand {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-brand img {
    width: 200px;
}

.navbar-nav .nav-link {
    color: #fff;
    font-family: var(--para-font-family);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ababab;
}

.fill-btn.small-btn {
    padding: 8px 16px;
    font-size: 14px;
}


@media (max-width: 991.98px) {
    .logo {
        filter: none !important;

    }


    .navbar {
        background-color: #fff !important;
    }

    .navbar-nav .nav-link {
        color: #000 !important;
    }

    .dropdown-menu .show {
        flex-direction: column !important;
    }

    .dropdown-menu {
        background-color: #fff !important;
        width: auto !important;
        padding: 5px !important;
        flex-direction: column !important;
    }

    .dropdown-menu p {
        display: none !important;
    }

    .dropdown-menu .dropdown-item {
        color: #000 !important;
    }


    .banner-container {
        padding-top: 40px !important;
    }

    .side-about {
        margin: 0 !important;
    }

    .vc-why-choose-section {
        flex-direction: column-reverse !important;
    }


}


@media (max-width: 767px) {
    .vc-feature-grid {
        grid-template-columns: 1fr !important;
        /* Single column on small screens */
        gap: 20px 20px !important;
        /* Optional: reduce gap for mobile */
    }
}

.typeit-highlight {
    color: var(--primary-color) !important;
}

/* mobile responsive css */
@media (max-width: 576px) {
    .heading .main-heading {
        font-size: 60px !important;
    }

    #multipleStrings {
        font-size: 35px !important;
    }

    .typeit-highlight {
        color: #000 !important;
    }



    .battery-img-box {
        margin-top: 50px;
    }

    .navbar-nav {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .fill-btn {
        padding: 0.7rem 1.5rem;
        font-size: 14px;
    }

    .about-img2 {
        right: 0px;
        top: 250px;
        max-width: 200px;
    }

    .side-about {
        margin-top: 15px !important;
    }

    .custom-heading {
        font-size: 2rem !important;
    }

    .about-p {
        font-size: 14px !important;
    }

    .center-shape {
        margin: 0px auto !important;
    }

    .brodcam-banner h1 {
        font-size: 2.4rem;
    }

    .product-swiper-container {
        padding: 0;
    }
    .brodcam-banner {
         padding-top: 95px;
    }
}