/* =====================================================
   SHREE ALUMINIUM - HEADER CSS
   Color Theme: Blue + Red + Silver
===================================================== */

/* ========== GOOGLE FONT ========== */
body{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #1A1A1A;
    background: #FFFFFF;
}

a{
    text-decoration: none;
}

/* =====================================================
   TOP HEADER
===================================================== */

.top-header{
    background: #0D47A1;
    padding: 10px 0;
}

.top-header a{
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
}

.top-header i{
    color: #E53935;
    margin-right: 6px;
}

.social a{
    margin-left: 14px;
    transition: 0.3s ease;
}

.social a:hover{
    color: #E53935;
}

/* =====================================================
   MAIN HEADER
===================================================== */

/*======================================
        HEADER
=======================================*/

#header{
    position: sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/*======================================
        HEADER WRAPPER
=======================================*/

.header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

/*======================================
        MENU
=======================================*/

.menu{
    display:flex;
    align-items:center;
    gap:45px;
    list-style:none;
    margin:0;
    padding:0;
}

.menu a{
    color:#1A1A1A;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    transition:.3s;
    position:relative;
}

.menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#E53935;
    transition:.3s;
}

.menu a:hover::after{
    width:100%;
}

.menu a:hover{
    color:#0D47A1;
}

/*======================================
        LOGO
=======================================*/

.logo img{
    height:85px;
}

/*======================================
            HERO SLIDER
=======================================*/

.hero-slider{
    position:relative;
    width:100%;
    height:90vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .8s ease;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/*======================================
            OVERLAY
=======================================*/

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

/*======================================
            CONTENT
=======================================*/

.content{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    color:#fff;
    max-width:650px;
    z-index:5;
}

.content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.content p{
    font-size:18px;
    margin-bottom:30px;
}

.theme-btn{
    display:inline-block;
    padding:14px 34px;
    background:#E53935;
    color:#fff;
    border-radius:4px;
    text-decoration:none;
    transition:.3s;
}

.theme-btn:hover{
    background:#0D47A1;
    color:#fff;
}

/*======================================
            BUTTONS
=======================================*/

.prev,
.next{

    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    cursor:pointer;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:28px;
    backdrop-filter:blur(6px);
    z-index:10;
    transition:.3s;

}

.prev:hover,
.next:hover{
    background:#E53935;
}

.prev{
    left:25px;
}

.next{
    right:25px;
}

/*======================================
            RESPONSIVE
=======================================*/

@media(max-width:768px){

.content{
left:30px;
right:30px;
}

.content h1{
font-size:36px;
}

.hero-slider{
height:75vh;
}

}

/*======================================
        ABOUT SECTION
======================================*/

.about-section{
    background:#fff;
}

/*======================================
        ABOUT IMAGE
======================================*/

.about-img{
    overflow:hidden;
    border-radius:12px;

}

.about-img img{
    width:100%;
    transition:.5s;
        height: 473px;
}

.about-img:hover img{
    transform:scale(1.05);
}

/*======================================
        SECTION HEADING
======================================*/

.section-subtitle{
    color:#E53935;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#0D47A1;
    margin:10px 0 20px;
}

.about-section p{
    color:#666;
    line-height:1.9;
}

/*======================================
        ABOUT LIST
======================================*/

.about-list{
    list-style:none;
    padding:0;
    margin:0;
}

.about-list li{
    margin-bottom:15px;
    font-weight:500;
}

.about-list i{
    color:#E53935;
    margin-right:10px;
}

/*======================================
        BUTTON
======================================*/

.theme-btn{
    display:inline-block;
    padding:14px 30px;
    background:#0D47A1;
    color:#fff;
    border-radius:5px;
    text-decoration:none;
    transition:.3s;
}

.theme-btn:hover{
    background:#E53935;
    color:#fff;
}

/*======================================
        RESPONSIVE
======================================*/

@media (max-width:991px){

    .about-section{
        padding:70px 0;
    }

    .section-title{
        font-size:34px;
    }

    .about-img{
        margin-bottom:20px;
    }

}

@media (max-width:767px){

    .about-section{
        text-align:center;
        padding:60px 0;
    }

    .section-title{
        font-size:28px;
    }

    .section-subtitle{
        font-size:14px;
    }

    .about-section p{
        font-size:15px;
    }

    .about-list{
        margin-top:20px;
    }

    .about-list li{
        justify-content:center;
        display:flex;
        align-items:center;
    }

    .theme-btn{
        margin-top:25px;
    }

}

/*======================================
        COMPANY CONTENT
======================================*/

.company-content{
    background:#f8f9fa;
}

.company-content .section-title{
    margin-bottom:20px;
}

.company-content p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

    .company-content{
        padding:70px 0;
    }

}

@media(max-width:767px){

    .company-content{
        padding:60px 0;
    }

    .company-content .section-title{
        font-size:28px;
    }

    .company-content p{
        font-size:15px;
        line-height:1.8;
    }

}

