/*==================================================
BK ENTERPRICES
Industrial Manufacturing Website
style.css
Part 1
==================================================*/

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================================
ROOT VARIABLES
==================================================*/

:root{

    --primary:#0B5ED7;
    --secondary:#ff9800;
    --dark:#1b1b1b;
    --light:#f8f9fa;
    --white:#ffffff;
    --gray:#666666;
    --border:#e7e7e7;

    --shadow:0 8px 25px rgba(0,0,0,.08);

    --transition:.4s ease;

}

/*==================================================
RESET
==================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    color:#333;
    background:#fff;
    overflow-x:hidden;
    line-height:1.7;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;
    padding:0;
    margin:0;

}

section{

   /* padding:80px 0; */

}

/*==================================================
TYPOGRAPHY
==================================================*/

h1,h2,h3,h4,h5,h6{

    font-weight:700;
    color:#111;

}

h1{

    font-size:58px;

}

h2{

    font-size:42px;

}

h3{

    font-size:30px;

}

h4{

    font-size:24px;

}

p{

    color:#666;
    font-size:16px;

}

/*==================================================
TOP BAR
==================================================*/

.top-bar{

    background:#111;
    color:#fff;
    font-size:14px;
    padding:10px 0;

}

.top-bar i{

    color:var(--secondary);
    margin-right:8px;

}

/*==================================================
NAVBAR
==================================================*/

.navbar{

    background:var(--primary);
    padding:18px 0;
    transition:.3s;

}

.navbar-brand{

    color:#fff!important;
    font-size:32px;
    font-weight:800;

}

.navbar-brand span{

    color:var(--secondary);

}

.navbar-nav .nav-link{

    color:#fff!important;
    margin-left:18px;
    font-weight:500;
    position:relative;

}

.navbar-nav .nav-link::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:.3s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

.navbar-nav .active{

    color:var(--secondary)!important;

}

/*==================================================
BUTTONS
==================================================*/

.btn{

    border-radius:40px;
    padding:12px 28px;
    font-weight:600;
    transition:.3s;

}

.btn-warning{

    background:var(--secondary);
    border:none;
    color:#fff;

}

.btn-warning:hover{

    background:#e68a00;
    color:#fff;
    transform:translateY(-3px);

}

.btn-primary{

    background:var(--primary);
    border:none;

}

.btn-primary:hover{

    transform:translateY(-3px);

}

/*==================================================
HERO SECTION
==================================================*/

.hero{

    position:relative;

}

.hero img{

    height:700px;
    object-fit:cover;
    width:100%;

}

.carousel-caption{

    bottom:25%;
    text-align:left;
    max-width:650px;

}

.carousel-caption h1{

    color:#fff;
    font-size:60px;
    font-weight:800;
    margin-bottom:20px;

}

.carousel-caption p{

    color:#fff;
    font-size:20px;
    margin-bottom:30px;

}

.carousel-item::before{

    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);

}

/*==================================================
PAGE BANNER
==================================================*/

.page-banner{

    background:url("../images/banner.jpg") center center/cover no-repeat;
    position:relative;
    padding:120px 0;
    text-align:center;
    color:#fff;

}

.page-banner::before{

    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);

}

.page-banner .container{

    position:relative;
    z-index:10;

}

.page-banner h1{

    color:#fff;
    margin-bottom:15px;

}

.page-banner p{

    color:#fff;

}

/*==================================================
SECTION TITLE
==================================================*/

.section-title{

    margin-bottom:60px;

}

.section-title h6{

    color:var(--secondary);
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;

}

.section-title h2{

    margin-bottom:18px;

}

.section-title p{

    max-width:700px;
    margin:auto;

}

/*==================================================
CARDS
==================================================*/

.card{

    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
    box-shadow:var(--shadow);

}

.card:hover{

    transform:translateY(-10px);

}

/*==================================================
IMAGE EFFECT
==================================================*/

.card img{

    transition:.5s;

}

.card:hover img{

    transform:scale(1.08);

}

/*==================================================
GENERAL UTILITIES
==================================================*/

.bg-primary{

    background:#000;!important;

}

.bg-dark{

    background:var(--dark)!important;

}

.bg-light{

    background:var(--light)!important;

}

.text-warning{

    color:var(--secondary)!important;

}

.shadow{

    box-shadow:var(--shadow)!important;

}

.rounded{

    border-radius:15px!important;

}

