/* ==========================================
   Aditi Power Tech
========================================== */

:root{
    --primary:#ED2330;
    --secondary:#0F548B;
    --white:#FFFFFF;
    --dark:#2B2B2B;
    --light:#E6E6E6;
}

/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:var(--white);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

/* Section */
.section-padding{
    padding:80px 0;
}

.section-title{
    font-size:40px;
    font-weight:700;
}

/* Colors */
.text-primary{
    color:var(--primary)!important;
}

.text-secondary{
    color:var(--secondary)!important;
}

.bg-primary{
    background:var(--primary)!important;
}

.bg-secondary{
    background:var(--secondary)!important;
}

/* Buttons */
.btn-primary{
    background:var(--primary);
    border-color:var(--primary);
}

.btn-primary:hover{
    background:#c81c28;
    border-color:#c81c28;
}

/* Navbar */
.navbar{
    transition:.3s;
}

.navbar .nav-link{
    color:var(--dark);
    font-weight:500;
    margin-left:18px;
    transition:.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active{
    color:var(--primary);
}

/* Responsive */
@media(max-width:991px){

    .section-title{
        font-size:32px;
    }

    .navbar .nav-link{
        margin-left:0;
        padding:10px 0;
    }

}

/* ===========================
   Sticky Header
=========================== */

body{
    padding-top:90px;
}

#mainNavbar{

    position: fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;

    background:#fff;

    transition:all .4s ease;

}

#mainNavbar.scrolled{

    background:#ffffff;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    padding:5px 0;

}

#mainNavbar .nav-link{

    color:#2B2B2B;
    margin-left:18px;
    font-weight:500;

}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active{

    color:#ED2330;

}

.navbar-brand img{

    transition:.3s;

}

#mainNavbar.scrolled .navbar-brand img{

    height:45px;

}
/*==========================
      OUR SERVICES
==========================*/

.service-card{

    background:#fff;

    border-radius:16px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    border:1px solid #e9e9e9;

    position:relative;

    overflow:hidden;

    transition:all .35s ease;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:#ED2330;

    transform:scaleX(0);

    transition:.4s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.service-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    background:#ED2330;

    color:#fff;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    transition:.4s;

}

.service-card:hover .service-icon{

    background:#0F548B;

    transform:rotateY(180deg);

}

.service-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

    transition:.3s;

}

.service-card:hover h4{

    color:#ED2330;

}

.service-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;

}


/*======================================
            PRODUCT SLIDER
=======================================*/

.productSwiper{
    padding:20px 5px 40px;
}

.productSwiper .swiper-slide{
    height:auto;
    display:flex;
}