/*======================================
        WHY CHOOSE US
======================================*/

.why-choose{
    background:#fff;
}

.section-desc{
    max-width:700px;
    margin:auto;
    color:#666;
}

/*======================================
        CARD
======================================*/

.choose-card{
    background:#fff;
    padding:40px 30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.choose-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

/*======================================
        ICON
======================================*/

.choose-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    background:#0D47A1;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    transition:.4s;
}

.choose-card:hover .choose-icon{
    background:#E53935;
    transform:rotateY(180deg);
}

/*======================================
        CONTENT
======================================*/

.choose-card h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
    color:#0D47A1;
}

.choose-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

    .choose-card{
        padding:35px 25px;
    }

}

@media(max-width:767px){

    .section-desc{
        font-size:15px;
    }

    .choose-card{
        padding:30px 20px;
    }

    .choose-card h4{
        font-size:20px;
    }

}

/*======================================
        OUR SERVICES
======================================*/

.services{
    background:#f8f9fa;
}

/*======================================
        SERVICE CARD
======================================*/

.service-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
}

/*======================================
        IMAGE
======================================*/

.service-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.service-card:hover img{
    transform:scale(1.08);
}

/*======================================
        CONTENT
======================================*/

.service-content{
    padding:25px;
}

.service-content h4{
    color:#0D47A1;
    margin-bottom:15px;
    font-size:22px;
    font-weight:600;
}

.service-content p{
    color:#666;
    line-height:1.8;
}

.service-content a{
    color:#E53935;
    font-weight:600;
    text-decoration:none;
}

.service-content a i{
    margin-left:6px;
    transition:.3s;
}

.service-content a:hover i{
    margin-left:12px;
}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:767px){

    .service-card img{
        height:220px;
    }

    .service-content{
        padding:20px;
    }

    .service-content h4{
        font-size:20px;
    }

}

/*======================================
        OUR PROJECTS
======================================*/

.projects{
    background:#fff;
}

/*======================================
        PROJECT CARD
======================================*/

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}

.project-card img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}

/*======================================
        OVERLAY
======================================*/

.project-overlay{

    position:absolute;
    inset:0;
    background:rgba(13,71,161,.85);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:#fff;
    opacity:0;
    transition:.4s;

}

.project-card:hover img{
    transform:scale(1.1);
}

.project-card:hover .project-overlay{
    opacity:1;
}

.project-overlay h4{
    font-size:24px;
    margin-bottom:10px;
}

.project-overlay p{
    margin:0;
}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:767px){

.project-card img{
height:240px;
}

.project-overlay h4{
font-size:20px;
}

}

/*======================================
        WORK PROCESS
======================================*/

.work-process{
    background:#f8f9fa;
}

/*======================================
        PROCESS CARD
======================================*/

.process-card{
    position:relative;
    background:#fff;
    padding:40px 25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    overflow:hidden;
    height:100%;
}

.process-card:hover{
    transform:translateY(-8px);
}

/*======================================
        NUMBER
======================================*/

.process-number{
    position:absolute;
    top:15px;
    right:20px;
    font-size:42px;
    font-weight:700;
    color:rgba(13,71,161,.08);
}

/*======================================
        ICON
======================================*/

.process-icon{
    width:80px;
    height:80px;
    background:#0D47A1;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin:0 auto 25px;
    transition:.3s;
}

.process-card:hover .process-icon{
    background:#E53935;
    transform:rotate(360deg);
}

/*======================================
        CONTENT
======================================*/

.process-card h4{
    color:#0D47A1;
    margin-bottom:15px;
    font-weight:600;
}

.process-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:767px){

.process-card{
padding:30px 20px;
}

.process-number{
font-size:34px;
}

.process-icon{
width:70px;
height:70px;
font-size:26px;
}

}

/*======================================
        TESTIMONIAL
======================================*/

.testimonial-section{
    background:#f8f9fa;
}

.testimonial-slider{
    padding-bottom:70px;
}

/*======================================
        CARD
======================================*/

.testimonial-card{

    background:#fff;
    padding:35px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
    height:320px;

      display:flex;
    flex-direction:column;
    justify-content:space-between;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.quote{

    color:#E53935;
    font-size:35px;
    margin-bottom:20px;

}

.testimonial-card p{

    color:#666;
    line-height:1.8;

}

/*======================================
        CLIENT
======================================*/

.client{

    display:flex;
    align-items:center;
    margin-top:25px;

}

.client img{

    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    margin-right:15px;

}

.client h5{

    margin:0;
    color:#0D47A1;

}

.client span{

    font-size:14px;
    color:#888;

}

/*======================================
        SWIPER
======================================*/

.swiper-button-next,
.swiper-button-prev{

    color:#0D47A1;

}

.swiper-pagination-bullet-active{

    background:#E53935;

}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:767px){

.testimonial-card{

   height:auto;
        min-height:300px;
        padding:25px;

}

.client img{

width:50px;
height:50px;

}

}