/*==================================================
ANIMATION
==================================================*/

.fade-up{

    animation:fadeUp 1s ease;

}

@keyframes fadeUp{

0%{

opacity:0;
transform:translateY(40px);

}

100%{

opacity:1;
transform:translateY(0);

}

}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

}

::-webkit-scrollbar-thumb:hover{

    background:var(--secondary);

}

/*==========================
END PART 1
PART 2:
About • Service Cards • Process
Counters • CTA
==========================*/
/*==================================================
STYLE.CSS
PART 2
About • Services • Process • Counter • CTA
==================================================*/


/*=====================================
ABOUT SECTION
======================================*/

.about-section{

    position:relative;
    background:#fff;

}

.about-section img{

    width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.about-content h6{

    color:var(--secondary);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;

}

.about-content h2{

    margin:15px 0 25px;

}

.about-content p{

    margin-bottom:20px;
    color:#666;

}

.about-content ul{

    margin-top:25px;

}

.about-content ul li{

    padding:10px 0;
    font-size:16px;

}

.about-content ul li i{

    color:var(--secondary);
    margin-right:10px;

}



/*=====================================
MISSION BOX
======================================*/

.mission-box{

    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    transition:.4s;
    box-shadow:var(--shadow);
    height:100%;

}

.mission-box:hover{

    transform:translateY(-10px);

}

.mission-box .icon{

    width:90px;
    height:90px;
    background:var(--primary);
    color:#fff;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    margin-bottom:20px;

}

.mission-box:hover .icon{

    background:var(--secondary);

}

.mission-box h3{

    margin-bottom:15px;

}



/*=====================================
FEATURE BOX
======================================*/

.feature-box{

    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    box-shadow:var(--shadow);
    transition:.4s;
    text-align:center;
    height:100%;

}

.feature-box:hover{

    transform:translateY(-10px);

}

.feature-box i{

    color:var(--secondary);
    margin-bottom:20px;

}

.feature-box h5{

    margin-bottom:15px;

}



/*=====================================
SERVICES
======================================*/

.services{

    background:#f8f9fa;

}

.service-card{

    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.4s;
    box-shadow:var(--shadow);
    height:100%;

}

.service-card:hover{

    transform:translateY(-12px);

}

.service-icon{

    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(11,94,215,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 25px;

}

.service-icon i{

    font-size:42px;
    color:var(--primary);

}

.service-card:hover .service-icon{

    background:var(--secondary);

}

.service-card:hover .service-icon i{

    color:#fff;

}

.service-card h4{

    margin-bottom:15px;

}

.service-card p{

    margin-bottom:25px;

}



/*=====================================
SERVICE BOX
(Home Page)
======================================*/

.service-box{

    background:#fff;
    border-radius:15px;
    padding:35px;
    text-align:center;
    transition:.4s;
    box-shadow:var(--shadow);

}

.service-box:hover{

    transform:translateY(-10px);

}

.service-box i{

    color:var(--secondary);
    margin-bottom:20px;

}



/*=====================================
PROCESS
======================================*/

.process-box{

    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:var(--shadow);
    text-align:center;
    transition:.4s;
    position:relative;
    overflow:hidden;

}

.process-box:hover{

    transform:translateY(-10px);

}

.process-number{

    position:absolute;
    top:20px;
    right:20px;
    font-size:60px;
    font-weight:800;
    color:rgba(0,0,0,.05);

}

.process-box i{

    color:var(--secondary);
    margin-bottom:20px;

}

.process-box h5{

    margin-bottom:15px;

}



/*=====================================
QUALITY SECTION
======================================*/

.quality-section img{

    border-radius:15px;
    box-shadow:var(--shadow);

}

.quality-section ul{

    margin-top:25px;

}

.quality-section li{

    padding:10px 0;

}

.quality-section li i{

    color:var(--secondary);
    margin-right:10px;

}



/*=====================================
COUNTER
======================================*/

.counter{

    background:linear-gradient(rgba(0,0,0,.80),
    rgba(0,0,0,.80)),
    url("../images/counter-bg.jpg")
    center center/cover no-repeat;

    color:#fff;

}

.counter-section{

    background:linear-gradient(rgba(0,0,0,.80),
    rgba(0,0,0,.80)),
    url("../images/counter-bg.jpg")
    center center/cover no-repeat;

    color:#fff;

}

.counter h2,
.counter-section h2{

    color:var(--secondary);
    font-size:55px;
    font-weight:800;
    margin-bottom:10px;

}

.counter p,
.counter-section p{

    color:#fff;
    font-size:18px;

}



/*=====================================
INDUSTRIES
======================================*/

.industry-box{

    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:var(--shadow);
    text-align:center;
    transition:.4s;

}

.industry-box:hover{

    transform:translateY(-10px);

}

.industry-box i{

    color:var(--secondary);
    margin-bottom:20px;

}



/*=====================================
CTA
======================================*/

.cta{

    background:linear-gradient(rgba(11,94,215,.92),
    rgba(11,94,215,.92)),
    url("../images/cta.jpg")
    center center/cover no-repeat;

    text-align:center;
    color:#fff;

}

.cta h2{

    color:#fff;
    font-size:42px;
    margin-bottom:20px;

}

.cta p{

    color:#fff;
    max-width:700px;
    margin:0 auto 30px;

}

.cta .btn{

    padding:15px 40px;
    font-size:18px;

}



/*=====================================
WHY CHOOSE US
======================================*/

.why-choose{

    background:#fff;

}

.why-item{

    display:flex;
    align-items:flex-start;
    margin-bottom:25px;

}

.why-item i{

    width:60px;
    height:60px;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:20px;
    font-size:22px;

}

.why-item h5{

    margin-bottom:8px;

}



/*=====================================
SECTION SPACING
======================================*/

.py-80{

    padding:80px 0;

}

.mt-40{

    margin-top:40px;

}

.mb-40{

    margin-bottom:40px;

}



/*=====================================
END PART 2

NEXT PART

✔ Product Cards
✔ Sidebar
✔ Gallery
✔ Product Hover
✔ Product Details
✔ Product Buttons

======================================*/
/*==================================================
BK ENTERPRICES
STYLE.CSS - PART 3
Products • Sidebar • Gallery • Hover Effects
==================================================*/

/*==========================
PRODUCT SECTION
==========================*/

.products-section{
    background:#f8f9fa;
}

.product-grid{
    margin-top:40px;
}

/*==========================
PRODUCT CARD
==========================*/

.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
    position:relative;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-body{
    padding:25px;
}

.product-body h4{
    margin-bottom:12px;
    font-size:22px;
}

.product-body p{
    color:#666;
    margin-bottom:18px;
}

/*==========================
PRODUCT PRICE / BADGE
==========================*/

.product-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:var(--secondary);
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.product-tag{
    display:inline-block;
    background:#eef5ff;
    color:var(--primary);
    padding:6px 12px;
    border-radius:20px;
    margin:3px;
    font-size:13px;
}

/*==========================
PRODUCT LIST
==========================*/

.product-features{
    padding:0;
    margin:20px 0;
    list-style:none;
}

.product-features li{
    padding:8px 0;
    border-bottom:1px solid #ececec;
    font-size:15px;
}

.product-features li:last-child{
    border:none;
}

.product-features i{
    color:var(--secondary);
    margin-right:10px;
}

/*==========================
PRODUCT BUTTONS
==========================*/

.product-card .btn{
    width:100%;
    margin-top:10px;
}

.btn-outline-warning{
    border:2px solid var(--secondary);
    color:var(--secondary);
}

.btn-outline-warning:hover{
    background:var(--secondary);
    color:#fff;
}

/*==========================
PRODUCT IMAGE
==========================*/

.product-image{
    overflow:hidden;
}

.product-image img{
    transition:.5s;
}

.product-card:hover .product-image img{
    transform:scale(1.1);
}

/*==========================
CATEGORY SIDEBAR
==========================*/

.category-box{
    background:#fff;
    border-radius:15px;
    box-shadow:var(--shadow);
    padding:25px;
}

.category-box h4{
    margin-bottom:20px;
}

.category-box ul{
    padding:0;
    margin:0;
}

.category-box li{
    list-style:none;
    border-bottom:1px solid #eee;
}

.category-box li:last-child{
    border:none;
}

.category-box li a{
    display:block;
    padding:12px 10px;
    color:#444;
    transition:.3s;
}

.category-box li a:hover{
    color:#fff;
    background:var(--primary);
    padding-left:18px;
}

/*==========================
SEARCH BOX
==========================*/

.product-search{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:var(--shadow);
    margin-bottom:30px;
}

.product-search input{
    height:52px;
    border-radius:8px;
}

/*==========================
PRODUCT GALLERY
==========================*/

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

.gallery-item img{
    width:100%;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(11,94,215,.80);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay i{
    color:#fff;
    font-size:34px;
}

/*==========================
PRODUCT DETAILS
==========================*/

.product-details{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:var(--shadow);
}

.product-details h2{
    margin-bottom:20px;
}

.product-details p{
    margin-bottom:25px;
}

/*==========================
SPECIFICATION TABLE
==========================*/

.spec-table{
    width:100%;
    border-collapse:collapse;
}

.spec-table th{
    background:var(--primary);
    color:#fff;
    padding:14px;
}

.spec-table td{
    padding:14px;
    border:1px solid #ddd;
}

.spec-table tr:nth-child(even){
    background:#f7f7f7;
}

/*==========================
PRODUCT ICON BOX
==========================*/

.product-info-box{
    text-align:center;
    padding:30px;
    border-radius:15px;
    background:#fff;
    box-shadow:var(--shadow);
    transition:.35s;
}

.product-info-box:hover{
    transform:translateY(-8px);
}

.product-info-box i{
    font-size:42px;
    color:var(--secondary);
    margin-bottom:15px;
}

/*==========================
DOWNLOAD BUTTON
==========================*/

.download-btn{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:14px 35px;
    border-radius:40px;
    transition:.3s;
}

.download-btn:hover{
    background:var(--secondary);
    color:#fff;
}

/*==========================
PAGINATION
==========================*/

.pagination{
    margin-top:50px;
    justify-content:center;
}

.page-link{
    color:var(--primary);
    padding:12px 18px;
}

.page-item.active .page-link{
    background:var(--primary);
    border-color:var(--primary);
}

/*==========================
PRODUCT HOVER ICONS
==========================*/

.product-actions{
    position:absolute;
    top:15px;
    right:-60px;
    display:flex;
    flex-direction:column;
    transition:.35s;
}

.product-card:hover .product-actions{
    right:15px;
}

.product-actions a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.product-actions a:hover{
    background:var(--secondary);
    color:#fff;
}

/*==================================================
END PART 3

NEXT PART:
Testimonials
Statistics
FAQ
Accordion
Contact Cards
==================================================*/
/*==================================================
BK ENTERPRICES
STYLE.CSS - PART 4
Testimonials • Statistics • FAQ • Contact Info
==================================================*/


/*=========================================
TESTIMONIAL SECTION
=========================================*/

.testimonial-section{

    background:#f8f9fa;

}

.testimonial-card{

    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:var(--shadow);
    transition:.35s;
    height:100%;
    position:relative;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-card::before{

    content:"\f10d";
    font-family:"Font Awesome 6 Free";
    font-weight:900;

    position:absolute;
    top:25px;
    right:25px;

    font-size:55px;
    color:rgba(11,94,215,.08);

}

.testimonial-stars{

    color:#ffc107;
    font-size:18px;
    margin-bottom:20px;

}

.testimonial-text{

    font-style:italic;
    color:#666;
    margin-bottom:25px;

}

.client-info{

    display:flex;
    align-items:center;

}

.client-info img{

    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    margin-right:15px;
    border:4px solid var(--secondary);

}

.client-info h5{

    margin-bottom:5px;

}

.client-info span{

    color:#777;
    font-size:14px;

}


/*=========================================
TESTIMONIAL SLIDER
=========================================*/

.carousel-indicators [data-bs-target]{

    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--secondary);

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    background-color:var(--primary);
    border-radius:50%;
    padding:18px;

}


/*=========================================
STATISTICS
=========================================*/

.stats-section{

    background:linear-gradient(rgba(0,0,0,.82),
    rgba(0,0,0,.82)),
    url("../images/stats-bg.jpg")
    center/cover no-repeat;

    color:#fff;

}

.stat-box{

    text-align:center;
    padding:30px 15px;

}

.stat-box i{

    font-size:48px;
    color:var(--secondary);
    margin-bottom:20px;

}

.stat-box h2{

    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:10px;

}

.stat-box p{

    color:#ddd;
    font-size:18px;

}


/*=========================================
CLIENT LOGOS
=========================================*/

.client-logo{

    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:var(--shadow);
    text-align:center;
    transition:.35s;

}

.client-logo:hover{

    transform:translateY(-8px);

}

.client-logo img{

    max-height:70px;
    filter:grayscale(100%);
    transition:.35s;

}

.client-logo:hover img{

    filter:none;

}


/*=========================================
FAQ SECTION
=========================================*/

.faq-section{

    background:#f8f9fa;

}

.accordion-item{

    border:none;
    margin-bottom:18px;
    border-radius:12px!important;
    overflow:hidden;
    box-shadow:var(--shadow);

}

.accordion-button{

    background:#fff;
    font-weight:600;
    padding:20px;

}

.accordion-button:not(.collapsed){

    background:var(--primary);
    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:20px;
    color:#666;

}


/*=========================================
CONTACT INFORMATION
=========================================*/

.contact-card{

    background:#fff;
    padding:35px;
    border-radius:15px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;
    height:100%;

}

.contact-card:hover{

    transform:translateY(-10px);

}

.contact-card i{

    width:80px;
    height:80px;

    background:rgba(11,94,215,.08);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 20px;

    color:var(--primary);

    font-size:32px;

}

.contact-card:hover i{

    background:var(--secondary);
    color:#fff;

}

.contact-card h4{

    margin-bottom:15px;

}

.contact-card p{

    margin-bottom:0;

}


/*=========================================
OFFICE INFORMATION
=========================================*/

.office-box{

    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:var(--shadow);

}

.office-box ul{

    margin:25px 0 0;

}

.office-box li{

    display:flex;
    align-items:flex-start;
    margin-bottom:18px;

}

.office-box li i{

    color:var(--secondary);
    margin-right:15px;
    margin-top:5px;

}


/*=========================================
SOCIAL ICONS
=========================================*/

.social-icons{

    margin-top:25px;

}

.social-icons a{

    width:45px;
    height:45px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--primary);
    color:#fff;

    margin-right:10px;

    transition:.35s;

}

.social-icons a:hover{

    background:var(--secondary);
    transform:translateY(-5px);

}


/*=========================================
GOOGLE MAP
=========================================*/

.map-section iframe{

    width:100%;
    height:450px;
    border:0;
    border-radius:15px;
    box-shadow:var(--shadow);

}


/*=========================================
CONTACT CTA
=========================================*/

.contact-cta{

    background:linear-gradient(135deg,
    var(--primary),
    #083d8c);

    color:#fff;
    text-align:center;

}

.contact-cta h2{

    color:#fff;
    margin-bottom:20px;

}

.contact-cta p{

    color:#f5f5f5;
    max-width:700px;
    margin:auto auto 30px;

}

.contact-cta .btn{

    padding:15px 40px;
}


/*=========================================
UTILITY SPACING
=========================================*/

.mb-30{

    margin-bottom:30px;

}

.mt-30{

    margin-top:30px;

}

.py-100{

    padding:100px 0;

}


/*==================================================
END PART 4

NEXT PART 5

✔ Contact Form
✔ Footer
✔ Newsletter
✔ WhatsApp Button
✔ Scroll To Top
✔ Utility Classes
==================================================*/
/*==================================================
BK ENTERPRICES
STYLE.CSS - PART 5
Contact Form • Footer • Newsletter • WhatsApp
==================================================*/


/*=========================================
CONTACT FORM
=========================================*/

.contact-form{

    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:var(--shadow);

}

.contact-form h3{

    margin-bottom:30px;

}

.contact-form .form-control,
.contact-form .form-select{

    height:55px;
    border-radius:10px;
    border:1px solid #ddd;
    margin-bottom:20px;
    padding:12px 18px;
    transition:.3s;

}

.contact-form textarea.form-control{

    height:180px;
    resize:none;

}

.contact-form .form-control:focus,
.contact-form .form-select:focus{

    border-color:var(--primary);
    box-shadow:0 0 10px rgba(11,94,215,.15);

}

.contact-form button{

    padding:14px 35px;
    border-radius:40px;

}


/*=========================================
NEWSLETTER
=========================================*/

.newsletter{

    background:linear-gradient(135deg,
    var(--primary),
    #003e99);

    color:#fff;
    padding:70px 0;

}

.newsletter h2{

    color:#fff;

}

.newsletter p{

    color:#f1f1f1;

}

.newsletter-form{

    position:relative;
    max-width:650px;
    margin:auto;

}

.newsletter-form input{

    width:100%;
    height:60px;
    border:none;
    border-radius:50px;
    padding:0 170px 0 25px;

}

.newsletter-form button{

    position:absolute;
    right:6px;
    top:6px;
    border:none;
    height:48px;
    padding:0 28px;
    border-radius:40px;
    background:var(--secondary);
    color:#fff;
    font-weight:600;

}

.newsletter-form button:hover{

    background:#e48d00;

}


/*=========================================
FOOTER
=========================================*/

footer{

    background:#111;
    color:#ddd;

}

footer h3,
footer h4,
footer h5{

    color:#fff;
    margin-bottom:25px;

}

footer p{

    color:#cfcfcf;

}

.footer-logo{

    font-size:32px;
    font-weight:700;
    color:#fff;

}

.footer-logo span{

    color:var(--secondary);

}

.footer-links{

    list-style:none;
    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links li a{

    color:#cfcfcf;
    transition:.3s;

}

.footer-links li a:hover{

    color:var(--secondary);
    padding-left:8px;

}


/*=========================================
FOOTER CONTACT
=========================================*/

.footer-contact li{

    display:flex;
    align-items:flex-start;
    margin-bottom:15px;

}

.footer-contact li i{

    color:var(--secondary);
    margin-right:12px;
    margin-top:5px;

}


/*=========================================
FOOTER SOCIAL
=========================================*/

.footer-social{

    margin-top:20px;

}

.footer-social a{

    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#222;
    color:#fff;
    margin-right:10px;
    transition:.35s;

}

.footer-social a:hover{

    background:var(--secondary);
    transform:translateY(-5px);

}


/*=========================================
COPYRIGHT
=========================================*/

.copyright{

    border-top:1px solid rgba(255,255,255,.1);
    padding:20px 0;
    margin-top:50px;
    text-align:center;

}

.copyright p{

    margin:0;
    color:#bbb;

}


/*=========================================
WHATSAPP FLOAT
=========================================*/

.whatsapp{

    position:fixed;
    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.1);
    color:#fff;

}


/*=========================================
SCROLL TO TOP
=========================================*/

.scroll-top{

    position:fixed;

    right:25px;
    bottom:100px;

    width:50px;
    height:50px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.scroll-top.active{

    opacity:1;
    visibility:visible;

}

.scroll-top:hover{

    background:var(--secondary);
    color:#fff;

}


/*=========================================
PRELOADER
=========================================*/

.preloader{

    position:fixed;
    inset:0;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:99999;

}

.loader{

    width:60px;
    height:60px;

    border:6px solid #ddd;

    border-top:6px solid var(--primary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}


/*=========================================
UTILITY CLASSES
=========================================*/

.radius-10{

    border-radius:10px;

}

.radius-15{

    border-radius:15px;

}

.radius-30{

    border-radius:30px;

}

.shadow-lg{

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.text-primary{

    color:var(--primary)!important;

}

.text-secondary{

    color:var(--secondary)!important;

}

.bg-secondary{

    background:var(--secondary)!important;

}

.w-100{

    width:100%;

}

.h-100{

    height:100%;

}

.overflow-hidden{

    overflow:hidden;

}


/*==================================================
END PART 5

NEXT PART 6
✔ Complete Responsive Media Queries
✔ Mobile Navigation
✔ Tablet Layout
✔ Small Screen Optimization
✔ Final CSS
==================================================*/
/*==================================================
BK ENTERPRICES
STYLE.CSS - PART 6
Responsive Design
==================================================*/


/*==========================================
Large Desktop
1400px+
==========================================*/

@media (min-width:1400px){

.container{

    max-width:1320px;

}

.hero h1{

    font-size:68px;

}

.hero p{

    font-size:22px;

}

}


/*==========================================
Laptop
1200px
==========================================*/

@media (max-width:1200px){

.hero h1{

    font-size:52px;

}

.section-title h2{

    font-size:38px;

}

.product-card img{

    height:220px;

}

.counter h2{

    font-size:42px;

}

}


/*==========================================
Tablet
992px
==========================================*/

@media (max-width:992px){

section{

    padding:70px 0;

}

.top-bar{

    text-align:center;

}

.navbar{

    padding:15px;

}

.navbar-nav{

    background:#0B5ED7;
    padding:15px;
    border-radius:10px;
    margin-top:15px;

}

.navbar-nav .nav-link{

    margin:10px 0;

}

.hero{

    text-align:center;

}

.hero h1{

    font-size:42px;

}

.hero p{

    font-size:18px;

}

.carousel-caption{

    bottom:15%;

}

.about-image{

    margin-bottom:35px;

}

.about-content{

    text-align:center;

}

.service-card{

    margin-bottom:30px;

}

.process-box{

    margin-bottom:30px;

}

.product-card{

    margin-bottom:30px;

}

.testimonial-card{

    margin-bottom:30px;

}

.contact-card{

    margin-bottom:30px;

}

.footer-widget{

    margin-bottom:40px;

}

.newsletter-form{

    display:block;

}

.newsletter-form input{

    margin-bottom:15px;

}

.newsletter-form button{

    width:100%;

}

}


/*==========================================
Mobile
768px
==========================================*/

@media (max-width:768px){

h1{

    font-size:36px;

}

h2{

    font-size:30px;

}

h3{

    font-size:24px;

}

.hero{

    padding:100px 0;

}

.hero h1{

    font-size:34px;

}

.hero p{

    font-size:16px;

}

.btn{

    padding:12px 25px;

}

.section-title{

    margin-bottom:40px;

}

.section-title p{

    font-size:15px;

}

.counter h2{

    font-size:34px;

}

.contact-form{

    padding:25px;

}

.contact-form textarea{

    height:150px;

}

.map iframe{

    height:300px;

}

.whatsapp{

    width:55px;
    height:55px;
    right:15px;
    bottom:15px;

}

.scroll-top{

    right:15px;
    bottom:85px;

}

.footer{

    text-align:center;

}

.footer-social{

    justify-content:center;

}

}


/*==========================================
Small Mobile
576px
==========================================*/

@media (max-width:576px){

.container{

    padding-left:15px;
    padding-right:15px;
	

}

@media (max-width:576px){

.containernew{

   
	margin-top: -30%;

}

.top-bar{

    font-size:13px;

}

.navbar-brand{

    font-size:24px;

}

.hero{

    padding:80px 0;
margin-top: -80px;
}

.hero h1{

    font-size:28px;

}

.hero p{

    font-size:15px;

}

.page-banner{

    padding:70px 0;

}

.page-banner h1{

    font-size:30px;

}

.service-card{

    padding:25px;

}

.product-card img{

    height:200px;

}

.product-body{

    padding:20px;

}

.contact-form{

    padding:20px;

}

.newsletter{

    padding:50px 20px;

}

.newsletter h2{

    font-size:26px;

}

.footer-logo{

    font-size:26px;

}

.footer{

    padding:50px 0;

}

}


/*==========================================
Extra Small Devices
420px
==========================================*/

@media (max-width:420px){

.hero h1{

    font-size:24px;

}

.hero p{

    font-size:14px;

}

.btn{

    width:100%;

}

.service-card{

    padding:20px;

}

.testimonial-card{

    padding:20px;

}

.contact-card{

    padding:20px;

}

.counter h2{

    font-size:28px;

}

.counter p{

    font-size:14px;

}

.whatsapp{

    width:50px;
    height:50px;
    font-size:24px;

}

}


/*==========================================
Image Responsive
==========================================*/

img{

    max-width:100%;
    height:auto;

}


/*==========================================
Bootstrap Overrides
==========================================*/

.card{

    border:none;

}

.card img{

    width:100%;
    object-fit:cover;

}

.table-responsive{

    overflow-x:auto;

}

iframe{

    max-width:100%;

}


/*==========================================
Smooth Hover Effects
==========================================*/

.card,
.service-card,
.product-card,
.testimonial-card,
.contact-card,
.process-box{

    transition:all .35s ease;

}


/*==========================================
Selection Color
==========================================*/

::selection{

    background:var(--secondary);
    color:#fff;

}

::-moz-selection{

    background:var(--secondary);
    color:#fff;

}


/*==========================================
Print
==========================================*/

@media print{

.top-bar,
.navbar,
.footer,
.whatsapp,
.scroll-top{

    display:none!important;

}

body{

    background:#fff;

}

}


/*==================================================
END OF STYLE.CSS

BK ENTERPRICES
Industrial Manufacturing Website

Pages Supported:

✓ Home
✓ About
✓ Services
✓ Products
✓ Testimonials
✓ Contact

Framework:
Bootstrap 5.3

Responsive:
Desktop
Laptop
Tablet
Mobile

Author:
ChatGPT

==================================================*/