
/*=========================================================
    GOOGLE FONTS
=========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');


/*=========================================================
    ROOT VARIABLES
=========================================================*/

:root{

    --primary:#2d5a27;
    --secondary:#f4b41a;
    --accent:#8eb021;

    --dark:#1a1a1a;
    --light:#f8f9fa;
    --white:#ffffff;

    --text:#555;
    --border:#e9ecef;

    --shadow-sm:0 5px 20px rgba(0,0,0,.05);
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --shadow-lg:0 20px 45px rgba(0,0,0,.12);

    --transition:.35s ease;

    --radius:10px;
    --radius-lg:20px;

}


/*=========================================================
    RESET
=========================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
    line-height:1.7;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    margin:0;
    padding:0;

}

li{

    list-style:none;

}


/*=========================================================
    TYPOGRAPHY
=========================================================*/

h1,h2,h3,h4,h5,h6{

    font-family:'Playfair Display',serif;
    color:var(--dark);
    font-weight:700;
    margin-bottom:15px;

}

h1{

    font-size:58px;

}

h2{

    font-size:42px;

}

h3{

    font-size:30px;

}

p{

    color:var(--text);
    margin-bottom:15px;

}


/*=========================================================
    COMMON SECTION
=========================================================*/

section{

    position:relative;

}

.section-padding{

    padding:90px 0;

}

.section-title{

    color:var(--primary);
    margin-bottom:15px;

}

.section-subtitle{

    max-width:700px;
    margin:auto;
    color:#777;
    margin-bottom:55px;

}

.bg-light-custom{

    background:var(--light);

}


/*=========================================================
    TOP BAR
=========================================================*/

.top-bar{

    background:var(--primary);
    color:#fff;
    padding:8px 0;
    font-size:13px;

}

.top-bar a{

    color:#fff;

}

.top-bar i{

    color:var(--secondary);
    margin-right:6px;

}


/*=========================================================
    NAVBAR
=========================================================*/

.navbar{

    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    transition:.4s;
    padding:14px 0;
    z-index:999;

}

.navbar-brand{

    font-size:32px;
    color:var(--primary)!important;
    font-weight:700;

}

.navbar-brand img{

    max-height:60px;

}

.nav-link{

    color:var(--primary)!important;
    font-weight:600;
    margin:0 12px;
    position:relative;

}

.nav-link::after{

    content:'';
    position:absolute;
    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--secondary);

    transition:.35s;

}

.nav-link:hover::after,
.nav-link.active::after{

    width:100%;

}

.navbar-toggler{

    border:none;

}

.navbar-toggler:focus{

    box-shadow:none;

}


/*=========================================================
    BUTTONS
=========================================================*/

.btn-primary-custom{

    background:var(--primary);
    color:#fff;

    border:none;

    padding:14px 35px;

    border-radius:6px;

    font-weight:600;

    transition:.35s;

}

.btn-primary-custom:hover{

    background:var(--accent);
    color:#fff;
    transform:translateY(-2px);

}

.btn-outline-custom{

    border:2px solid var(--primary);
    color:var(--primary);
    padding:12px 30px;
    border-radius:6px;
    font-weight:600;
    background:#fff;

}

.btn-outline-custom:hover{

    background:var(--primary);
    color:#fff;

}


/*=========================================================
    COMMON CARDS
=========================================================*/

.shadow-card{

    background:#fff;
    border-radius:18px;
    box-shadow:var(--shadow);
    transition:.35s;

}

.shadow-card:hover{

    transform:translateY(-8px);

}


/*=========================================================
    FORM
=========================================================*/

.form-control{

    border-radius:8px;
    min-height:52px;
    border:1px solid var(--border);
    box-shadow:none;

}

.form-control:focus{

    border-color:var(--primary);
    box-shadow:none;

}

textarea.form-control{

    min-height:160px;

}


/*=========================================================
    PAGE HEADER
=========================================================*/

.page-header,
.product-header,
.contact-header,
.qc-header{

    background-size:cover;
    background-position:center;
    position:relative;

    padding:110px 0;

    color:#fff;

    text-align:center;

}

.page-header::before,
.product-header::before,
.contact-header::before,
.qc-header::before{

    content:'';

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.55);

}

.page-header .container,
.product-header .container,
.contact-header .container,
.qc-header .container{

    position:relative;
    z-index:2;

}

.page-header h1,
.product-header h1,
.contact-header h1,
.qc-header h1{

    color:#fff;
    margin-bottom:15px;

}