/*======================================
        SWIPER BUTTON
======================================*/

.testimonial-slider{
    position:relative;
    overflow:hidden;
    padding-bottom:70px;
}

.swiper-button-next,
.swiper-button-prev{

    width:50px;
    height:50px;
    background:transparent;
    border-radius:50%;
    
    color:#0D47A1;
    top:50%;
    transform:translateY(-50%);
}

.swiper-button-prev{
    left:0;
}

.swiper-button-next{
    right:0;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:20px;
    font-weight:700;
}

.swiper{
    overflow: hidden;
}

/*======================================
            FAQ SECTION
======================================*/

.faq-section{
    background:#f8f9fa;
}

.accordion-item{

    border:none;
    margin-bottom:20px;
    border-radius:10px !important;
    overflow:hidden;
    box-shadow:0 5px 18px rgba(0,0,0,.08);

}

.accordion-button{

    font-size:18px;
    font-weight:600;
    color:#0D47A1;
    padding:20px;
    background:#fff;

}

.accordion-button:not(.collapsed){

    background:#0D47A1;
    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:20px;
    line-height:1.8;
    color:#666;

}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:767px){

.accordion-button{

font-size:16px;
padding:18px;

}

.accordion-body{

font-size:15px;

}

}


/*======================================
        CALL TO ACTION
======================================*/

/*======================================
        CTA SECTION
======================================*/

.cta-section{
    padding:90px 0;
    background:#f8f9fa;
}

.cta-wrapper{

    background:linear-gradient(135deg,#0D47A1,#184DB8);

    border-radius:20px;

    padding:60px;

    position:relative;

    overflow:hidden;

}

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:300px;
    height:300px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-120px;
    right:-80px;

}

.cta-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:20px;

}

.cta-wrapper h2{

    color:#fff;

    font-size:40px;

    margin-bottom:20px;

}

.cta-wrapper p{

    color:#ddd;

    line-height:1.9;

}

.cta-features{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-top:25px;

}

.cta-features span{

    color:#fff;

    font-weight:500;

}

.cta-features i{

    color:#E53935;

    margin-right:8px;

}

/*======================================
        BUTTON
======================================*/

.cta-btn,
.cta-btn2{

    display:block;

    padding:16px;

    margin:12px auto;

    width:220px;

    border-radius:8px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.cta-btn{

    background:#E53935;

    color:#fff;

}

.cta-btn:hover{

    background:#fff;

    color:#0D47A1;

}

.cta-btn2{

    background:#fff;

    color:#0D47A1;

}

.cta-btn2:hover{

    background:#E53935;

    color:#fff;

}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

.cta-wrapper{

padding:40px 25px;

text-align:center;

}

.cta-features{

justify-content:center;

}

}

@media(max-width:767px){

.cta-wrapper h2{

font-size:28px;

}

.cta-features{

flex-direction:column;

gap:10px;

}

.cta-btn,
.cta-btn2{

width:100%;

max-width:280px;

}

}

/*======================================
            FOOTER
======================================*/

.footer{

    background:#081F4D;

    color:#fff;

    padding-top:80px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer-text{

    color:#d9d9d9;

    line-height:1.9;

    margin-bottom:30px;

}

/*======================================
        HEADING
======================================*/

.footer h4{

    color:#fff;

    margin-bottom:25px;

    font-size:22px;

    position:relative;

}

.footer h4::after{

    content:"";

    width:50px;

    height:3px;

    background:#E53935;

    display:block;

    margin-top:10px;

}

/*======================================
        LINKS
======================================*/

.footer ul{

    padding:0;

    margin:0;

    list-style:none;

}

.footer ul li{

    margin-bottom:15px;

}

.footer ul li a{

    color:#d9d9d9;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#E53935;

    padding-left:8px;

}

/*======================================
        CONTACT
======================================*/

.contact-info li{

    display:flex;

    gap:12px;

    color:#d9d9d9;

}

.contact-info i{

    color:#E53935;

    margin-top:5px;

}

/*======================================
        SOCIAL
======================================*/

.social-links{

    display:flex;

    gap:15px;

}

.social-links a{

    width:45px;

    height:45px;

    border:1px solid rgba(255,255,255,.2);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.social-links a:hover{

    background:#E53935;

    border-color:#E53935;

}

/*======================================
        COPYRIGHT
======================================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    margin-top:60px;

    padding:22px 0;

    color:#cfcfcf;

}

/*======================================
        RESPONSIVE
======================================*/

@media(max-width:991px){

.footer{

text-align:center;

}

.social-links{

justify-content:center;

}

.contact-info li{

justify-content:center;

}

}

@media(max-width:767px){

.footer{

padding-top:60px;

}

.footer h4{

margin-top:15px;

}

.footer-bottom{

font-size:14px;

}

}