.product-card{
    width:100%;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #ececec;

    display:flex;
    flex-direction:column;
    height:100%;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/* Image Area */

.product-image{
    height:260px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    padding:15px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.4s;
}

.product-card:hover .product-image img{
    transform:scale(1.05);
}

/* Content */

.product-content{
    padding:22px;
    text-align:center;

    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content .badge{
    width:fit-content;
    margin:0 auto 15px;
    font-size:13px;
}

.product-content h5{
    font-weight:700;
    font-size:22px;
    line-height:1.4;
    margin-bottom:12px;
    transition:.3s;

    min-height:65px;
}

.product-card:hover h5{
    color:#ED2330;
}

.product-content p{
    color:#666;
    line-height:1.7;
    flex:1;
    margin-bottom:20px;

    min-height:90px;
}

.product-content .btn{
    margin-top:auto;
    border-radius:8px;
    padding:12px;
    font-weight:600;
}

/* Hide Swiper Overflow */

.swiper{
    overflow:hidden;
}

.productSwiper .swiper-wrapper{
    transition-timing-function:linear !important;
}
/*=========================
    TESTIMONIAL
==========================*/

.testimonialSwiper{

    padding:10px 0 40px;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:16px;

    border:1px solid #eee;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.quote-icon{

    font-size:45px;

}

.testimonial-card p{

    color:#666;

    line-height:1.8;

    margin-top:15px;

    margin-bottom:0;

}

.testimonial-user{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #ED2330;

}
/*=====================================
        PAGE BANNER
======================================*/

.page-banner{

    background:linear-gradient(rgba(15,84,139,.85),rgba(15,84,139,.85)),
    url("../images/about-banner.jpg") center center/cover;

    padding:140px 0;

    color:#fff;

}

.page-banner h1{

    font-size:52px;

    font-weight:700;

}

.page-banner p{

    font-size:18px;

    margin:15px 0 20px;

}

.page-banner .breadcrumb{

    margin-bottom:0;

}

.page-banner .breadcrumb a{

    color:#fff;

}

.page-banner .breadcrumb-item.active{

    color:#ddd;

}

/*=====================================
        ABOUT IMAGE
======================================*/

.about-image{

    position:relative;

}

.about-image img{

    border-radius:20px;

}

.experience-box{

    position:absolute;

    bottom:25px;

    left:25px;

    background:#ED2330;

    color:#fff;

    padding:20px 30px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.experience-box h2{

    font-size:42px;

    margin-bottom:5px;

    font-weight:700;

}

.experience-box p{

    margin:0;

}

/*=====================================
      COMPANY HIGHLIGHTS
======================================*/

.highlight-box{

    background:#fff;

    padding:35px 30px;

    border-radius:16px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.highlight-box:hover{

    transform:translateY(-10px);

}

.highlight-box i{

    font-size:45px;

    color:#ED2330;

}

.highlight-box h3{

    font-size:24px;

    margin:20px 0 10px;

    font-weight:700;

}

.highlight-box p{

    color:#666;

    margin-bottom:0;

}
/*=====================================
      MISSION & VISION
======================================*/

.mission-card,
.vision-card{

    position:relative;

    background:#fff;

    border-radius:20px;

    padding:45px;

    overflow:hidden;

    transition:.4s;

    height:100%;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.mission-card{

    border-top:5px solid #ED2330;

}

.vision-card{

    border-top:5px solid #0F548B;

}

.mission-card:hover,
.vision-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.mission-icon,
.vision-icon{

    width:85px;

    height:85px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

    color:#fff;

    margin-bottom:25px;

}

.mission-icon{

    background:#ED2330;

}

.vision-icon{

    background:#0F548B;

}

.card-subtitle{

    color:#ED2330;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.vision-card .card-subtitle{

    color:#0F548B;

}

.mission-card h3,
.vision-card h3{

    font-size:30px;

    font-weight:700;

    margin:15px 0;

}

.mission-card p,
.vision-card p{

    color:#666;

    line-height:1.9;

}

.mission-card ul li,
.vision-card ul li{

    margin-bottom:15px;

    font-weight:500;

}

.mission-card ul i{

    color:#ED2330;

    margin-right:10px;

}

.vision-card ul i{

    color:#0F548B;

    margin-right:10px;

}

/*==================================
        CORE VALUES
===================================*/

.value-box{

    display:flex;

    align-items:flex-start;

    gap:20px;

    padding:25px;

    background:#fff;

    border-radius:16px;

    transition:.35s;

    border:1px solid #eee;

    height:100%;

}

.value-box:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.10);

    border-color:#ED2330;

}

.value-icon{

    min-width:65px;

    width:65px;

    height:65px;

    background:#ED2330;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:28px;

    transition:.35s;

}

.value-box:hover .value-icon{

    background:#0F548B;

    transform:rotate(12deg) scale(1.08);

}

.value-box h5{

    font-size:20px;

    font-weight:700;

    margin-bottom:10px;

}

.value-box p{

    margin:0;

    color:#666;

    line-height:1.7;

}
/*=====================================
      DIRECTOR MESSAGE
======================================*/

.director-section{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.director-image{

    height:100%;

    overflow:hidden;

}

.director-image img{

    width:100%;

    height:100%;

    min-height:550px;

    object-fit:cover;

    transition:.4s;

}

.director-image:hover img{

    transform:scale(1.05);

}

.director-content{

    position:relative;

    padding:60px;

}

.quote-bg{

    position:absolute;

    top:20px;

    right:35px;

    font-size:90px;

    color:rgba(237,35,48,.08);

}

.director-content h3{

    font-size:30px;

    font-weight:700;

    margin-bottom:25px;

    color:#2B2B2B;

}

.director-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;

}

.director-info{

    margin-top:35px;

    padding-top:25px;

    border-top:1px solid #ececec;

}

.director-info h4{

    font-size:28px;

    font-weight:700;

    color:#2B2B2B;

    margin-bottom:6px;

}

.director-info span{

    color:#ED2330;

    font-size:17px;

    font-weight:600;

}

/* Mobile */

@media(max-width:991px){

.director-image img{

    min-height:400px;

}

.director-content{

    padding:35px;

}

.quote-bg{

    display:none;

}

.director-content h3{

    font-size:24px;

}

}
/*=====================================
            PAGE BANNER
======================================*/

.page-banner{

    background:linear-gradient(rgba(15,84,139,.88),rgba(15,84,139,.88)),
    url("../images/banner.jpg") center center/cover no-repeat;

    padding:70px 0;

    color:#fff;

}

.banner-subtitle{

    display:inline-block;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#fff;

    margin-bottom:10px;

}

.banner-title{

    font-size:42px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:15px;

}

.banner-text{

    max-width:650px;

    margin:0 auto 20px;

    font-size:16px;

    color:#f2f2f2;

    line-height:1.7;

}

.page-banner .breadcrumb{

    margin-bottom:0;

}

.page-banner .breadcrumb-item a{

    color:#fff;

    text-decoration:none;

}

.page-banner .breadcrumb-item.active{

    color:#ddd;

}

.page-banner .breadcrumb-item+.breadcrumb-item::before{

    color:#fff;

}

/* Tablet */

@media (max-width:991px){

    .page-banner{

        padding:60px 0;

    }

    .banner-title{

        font-size:34px;

    }

}

/* Mobile */

@media (max-width:576px){

    .page-banner{

        padding:45px 0;

    }

    .banner-title{

        font-size:28px;

    }

    .banner-text{

        font-size:15px;

    }

}
/*=====================================
        PRODUCT CARD
======================================*/

.product-card{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.product-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}

.product-img{

    overflow:hidden;

    height:230px;

}

.product-img img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.product-body{

    padding:25px;

}

.product-category{

    display:inline-block;

    background:#eaf4fb;

    color:#0F548B;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

    margin-bottom:15px;

}

.product-body h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

    transition:.3s;

}

.product-card:hover h4{

    color:#ED2330;

}

.product-body p{

    color:#666;

    line-height:1.8;

    min-height:90px;

}

.product-body .btn{

    border-radius:8px;

    padding:12px;

    font-weight:600;

}
/*==============================
        NAVBAR DROPDOWN
==============================*/

.navbar .dropdown-menu{

    min-width:260px;

    border:none;

    border-radius:10px;

    padding:10px 0;

    margin-top:12px;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

}

.navbar .dropdown-item{

    padding:12px 22px;

    font-size:16px;

    font-weight:500;

    transition:.3s;

    color:#2B2B2B;

}

.navbar .dropdown-item:hover{

    background:#ED2330;

    color:#fff;

    padding-left:28px;

}

.navbar .dropdown-toggle::after{

    margin-left:8px;

}
@media (min-width:992px){

    .navbar .dropdown:hover .dropdown-menu{

        display:block;

        margin-top:0;

        animation:dropdownFade .25s ease;

    }

}

@keyframes dropdownFade{

    from{

        opacity:0;
        transform:translateY(10px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}
/*=====================================
        CONTACT PAGE
======================================*/

.contact-info-card{

    background:#fff;

    padding:35px 25px;

    text-align:center;

    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.contact-info-card:hover{

    transform:translateY(-8px);

}

.contact-icon{

    width:70px;

    height:70px;

    background:#ED2330;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 20px;

    font-size:28px;

}

.contact-info-card h5{

    font-weight:700;

    margin-bottom:15px;

}

.contact-info-card p{

    color:#666;

    margin-bottom:8px;

}

.contact-form-box{

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form-box .form-control,
.contact-form-box .form-select{

    height:52px;

    border-radius:10px;

}

.contact-form-box textarea{

    border-radius:10px;

    resize:none;

}
/*=====================================================
                ADMIN LOGIN PAGE
======================================================*/

:root{

    --primary:#ED2330;
    --secondary:#0F548B;
    --dark:#2B2B2B;
    --white:#FFFFFF;
    --light:#F5F7FA;

}

/* Login Background */

.login-section{

    min-height:100vh;

    background:linear-gradient(135deg,#0F548B 0%,#ED2330 100%);

    position:relative;

    overflow:hidden;

}

.login-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-120px;

    left:-120px;

}

.login-section::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(255,255,255,.06);

    border-radius:50%;

    bottom:-180px;

    right:-180px;

}

/* Card */

.login-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

    position:relative;

    z-index:10;

}

/* Left Side */

.login-left{

    background:linear-gradient(rgba(15,84,139,.92),rgba(237,35,48,.88)),
    url("../images/login-bg.jpg");

    background-size:cover;

    background-position:center;

    color:#fff;

    min-height:650px;

}

.login-overlay{

    padding:60px 50px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    height:100%;

}

.login-logo{

    height:90px;

    width:auto;

    background:#fff;

    padding:10px;

    border-radius:15px;

    margin-bottom:30px;

}

.login-left h2{

    font-size:38px;

    font-weight:700;

    margin-bottom:20px;

}

.login-left p{

    line-height:1.8;

    opacity:.95;

}

.login-features{

    margin-top:35px;

}

.login-features div{

    margin-bottom:15px;

    font-size:16px;

}

.login-features i{

    margin-right:10px;

}

/* Right Side */

.login-form{

    padding:60px 50px;

}

.login-badge{

    display:inline-block;

    background:var(--primary);

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:13px;

    margin-bottom:20px;

    font-weight:600;

}

.login-form h3{

    font-size:34px;

    font-weight:700;

    color:var(--dark);

}

/* Form */

.form-label{

    font-weight:600;

}

.input-group{

    border-radius:10px;

    overflow:hidden;

}

.input-group.active{

    box-shadow:0 0 0 .2rem rgba(237,35,48,.15);

}

.input-group-text{

    background:#f8f8f8;

    color:var(--secondary);

    border:1px solid #ddd;

}

.form-control{

    border:1px solid #ddd;

    box-shadow:none !important;

    padding:14px;

}

.form-control:focus{

    border-color:var(--primary);

}

/* Login Button */

.btn-login{

    background:var(--primary);

    color:#fff;

    border:none;

    padding:15px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.btn-login:hover{

    background:#c61d29;

    color:#fff;

    transform:translateY(-2px);

    box-shadow:0 15px 30px rgba(237,35,48,.30);

}

/* Links */

.forgot-link{

    color:var(--secondary);

    font-weight:600;

}

.forgot-link:hover{

    color:var(--primary);

}

/* Footer */

.login-footer{

    text-align:center;

    margin-top:35px;

    color:#777;

    font-size:14px;

}

/* Spinner */

.spinner-border{

    width:1rem;

    height:1rem;

}

/* Responsive */

@media(max-width:991px){

    .login-left{

        display:none;

    }

    .login-form{

        padding:40px 30px;

    }

}

@media(max-width:576px){

    .login-form{

        padding:30px 20px;

    }

    .login-form h3{

        font-size:28px;

    }

}
/* ===========================
   WhatsApp Sticky Button
=========================== */

.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
    z-index: 9999;
    transition: .3s;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    background: #20ba5a;
    color: #fff;
    transform: scale(1.1);
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}