.lead {
    color: #fff;
}

.txt-justify {
    text-align: justify;
}

/*=========================================================
    FOOTER
=========================================================*/

footer{

    background:var(--dark);
    color:#bbb;
    padding:80px 0 20px;

}

footer h5{

    color:#fff;
    margin-bottom:25px;

}

footer p{

    color:#bbb;

}

footer a{

    color:#bbb;
    transition:.35s;

}

footer a:hover{

    color:var(--secondary);
    padding-left:6px;

}

footer ul li{

    margin-bottom:10px;

}

footer .social-icons a{

    width:42px;
    height:42px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    margin-right:8px;

}

footer .social-icons a:hover{

    background:var(--secondary);
    color:#000;

}


/*=========================================================
    UTILITIES
=========================================================*/

.radius-10{

    border-radius:10px;

}

.radius-20{

    border-radius:20px;

}

.text-primary{

    color:var(--primary)!important;

}

.text-secondary{

    color:var(--secondary)!important;

}

.bg-primary{

    background:var(--primary)!important;

}

.bg-secondary{

    background:var(--secondary)!important;

}


/*=========================================================
    HOME PAGE
=========================================================*/


/*==============================
    HERO SLIDER
===============================*/

.hero-slider{
    position:relative;
}

.hero-slider .carousel-item{
    height:85vh;
    min-height:550px;
    background-size:cover;
    background-position:center;
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-slider .carousel-caption{

    top:50%;
    bottom:auto;

    transform:translateY(-50%);

    z-index:5;

    max-width:760px;

    margin:auto;

}

.hero-slider h1{

    font-size:64px;
    font-weight:700;
    color:#fff;
    margin-bottom:20px;

}

.hero-slider p{

    color:#fff;
    font-size:18px;
    margin-bottom:30px;

}

.hero-slider .btn-primary-custom{

    margin-right:15px;

}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon{

    width:55px;
    height:55px;
    border-radius:50%;
    background-color:rgba(255,255,255,.25);

}


/*==============================
    ABOUT SECTION
===============================*/

.home-about img{

    border-radius:20px;
    box-shadow:var(--shadow-lg);

}

.home-about h2{

    color:var(--primary);

}

.home-about ul{

    margin-top:25px;

}

.home-about ul li{

    margin-bottom:12px;
    color:#555;

}

.home-about ul li i{

    color:var(--secondary);
    margin-right:10px;

}


/*==============================
    COUNTER
===============================*/

.counter-section{

    background:var(--primary);
    padding:80px 0;
    color:#fff;

}

.counter-box{

    text-align:center;

}

.counter-box i{

    font-size:45px;
    color:var(--secondary);
    margin-bottom:20px;

}

.counter-box h2{

    color:var(--secondary);
    font-size:65px;
    margin-bottom:5px;

}

.counter-box p{

    color:#fff;
    margin:0;
    font-size:17px;

}


/*==============================
    WHY CHOOSE US
===============================*/

.feature-card{

    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:var(--shadow-sm);
    transition:.4s;
    height:100%;
    text-align:center;

}

.feature-card:hover{

    transform:translateY(-12px);

}

.feature-icon{

    width:75px;
    height:75px;

    margin:auto auto 25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--light);

    color:var(--primary);

    font-size:32px;

    transition:.4s;

}

.feature-card:hover .feature-icon{

    background:var(--secondary);
    color:#fff;
    transform:rotateY(180deg);

}

.feature-card h4{

    margin-bottom:15px;

}


/*==============================
    SERVICES
===============================*/

.service-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.4s;

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card img{

    height:240px;
    width:100%;
    object-fit:cover;

    transition:.5s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-content{

    padding:30px;

}

.service-content h4{

    margin-bottom:15px;

}


/*==============================
    PROCESS
===============================*/

.step-box{

    text-align:center;
    padding:30px 20px;
    position:relative;

}

.step-number{

    width:55px;
    height:55px;

    margin:auto auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--secondary);

    color:#fff;

    font-size:20px;
    font-weight:700;

}

.step-box h4{

    margin-bottom:15px;

}


/*==============================
    PRODUCT SHOWCASE
===============================*/

.home-product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    height:100%;

}

.home-product-card:hover{

    transform:translateY(-10px);

}

.home-product-card img{

    height:260px;
    width:100%;
    object-fit:cover;

    transition:.5s;

}

.home-product-card:hover img{

    transform:scale(1.08);

}

