﻿/*.hero {
    background: url('/images/hero.jpg') center/cover;
    padding: 120px 0;
}*/

.main-navbar {
    position: relative;
}

    .main-navbar::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 3px;
        width: 100%;
        background: linear-gradient(270deg, #28a745, #dc3545, #28a745);
        background-size: 600% 600%;
        animation: gradientFlow 5s ease infinite;
    }

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.product-card {
    transition: 0.3s;
}

    .product-card:hover {
        transform: scale(1.05);
    }
.hero-slider {
    height: 300px;
    margin-bottom:40px;
}

.hero-slide {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: inherit;
    padding-bottom:100px;
}

    .hero-slide .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
    }

    .hero-slide .container {
        position: relative;
        top: 40%;
    }
.hero-slider .owl-dots {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
/*.card {
    border-radius: 10px;
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }*/


.hero {
    background: url('/images/hero.jpg') center/cover;
    padding: 150px 0;
}

.card {
    border-radius: 10px;
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

section {
    padding: 60px 0;
}
.product-card img {
    height: 220px;
    object-fit: cover;
}

.clients-section {
    background: #f8f9fa;
    padding: 70px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

.client-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .client-item:hover {
        transform: translateY(-5px);
    }

    .client-item img {
        width: 100%;
        height: 80px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: 0.3s;
    }

        .client-item img:hover {
            filter: grayscale(0);
            opacity: 1;
        }

.owl-carousel .owl-item {
    display: flex;
    margin-bottom:20px;
    justify-content: center;
}


.product-highlight-section {
    background: url('/images/electric-bg1.jpg') center/cover;
    position: relative;
    padding: 80px 0;
}

    .product-highlight-section::before {
        content: '';
        position: absolute;
        background: rgb(224 199 25 / 39%);
        width: 100%;
        height: 100%;
        top: 0;
    }

    .product-highlight-section .container {
        position: relative;
        z-index: 1;
    }

.product-highlight-card {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
}

    .product-highlight-card img {
        width: 100%;
        height: 180px;
        object-fit: contain;
        margin-bottom: 15px;
    }

    .product-highlight-card h5 {
        font-weight: 600;
    }

    .product-highlight-card p {
        font-size: 14px;
        color: #555;
    }

.section-title {
    margin-bottom: 40px;
    font-weight: 600;
}

.testimonial-client-section {
    background: url('/images/electric-bg3.jpg') center/cover;
    position: relative;
    padding: 80px 0;
}

.testimonial-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.testimonial-title {
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}

    .testimonial-title::after {
        content: '';
        width: 120px;
        height: 3px;
        background: #999;
        display: block;
        margin: 10px auto;
    }

.testimonial-box {
    background: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: auto;
}

    .testimonial-box p {
        font-size: 18px;
        color: #555;
        font-style: italic;
    }

    .testimonial-box h5 {
        margin-top: 20px;
        font-weight: 600;
    }

/* Testimonial Dots Styling */
.owl-dots {
    margin-top: 30px;
    text-align: center;
}

.owl-dot {
    margin: 0 6px;
    display: inline-block;
}

/* Testimonial Dots Styling */
.owl-dots {
    margin-top: 30px;
    text-align: center;
}

.owl-dot {
    margin: 0 6px;
    display: inline-block;
}

    .owl-dot span {
        width: 10px;
        height: 10px;
        background: #d0d0d0;
        display: block;
        border-radius: 50%;
        transition: 0.3s ease;

    }

    .owl-dot.active span {
        background: #ff6b00;
        width: 12px;
        height: 12px;
    }

    .owl-dot:hover span {
        background: #ff6b00;
    }

    .owl-dot:hover span {
        background: #ff6b00;
    }

.categories-section {
    padding: 80px 0;
}

.category-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .category-card i {
        font-size: 40px;
        color: #e60023;
        margin-bottom: 15px;
    }

    .category-card:hover {
        transform: translateY(-10px);
        background: #e60023;
        color: #fff;
    }

        .category-card:hover i {
            color: #fff;
        }

.electric-bg {
    background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364, #1a1a2e);
    background-size: 400% 400%;
    animation: gradientBG 8s ease infinite;
    color: white;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.testimonial-section {
    filter: contrast(120%) brightness(110%);
}

.testimonial-box {
    background: rgba(255,255,255,0.95);
    color: #333;
}


.top-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    margin-right: 10px;
}

.logo-text h4 {
    margin: 0;
    font-weight: 700;
    color: #1a7f37;
}

.logo-text span {
    color: #c0392b;
    font-weight: 600;
}

.contact-info {
    font-weight: 600;
}

.email {
    font-size: 13px;
}

.callback-btn {
    background: #c0392b;
    color: #fff;
    padding: 8px 15px;
    display: inline-block;
    margin-top: 5px;
    border-radius: 5px;
}

    .callback-btn:hover {
        background: #a93226;
    }

.main-navbar {
    position: relative;
    z-index: 9999;
    background: #fff;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    margin: 0;
}

    .menu li {
        position: relative;
        margin: 0 15px;
    }

        .menu li a {
            text-decoration: none;
            font-weight: 600;
            color: #333;
            padding: 10px;
        }

            .menu li a:hover {
                color: #c0392b;
            }

/* Dropdown */

/* Dropdown Fix */
.dropdown-menu {
    position: absolute;
    background: #ffffff;
    width: 280px;
    display: none;
    top: 100%;
    left: 0;
    z-index: 9999;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 10px 0;
}

    /* Dropdown items */
    .dropdown-menu a {
        display: block;
        padding: 12px 20px;
        color: #333;
        border-bottom: 1px solid #eee;
        font-weight: 500;
        transition: 0.3s;
    }

        /* Hover */
        .dropdown-menu a:hover {
            background: #f5f5f5;
            color: #c0392b;
            padding-left: 25px;
        }

/* Show dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}


/* footer */
/*.footer {
    background: #111;
    color: #fff;
    padding: 50px 0;
}

    .footer h5 {
        margin-bottom: 20px;
        font-weight: 600;
    }

    .footer ul {
        list-style: none;
        padding: 0;
    }

        .footer ul li {
            margin-bottom: 8px;
        }

            .footer ul li a {
                color: #ccc;
                text-decoration: none;
            }

                .footer ul li a:hover {
                    color: #fff;
                }

    .footer p {
        color: #ccc;
    }

.footer-bottom {
    background: #000;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}*/


footer {
    padding: 35px 0 15px 0 !important;
    background: #111;
    color: #fff;
}

    footer h4,
    footer h5 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    footer p {
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 1.5;
    }

    footer ul li {
        margin-bottom: 6px;
    }

    footer .social-icons i {
        margin-right: 10px;
        font-size: 16px;
    }

.footer-bottom {
    padding: 10px 0;
    font-size: 14px;
}

.social a {
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
}

    .social a:hover {
        color: #e74c3c;
    }

.iso-img {
    margin-top: 15px;
    width: 100px;
}

.contact-section {
    padding: 60px 0;
    background: #f5f3f0;
}

.contact-right {
    padding-left: 40px;
}

.contact-image {
    height: 420px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}


.contact-title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-box {
    border: 1px solid #000;
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.contact-btn {
    background: #000;
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    margin-top: 20px;
}

.contact-info {
    padding-left: 30px;
}

.social-icons i {
    margin-right: 15px;
    font-size: 18px;
    cursor: pointer;
}

.quickfacts-header {
    background: #e9f0f4;
    padding: 60px 0;
}

    .quickfacts-header h1 {
        font-size: 45px;
        font-weight: 700;
    }

.fact-dark {
    background: #0d4b63;
    color: #fff;
    padding: 60px 0;
}

.fact-light {
    background: #f2f6f9;
    padding: 60px 0;
}

.quick-circle {
    padding: 60px 0;
    background: #e5eff5;
}

.circle-box {
    padding: 20px;
}

    .circle-box h3 {
        font-size: 35px;
        font-weight: 700;
    }

.fact-dark h2,
.fact-light h2 {
    font-size: 45px;
    font-weight: 700;
}

.media-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.media-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

    .media-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: .4s;
    }

.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 15px;
    transform: translateY(100%);
    transition: .4s;
}

.media-card:hover img {
    transform: scale(1.1);
}

.media-card:hover .media-overlay {
    transform: translateY(0);
}

.product-section {
    padding: 60px 0;
}

.product-card {
    text-align: center;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: .3s;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-card img {
        height: 200px;
        object-fit: cover;
        margin-bottom: 15px;
        width: 100%;
    }

.section-padding {
    padding: 60px 0;
}

.info-card,
.certificate-card,
.infra-card {
    text-align: center;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: .3s;
}

    .info-card:hover,
    .certificate-card:hover,
    .infra-card:hover {
        transform: translateY(-5px);
    }

img {
    width: 100%;
    border-radius: 6px;
}

.quality-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.quality-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    transition: .3s;
    height: 100%;
}

    .quality-box:hover {
        transform: translateY(-5px);
    }

    .quality-box i {
        font-size: 35px;
        color: #0d6efd;
        margin-bottom: 15px;
    }

    .quality-box h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }

.section-padding {
    padding: 60px 0;
}

.page-banner {
    background: #c56d53bd;
    color: #fff;
    padding: 14px 0;
    text-align: center;
}

.breadcrumb-section {
    background: #f5f5f5;
    padding: 10px 0;
}

.hover-card {
    transition: .3s;
}

    .hover-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

.team-card {
    text-align: center;
    padding: 20px;
}

.why-card {
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.btn-download {
    background: #0d6efd;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: .3s;
}

    .btn-download:hover {
        background: #084298;
        color: #fff;
    }


.brochure-banner {
    background: linear-gradient(135deg,#0d6efd,#0047ab);
    color: #fff;
    padding: 80px 0;
}

    .brochure-banner h1 {
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .brochure-banner p {
        font-size: 16px;
        margin-bottom: 25px;
    }

.btn-brochure {
    background: #fff;
    color: #0d6efd;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: .3s;
}

    .btn-brochure:hover {
        background: #e9ecef;
        color: #0d6efd;
    }

.brochure-img {
    max-height: 300px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .contact-card input,
    .contact-card textarea {
        border-radius: 6px;
        border: 1px solid #ddd;
        padding: 10px;
    }

.btn-submit {
    background: linear-gradient(45deg,#2f80ed,#56ccf2);
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    border: none;
}

    .btn-submit:hover {
        opacity: .9;
    }

.select2-container--default .select2-selection--single {
    height: 38px;
    padding: 5px;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 36px;
    }

#promo {
    margin-left:255px;
}

/* ============================= */
/* Mobile Responsive CSS */
/* ============================= */

@media (max-width: 768px) {

    /* Header */
    .top-header {
        text-align: center;
        padding: 8px 0;
    }

    .logo {
        height: 45px;
    }

    .contact-info {
        font-size: 13px;
    }

    .callback-btn {
        padding: 6px 10px;
        font-size: 13px;
    }

    /* Menu */
    .menu {
        flex-direction: column;
    }

    /* Hero Slider */
    .hero-slider {
        height: 200px;
    }

    .hero-slide {
        height: 180px;
    }

    /* Section spacing */
    section {
        padding: 30px 0;
    }

    /* Product images */
    .product-card img {
        height: 150px;
    }

    /* Footer fix */
    footer {
        padding: 20px 0 !important;
        text-align: center;
    }

        footer h4, footer h5 {
            font-size: 16px;
        }

        footer p {
            font-size: 13px;
        }

    .footer-bottom {
        font-size: 12px;
    }

    /* Contact section */
    .contact-title {
        font-size: 28px;
    }

    .contact-image {
        height: 250px;
    }
}