*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/heroimg.png);
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

nav{
    display: flex;
    padding: 2% 4%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 135px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: .5s;    
}
.nav-links ul li:hover::after{
    width: 100%;
}
nav .fa{
    display: none;
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 20px 0 40px;
    font-size: 14px;
    color: #fff;
}
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    transition: 1s;
}

.hero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
}


@media(max-width: 700px)
{
   .nav-links ul li
    {
        display: block;
    }
    .nav-links
    {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }
    .nav-links ul{
        padding: 30px;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer; 
    }
    .text-box h1{
        font-size: 20px;
    }
}

/*---------- course --------*/

.course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
h1{
    font-size: 36px;
    font-weight: 600;
}
p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;  
}
  
.course-col{
    flex-basis: 31%;
    background: #fff3f3;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: .5s;
}
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}
.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width:700px){
    .row{
        flex-direction: column;
    }
} 

/*---------------- campus ----------------*/

.campus{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}
.campus-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.campus-col img{
    width: 100%;
}

.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    transition: .5s;
}
.layer:hover{
    background: rgba(226, 0, 0, 0.7);
}
.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: .5s;
}
.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}

/*-------------- Facilities ----------------*/

.facility{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.facility-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}
.facility-col img{
    width: 100%;
    border-radius: 10px;
}
.facility-col p{
    padding: 0;
}
.facility-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}

/*---------------- testimonials ------------------*/

.testimonials{
    width: 80%;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

.testimonial-col{
    flex-basis: 44%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
    background: #fff3f3;
    padding: 25px;
    cursor: pointer;
    display: flex;
}
.testimonial-col img{
    height: 40px;
    margin-left: 5px;
    margin-right: 30px;
    border-radius: 50%;
}
.testimonial-col p{
    padding: 0;
}
.testimonial-col h3{
    margin-top: 15px;
    text-align: left;
}
.testimonial-col .fa{
    color: #f44336;
}

@media(max-width:700px){
    .testimonial-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
}

/*-------- Call To Action ----------*/


.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/666.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 40px; 
    padding: 0; 
}

@media(max-width:700px){
    .cta h1{
        font-size: 24px;
    }
}

/*--------------Footer---------------*/

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.icons .fa{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.fa-heart-o{
    color: #f44336;
}


/*--------------- About Us Page --------------*/


.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(images/666.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    margin-top: 100px;
}
.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}
.about-col h1{
    padding-top: 0;
}
.about-col p{
    padding: 15px 0 25px;
}

.hero-btn.red-btn{
    border: 1px solid #f44336;
    background: transparent;
    color: #f44336;
}
.hero-btn.red-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    color: #fff;
}
.hero-btn.red-btn::after{
    background: #f44336;
}
.hero-btn.red-btn::before{
    background: #f44336;
}
.content-image{
    flex-basis: 50%;
}
.about-col img{
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.about-us .row{
    align-items: center;
}
/*---------- Blog Page -------------*/

.blog-content{
    width: 80%;
    margin: auto;
    padding: 60px 0;
}
.blog-left{
    flex-basis: 65%;
}
.blog-right{
    flex-basis: 32%;
}
.blog-left img{
    width: 100%;
}
.blog-left h2{
    color: #222;
    font-weight: 600;
    margin: 30px 0;
}
.blog-left p{
    color: #999;
    padding: 0;
}

.blog-right h3{
    background: #f44336;
    color: #fff;
    padding: 7px 0;
    font-size: 16px;
    margin-bottom: 20px;
}
.blog-right div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #555;
    padding: 8px;
    box-sizing: border-box;
}

.comment-box{
    border: 1px solid #ccc;
    margin: 50px 0;
    padding: 10px 20px;
}

.comment-box h3{
    text-align: left;
}
.comment-form input, .comment-form textarea{
    width: 100%;
    padding: 10px;
    margin: 15px 0;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: #f0f0f0;
}
.comment-form button{
    margin: 10px 0;
}


@media (max-width:700px){
    .sub-header h1{
        font-size: 24px;
    }
} 


/*------- Contact Us Page ------------*/

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}
.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}
.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: #f44336;
    margin: 10px;
    margin-right: 30px;
}
    
.contact-col div p{
    padding: 0;
}
.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
    
}
.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
}

.footer-link{
    text-decoration: none;
    color: #777;
}



/* ============================= */
/* PRODUCT SHOWCASE SECTION */
/* ============================= */

.products{
    width:90%;
    margin:auto;
    padding:100px 0;
    text-align:center;
}

.products h1{
    font-size:42px;
    margin-bottom:15px;
}