.home-product-card .card-body{

    padding:25px;

}

.home-product-card h5{

    margin-bottom:15px;

}


/*==============================
    GALLERY
===============================*/

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    position:relative;

}

.gallery-item img{

    transition:.6s;
    width:100%;

}

.gallery-item:hover img{

    transform:scale(1.12);

}


/*==============================
    TESTIMONIALS
===============================*/

.testimonial-card{

    background:#fff;

    border-left:5px solid var(--secondary);

    border-radius:15px;

    padding:35px;

    box-shadow:var(--shadow);

}

.testimonial-card img{

    width:70px;
    height:70px;

    border-radius:50%;

    object-fit:cover;

}

.testimonial-card h5{

    margin-bottom:3px;

}

.testimonial-card small{

    color:#888;

}

.testimonial-card p{

    margin-top:20px;
    font-style:italic;

}


/*==============================
    CLIENT LOGO
===============================*/

.client-logo{

    padding:20px;

    filter:grayscale(100%);

    opacity:.7;

    transition:.4s;

}

.client-logo:hover{

    opacity:1;

    filter:none;

}


/*==============================
    CALL TO ACTION
===============================*/

.cta-section{

    background:linear-gradient(rgba(45,90,39,.93),rgba(45,90,39,.93)),
    url('../images/cta-bg.jpg');

    background-size:cover;
    background-position:center;

    padding:90px 0;

    color:#fff;

}

.cta-section h2{

    color:#fff;

}

.cta-section p{

    color:#eee;

}

.cta-section .btn-primary-custom{

    background:var(--secondary);
    color:#000;

}

.cta-section .btn-primary-custom:hover{

    background:#fff;

}


/*==============================
    NEWS / BLOG
===============================*/

.blog-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.4s;

    height:100%;

}

.blog-card:hover{

    transform:translateY(-10px);

}

.blog-card img{

    height:240px;
    object-fit:cover;
    transition:.5s;

}

.blog-card:hover img{

    transform:scale(1.08);

}

.blog-content{

    padding:25px;

}

.blog-date{

    color:var(--secondary);
    font-weight:600;
    margin-bottom:10px;

}


/*==============================
    SCROLL TO TOP
===============================*/

.scroll-top{

    position:fixed;

    right:25px;
    bottom:25px;

    width:48px;
    height:48px;

    background:var(--primary);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    cursor:pointer;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.scroll-top.active{

    opacity:1;
    visibility:visible;

}

.scroll-top:hover{

    background:var(--secondary);
    color:#000;

}


/*=========================================================
    ABOUT PAGE
=========================================================*/


/*==============================
    ABOUT HEADER
===============================*/

.page-header{
    background:
    linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
    url('../images/about-banner.jpg');

    background-size:cover;
    background-position:center;
}


/*==============================
    ABOUT SECTION
===============================*/

.about-section{
    padding:90px 0;
}

.about-img-stack{
    position:relative;
}

.about-img-1{

    width:90%;
    border-radius:20px;
    box-shadow:var(--shadow-lg);

}

.about-img-2{

    position:absolute;
    right:0;
    bottom:-100px;

    width:58%;

    border:8px solid #fff;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.about-content h2{

    color:var(--primary);

}

.about-content p{

    margin-bottom:20px;

}


/*==============================
    ABOUT FEATURES
===============================*/

.about-feature{

    display:flex;
    align-items:flex-start;

    margin-bottom:25px;

}

.about-feature i{

    width:55px;
    height:55px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--secondary);

    color:#fff;

    font-size:20px;

    margin-right:18px;

    flex-shrink:0;

}

.about-feature h5{

    margin-bottom:8px;

}


/*==============================
    MISSION / VISION
===============================*/

.mv-card{

    background:#fff;

    padding:45px 35px;

    border-radius:20px;

    box-shadow:var(--shadow);

    text-align:center;

    transition:.4s;

    height:100%;

    border-top:4px solid transparent;

}

.mv-card:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-10px);

    border-color:var(--secondary);

}

.mv-card:hover h3,
.mv-card:hover p{

    color:#fff;

}

.mv-card:hover .mv-icon{

    color:var(--secondary);

}

.mv-icon{

    font-size:55px;

    color:var(--primary);

    margin-bottom:20px;

}


/*==============================
    INFRASTRUCTURE
===============================*/

.infra-section{

    padding:90px 0;

    background:var(--light);

}

.infra-img{

    width:100%;
    height:380px;

    object-fit:cover;

    border-radius:20px;

    box-shadow:var(--shadow-lg);

}

.infra-content{

    padding-left:20px;

}


/*==============================
    COMPANY VALUES
===============================*/

.values-section{

    padding:90px 0;

}

.value-item{

    text-align:center;

    margin-bottom:30px;

}

.value-circle{

    width:110px;
    height:110px;

    margin:auto auto 20px;

    border:2px dashed var(--secondary);

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--primary);

    font-size:34px;

    transition:.4s;

}

.value-item:hover .value-circle{

    background:var(--primary);

    border-color:var(--primary);

    color:#fff;

    transform:rotate(360deg);

}


/*==============================
    TEAM SECTION
===============================*/

.team-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.4s;

    text-align:center;

}

.team-card:hover{

    transform:translateY(-10px);

}

.team-card img{

    width:100%;
    height:320px;

    object-fit:cover;

}

.team-content{

    padding:25px;

}

.team-social{

    margin-top:15px;

}

.team-social a{

    width:38px;
    height:38px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    background:var(--light);

    color:var(--primary);

    border-radius:50%;

    margin:0 4px;

    transition:.35s;

}

.team-social a:hover{

    background:var(--secondary);

    color:#000;

}



/*=========================================================
    QUALITY PAGE
=========================================================*/


/*==============================
    QUALITY HEADER
===============================*/

.qc-header{

    background:
    linear-gradient(rgba(45,90,39,.90),rgba(45,90,39,.90)),
    url('../images/quality-banner.jpg');

    background-size:cover;
    background-position:center;

}


/*==============================
    QUALITY INTRO
===============================*/

.quality-section{

    padding:90px 0;

}

.quality-section h2{

    color:var(--primary);

}


/*==============================
    CERTIFICATION CARD
===============================*/

.cert-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    border:1px solid #eee;

    transition:.35s;

    box-shadow:var(--shadow-sm);

    height:100%;

}

.cert-card:hover{

    border-color:var(--secondary);

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.cert-icon{

    font-size:55px;

    color:var(--secondary);

    margin-bottom:20px;

}


/*==============================
    QUALITY LIST
===============================*/

.check-list{

    padding-left:0;

}

.check-list li{

    position:relative;

    padding-left:35px;

    margin-bottom:18px;

    color:#555;

}

.check-list li::before{

    content:"\f058";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    position:absolute;

    left:0;
    top:0;

    color:var(--primary);

}


/*==============================
    LAB IMAGE
===============================*/

.lab-img{

    width:100%;

    border-radius:20px;

    box-shadow:20px 20px 0 var(--secondary);

}


/*==============================
    QUALITY PROCESS
===============================*/

.process-card{

    text-align:center;

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    height:100%;

}

.process-card:hover{

    transform:translateY(-10px);

}

.process-card i{

    width:75px;
    height:75px;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0 auto 20px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:30px;

}


/*==============================
    QUALITY STATS
===============================*/

.quality-counter{

    background:var(--primary);

    padding:80px 0;

    color:#fff;

}

.quality-counter h2{

    color:var(--secondary);

    font-size:52px;

}

.quality-counter p{

    color:#fff;

}



/*=========================================================
    PRODUCTS PAGE
=========================================================*/

/*==============================
    PRODUCT HEADER
===============================*/

.product-header{
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('../images/product-banner.jpg');

    background-size:cover;
    background-position:center;
}


/*==============================
    PRODUCT FILTER
===============================*/

.product-filter{

    text-align:center;
    margin-bottom:50px;

}

.filter-btn{

    border:2px solid var(--primary);

    background:#fff;

    color:var(--primary);

    padding:10px 28px;

    border-radius:30px;

    font-weight:600;

    margin:6px;

    transition:.35s;

}

.filter-btn:hover,
.filter-btn.active{

    background:var(--primary);

    color:#fff;

    border-color:var(--primary);

}


/*==============================
    PRODUCT GRID
===============================*/

.product-grid{

    padding:90px 0;

}

.product-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow-sm);

    transition:.4s;

    height:100%;

    position:relative;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}


/*==============================
    PRODUCT IMAGE
===============================*/

.product-img-wrapper{

    position:relative;

    overflow:hidden;

    height:260px;

}

.product-img-wrapper img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s;

}

.product-card:hover img{

    transform:scale(1.08);

}

.category-badge{

    position:absolute;

    top:18px;
    left:18px;

    background:var(--secondary);

    color:#000;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    z-index:2;

}