.products p{
    margin-bottom:50px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.product-card{
    background:#ffffff;
    padding:20px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.product-card img{
    width:100%;
    display:block;
    object-fit:cover;
}

/* Mobile */

@media(max-width:768px){

    .product-grid{
        grid-template-columns:1fr;
    }

    .products h1{
        font-size:30px;
    }

}


.testimonial-col{
    display:block;
    text-align:left;
}



/* PRODUCT RANGE */

.product-range{
    width:80%;
    margin:auto;
    padding:100px 0;
}

.product-range h1{
    text-align:center;
    margin-bottom:10px;
}

.product-range > p{
    text-align:center;
    margin-bottom:60px;
}

.product-line{
    padding:30px 0;
    border-bottom:1px solid #e5e5e5;
}

.product-line:last-child{
    border-bottom:none;
}

.product-line h2{
    font-size:28px;
    margin-bottom:15px;
    color:#111;
}

.product-line p{
    font-size:16px;
    line-height:30px;
    padding:0;
}

/* AMAZON STORE SECTION */

.amazon-store{
    width:80%;
    margin:80px auto;
    text-align:center;
}

.amazon-store h1{
    margin-bottom:15px;
}

.amazon-store p{
    margin-bottom:30px;
}

.amazon-store img{
    width:220px;
    max-width:80%;
    transition:0.3s ease;
}

.amazon-store img:hover{
    transform:scale(1.05);
}

/* ABOUT PAGE GALLERY */

.gallery-section{
    width:80%;
    margin:auto;
    padding:80px 0;
    text-align:center;
}

.gallery-section h1{
    margin-bottom:10px;
}

.gallery-section p{
    margin-bottom:40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:12px;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
    transition:0.4s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

@media(max-width:700px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:auto;
    }

}

/* PREMIUM PRODUCT GALLERY */

.premium-gallery{
    width: 85%;
    margin: auto;
    padding: 100px 0;
    text-align: center;
}

.premium-gallery p{
    margin-bottom: 40px;
}

.gallery-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.gallery-item{
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img{
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.gallery-item img:hover{
    transform: scale(1.05);
}

@media(max-width:700px){

    .gallery-container{
        grid-template-columns: 1fr;
    }

    .gallery-item img{
        height: auto;
    }

}

/* FAQ SECTION */

.faq-section{
    width:80%;
    margin:auto;
    padding:100px 0;
}

.faq-section h1,
.faq-section p{
    text-align:center;
}

.faq-section p{
    margin-bottom:40px;
}

.faq-question{
    width:100%;
    padding:18px 25px;
    border:none;
    background:#f7f7f7;
    text-align:left;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    margin-top:10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-radius:8px;
}

.faq-answer{
    display:none;
    padding:20px;
    background:#fff;
    border:1px solid #eee;
    border-top:none;
    border-radius:0 0 8px 8px;
}

.faq-answer p{
    text-align:left;
    padding:0;
}

.faq-answer{
    display:none;
}

/* BROCHURE SECTION */

.brochure-section{
    width:85%;
    margin:100px auto;
}

.brochure-box{
    background: linear-gradient(135deg,#1c1c1c,#3a3a3a);
    border-radius:20px;
    padding:50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

.brochure-content{
    flex:1;
}

.brochure-content h1{
    color:#fff;
    margin-bottom:15px;
}

.brochure-content p{
    color:#ddd;
    max-width:600px;
    margin-bottom:25px;
}

.brochure-btn{
    display:inline-block;
    background:#fff;
    color:#111;
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
}

.brochure-btn:hover{
    transform:translateY(-3px);
}

.brochure-icon{
    font-size:100px;
    color:#f44336;
    margin-left:30px;
}

@media(max-width:700px){

    .brochure-box{
        flex-direction:column;
        text-align:center;
        padding:35px 25px;
    }

    .brochure-icon{
        margin:25px 0 0;
        font-size:70px;
    }

}

.product-range{
    width:80%;
    margin:auto;
    padding:100px 0;
}

.product-range h1{
    text-align:center;
    margin-bottom:15px;
}

.product-range > p{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.product-box{
    border-left:5px solid #f44336;
    padding:30px;
    margin-bottom:35px;
    background:#fafafa;
    border-radius:10px;
    transition:0.3s;
}

.product-box:hover{
    transform:translateX(10px);
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.product-box span{
    font-size:14px;
    font-weight:700;
    color:#f44336;
    letter-spacing:2px;
}

.product-box h2{
    margin:10px 0;
    font-size:30px;
}

.product-box p{
    padding:0;
    line-height:1.8;
}

/* WHATSAPP FLOATING BUTTON */

.whatsapp-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    line-height: 60px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-float:hover{
    transform: scale(1.1);
    color: #fff;
}

@media(max-width:700px){

    .whatsapp-float{
        width: 55px;
        height: 55px;
        line-height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

}
/* LEGACY SECTION */

.legacy-section{
    width:85%;
    margin:100px auto;
    padding:80px 40px;
    background:#111;
    border-radius:20px;
    text-align:center;
}

.legacy-header h1{
    color:#fff;
    margin-bottom:15px;
}

.legacy-header p{
    color:#ccc;
    max-width:700px;
    margin:0 auto 60px;
}

.legacy-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.legacy-card{
    background:rgba(255,255,255,0.05);
    border-radius:15px;
    padding:40px 20px;
    transition:0.4s;
}

.legacy-card:hover{
    transform:translateY(-10px);
}

.legacy-card h2{
    color:#f44336;
    font-size:50px;
    margin-bottom:10px;
}

.legacy-card span{
    color:#fff;
    font-size:16px;
    font-weight:500;
}

@media(max-width:700px){

    .legacy-grid{
        grid-template-columns:1fr 1fr;
    }

    .legacy-card h2{
        font-size:36px;
    }

}

/* MANUFACTURING JOURNEY */

.manufacturing-journey{
    width:85%;
    margin:100px auto;
    text-align:center;
}

.section-title p{
    max-width:700px;
    margin:15px auto 60px;
}

.journey-container{
    display:flex;
    justify-content:space-between;
    gap:20px;
    position:relative;
}

.journey-container::before{
    content:'';
    position:absolute;
    top:40px;
    left:5%;
    width:90%;
    height:3px;
    background:#f44336;
    z-index:0;
}

.journey-step{
    flex:1;
    background:#fff;
    padding:30px 20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    position:relative;
    z-index:1;
    transition:0.4s;
}

.journey-step:hover{
    transform:translateY(-10px);
}

.step-number{
    width:80px;
    height:80px;
    background:#f44336;
    color:#fff;
    font-size:28px;
    font-weight:700;
    border-radius:50%;
    line-height:80px;
    margin:0 auto 20px;
}

.journey-step h3{
    margin-bottom:15px;
}

@media(max-width:900px){

    .journey-container{
        flex-direction:column;
    }

    .journey-container::before{
        display:none;
    }

}

/* MANUFACTURING EXCELLENCE */

.excellence-section{
    width:80%;
    margin:80px auto;
    text-align:center;
}

.excellence-heading h1{
    margin-bottom:10px;
}

.excellence-heading p{
    max-width:700px;
    margin:0 auto 40px;
}

.excellence-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.excellence-box{
    background:#fafafa;
    border-left:4px solid #f44336;
    padding:25px;
    border-radius:10px;
    text-align:left;
    transition:0.3s;
}

.excellence-box:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.number{
    font-size:32px;
    font-weight:700;
    color:#f44336;
    margin-bottom:10px;
}

.excellence-box h3{
    text-align:left;
    margin-bottom:10px;
    font-size:20px;
}

.excellence-box p{
    padding:0;
    line-height:1.7;
}

/* MOBILE */

@media(max-width:700px){

    .excellence-section{
        width:90%;
    }

    .excellence-grid{
        grid-template-columns:1fr;
    }

    .excellence-box{
        padding:20px;
    }

    .number{
        font-size:28px;
    }

    .excellence-box h3{
        font-size:18px;
    }

}

.product-showcase{
    width:85%;
    margin:auto;
    padding:80px 0;
    text-align:center;
}

.product-showcase > p{
    max-width:700px;
    margin:15px auto 50px;
}

.product-card{
    margin-bottom:60px;
    padding:30px;
    background:#fafafa;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.product-card h2{
    margin-bottom:25px;
    color:#222;
}

.product-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.product-gallery img{
    width:100%;
    border-radius:12px;
    transition:0.3s;
    display:block;
}

.product-gallery img:hover{
    transform:scale(1.03);
}

@media(max-width:700px){

    .product-gallery{
        grid-template-columns:1fr;
    }

    .product-card{
        padding:20px;
    }

}

.testimonials .row{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
}

.testimonial-col{
    flex: 1 1 calc(50% - 25px);
}

/* CONTACT FORM */

.contact-form-section{
    width:100%;
    padding:80px 0;
    background:#f8f8f8;
}

.contact-form-container{
    width:80%;
    max-width:700px;
    margin:auto;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    text-align:center;
}

.contact-form-container h1{
    margin-bottom:15px;
}

.contact-form-container p{
    margin-bottom:30px;
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#f44336;
}

.contact-btn{
    background:#f44336;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    transition:0.3s;
}

.contact-btn:hover{
    background:#d9372b;
}

@media(max-width:700px){

    .contact-form-container{
        width:90%;
        padding:25px;
    }

    .contact-form-container h1{
        font-size:28px;
    }

}