/*==============================
    PRODUCT CONTENT
===============================*/

.product-card .card-body{

    padding:28px;

    text-align:center;

}

.product-card h4,
.product-card h5{

    margin-bottom:12px;

}

.product-card p{

    margin-bottom:18px;

}


/*==============================
    PRODUCT BUTTON
===============================*/

.btn-enquiry{

    display:inline-block;

    padding:12px 28px;

    background:var(--primary);

    color:#fff;

    border-radius:6px;

    font-weight:600;

    transition:.35s;

}

.btn-enquiry:hover{

    background:var(--secondary);

    color:#000;

}


/*==============================
    PRODUCT HOVER ICONS
===============================*/

.product-actions{

    position:absolute;

    top:18px;

    right:-60px;

    transition:.35s;

}

.product-card:hover .product-actions{

    right:18px;

}

.product-actions a{

    width:42px;
    height:42px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#fff;

    color:var(--primary);

    border-radius:50%;

    margin-bottom:8px;

    box-shadow:var(--shadow-sm);

}

.product-actions a:hover{

    background:var(--secondary);

    color:#000;

}



/*=========================================================
    CONTACT PAGE
=========================================================*/


/*==============================
    CONTACT HEADER
===============================*/

.contact-header{

    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('../images/breadcum_img.webp');

    background-size:cover;
    background-position:center;

}


/*==============================
    CONTACT INFO
===============================*/

.info-card{

    background:#fff;

    padding:40px 25px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    height:100%;

    border-bottom:4px solid transparent;

}

.info-card:hover{

    transform:translateY(-10px);

    border-color:var(--secondary);

}

.info-icon{

    width:75px;
    height:75px;

    margin:0 auto 20px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--light);

    color:var(--primary);

    font-size:28px;

    transition:.35s;

}

.info-card:hover .info-icon{

    background:var(--primary);

    color:#fff;

}


/*==============================
    CONTACT FORM
===============================*/

.contact-form-wrapper{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.contact-form-wrapper h3{

    margin-bottom:25px;

}

.contact-form-wrapper .form-control{

    min-height:55px;

    border-radius:10px;

}

.contact-form-wrapper textarea{

    min-height:170px;

}

.btn-submit{

    border:none;

    padding:15px 40px;

    background:var(--primary);

    color:#fff;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

}

.btn-submit:hover{

    background:var(--secondary);

    color:#000;

}


/*==============================
    CONTACT DETAILS
===============================*/

.contact-list{

    margin-top:25px;

}

.contact-list li{

    display:flex;

    align-items:flex-start;

    margin-bottom:18px;

}

.contact-list i{

    width:42px;
    height:42px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    margin-right:15px;

    flex-shrink:0;

}


/*==============================
    GOOGLE MAP
===============================*/

.map-container{

    width:100%;

    height:450px;

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.map-container iframe{

    width:100%;
    height:100%;

    border:0;

}


/*==============================
    CONTACT SOCIAL
===============================*/

.contact-social{

    margin-top:30px;

}

.contact-social a{

    width:45px;
    height:45px;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    margin-right:8px;

    transition:.35s;

}

.contact-social a:hover{

    background:var(--secondary);

    color:#000;

}



/*=========================================================
    UTILITY CLASSES
=========================================================*/

.text-justify{
    text-align:justify;
}

.object-cover{
    object-fit:cover;
}

.object-contain{
    object-fit:contain;
}

.w-fit{
    width:fit-content;
}

.shadow-none{
    box-shadow:none !important;
}

.border-0{
    border:0 !important;
}

.rounded-20{
    border-radius:20px;
}

.rounded-30{
    border-radius:30px;
}

.bg-cover{
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
}

.transition{
    transition:var(--transition);
}

.overflow-hidden{
    overflow:hidden;
}

.z-1{
    z-index:1;
}

.z-9{
    z-index:9;
}

.z-99{
    z-index:99;
}

.z-999{
    z-index:999;
}



/*=========================================================
    IMAGE EFFECTS
=========================================================*/

.img-hover{

    overflow:hidden;
    border-radius:20px;

}

.img-hover img{

    transition:.5s;

}

.img-hover:hover img{

    transform:scale(1.08);

}



/*=========================================================
    CARD HOVER
=========================================================*/

.hover-up{

    transition:.35s;

}

.hover-up:hover{

    transform:translateY(-10px);

}



/*=========================================================
    PRELOADER (OPTIONAL)
=========================================================*/

.preloader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

}

.preloader.hide{

    opacity:0;

    visibility:hidden;

}



/*=========================================================
    ANIMATION HELPERS
=========================================================*/

.fade-up{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}



.fade-left{

    animation:fadeLeft .8s ease;

}

@keyframes fadeLeft{

    from{

        opacity:0;
        transform:translateX(-40px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}



.fade-right{

    animation:fadeRight .8s ease;

}

@keyframes fadeRight{

    from{

        opacity:0;
        transform:translateX(40px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}



/*=========================================================
    RESPONSIVE
=========================================================*/


/*=========================
    LARGE DESKTOP
=========================*/

@media(max-width:1400px){

.hero-slider h1{

    font-size:58px;

}

}



/*=========================
    LAPTOP
=========================*/

@media(max-width:1200px){

.hero-slider h1{

    font-size:50px;

}

.section-padding{

    padding:80px 0;

}

.about-img-2{

    width:45%;

}

.infra-img{

    height:330px;

}

}



/*=========================
    TABLET
=========================*/

@media(max-width:992px){

.navbar{

    padding:12px 0;

}

.navbar-nav{

    padding-top:15px;

}

.nav-link{

    margin:8px 0;

}

.hero-slider .carousel-item{

    height:70vh;

}

.hero-slider h1{

    font-size:42px;

}

.hero-slider p{

    font-size:16px;

}

.counter-box{

    margin-bottom:30px;

}

.feature-card{

    margin-bottom:30px;

}

.service-card{

    margin-bottom:30px;

}

.home-product-card{

    margin-bottom:30px;

}

.product-card{

    margin-bottom:30px;

}

.info-card{

    margin-bottom:30px;

}

.mv-card{

    margin-bottom:30px;

}

.process-card{

    margin-bottom:30px;

}

.team-card{

    margin-bottom:30px;

}

.about-img-2{

    display:none;

}

.infra-content{

    padding-left:0;
    margin-top:30px;

}

.contact-form-wrapper{

    margin-top:40px;

}

.section-title{

    font-size:36px;

}

}



/*=========================
    MOBILE
=========================*/

@media(max-width:768px){

h1{

    font-size:36px;

}

h2{

    font-size:30px;

}

h3{

    font-size:24px;

}

.section-padding{

    padding:65px 0;

}

.hero-slider .carousel-item{

    height:600px;

}

.hero-slider h1{

    font-size:34px;

}

.hero-slider p{

    font-size:15px;

}

.hero-slider .btn-primary-custom{

    margin-bottom:15px;

}

.page-header,
.product-header,
.contact-header,
.qc-header{

    padding:80px 0;

}

.counter-box h2{

    font-size:42px;

}

.feature-icon{

    width:65px;
    height:65px;
    font-size:28px;

}

.step-number{

    width:48px;
    height:48px;

}

.about-img-1{

    width:100%;

}

.lab-img{

    box-shadow:none;

}

.contact-form-wrapper{

    padding:30px;

}

.map-container{

    height:300px;

}

footer{

    text-align:center;

}

footer .social-icons{

    margin-top:20px;

}

}



/*=========================
    SMALL MOBILE
=========================*/

@media(max-width:576px){

.hero-slider h1{

    font-size:28px;

}

.hero-slider p{

    font-size:14px;

}

.btn-primary-custom,
.btn-outline-custom,
.btn-submit,
.btn-enquiry{

    width:100%;

    text-align:center;

}

.section-title{

    font-size:28px;

}

.counter-box h2{

    font-size:34px;

}

.product-img-wrapper{

    height:220px;

}

.contact-form-wrapper{

    padding:20px;

}

.info-card{

    padding:30px 20px;

}

.scroll-top{

    right:15px;
    bottom:15px;

}

}



/* Partner/Catalog Section Styling */

.catalog-cta {
    background-color: #1a4338;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 50px 0;
}

.catalog-cta h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.catalog-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    color: #fff;
}

.btn-lime {
    background-color: #a4e637;
    color: #1a4338;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-lime:hover {
    background-color: #ffffff;
    color: #1a4338;
    transform: scale(1.05);
}

.btn-lime i {
    margin-right: 10px;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .catalog-cta {
        padding: 40px 20px;
        text-align: center;
    }
    .catalog-cta h2 { font-size: 2.2rem; }
    .catalog-cta p { margin: 0 auto 30px; }
}


/*=========================================================
    END OF FILE
=========================================================*/