/* =========================
ROOT VARIABLES
========================= */

:root{

    --primary:#007A95;
    --primary-dark:#005F75;

    --secondary:#0B2341;

    --footer-bg:#021E45;
    --footer-bg-dark:#011833;

    --white:#ffffff;
    --text:#c8d5e4;

    --border:rgba(255,255,255,.15);

    --shadow:0 15px 50px rgba(0,0,0,.08);

    --radius:15px;

    --transition:.4s ease;

    --heading-font:'Poppins',sans-serif;
    --body-font:'Poppins',sans-serif;
}

/* =========================
RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:var(--body-font);
    overflow-x:hidden;
    padding-top:95px;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
    padding:0;
    margin:0;
}

/* =========================
HEADER
========================= */

.sam-header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:9999;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(15px);

    transition:.4s ease;

    /* border-bottom:1px solid rgba(0,0,0,.05); */
}

.header-scrolled{

    background:#ffffff;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.navbar{
    padding:0;
}

.sam-logo img{
    height:72px;
}

/* =========================
NAVIGATION
========================= */

.navbar-nav{
    gap:20px;
}

.nav-link{

    position:relative;

    color:var(--secondary) !important;

    font-size:14px;
    font-weight:600;

    text-transform:uppercase;

    padding:35px 0 !important;

    transition:.3s ease;
}

.nav-link:hover{
    color:var(--primary) !important;
}


.nav-link:hover::after,
.nav-link.active::after{

    width:100%;
}

/* =========================
PREMIUM MEGA DROPDOWN
========================= */
.nav-link:hover::after,
.nav-link.active::after{
    width:0 !important;
}
.dropdown-menu{
    border: none;
    border-radius: 16px;
    min-width: 650px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 25px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: .35s ease;

    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    left:-285px;
    top:90px;
}

.sam-dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    left:-285px;
    top:90px;
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-item{
    padding:7px 11px;
    border-radius:10px;
    white-space:normal;
    line-height:1.5;
    font-size:13px;
    font-weight:500;
    transition:.3s;
}

.dropdown-item:hover{
    background:#f3f8fc;
    color:var(--primary);
    transform:translateX(6px);
}
/* Tablet */

@media(max-width:991px){

    .dropdown-menu{

        min-width:100%;
        display:none;
        grid-template-columns:1fr;

        opacity:1;
        visibility:visible;
        transform:none;

        box-shadow:none;
        padding:10px 0;
    }

    .sam-dropdown.active .dropdown-menu{
        display:grid;
    }

}

/* Small Laptop */

@media(min-width:992px) and (max-width:1200px){

    .dropdown-menu{
        min-width:560px;
        gap:5px 15px;
    }

}
/* =========================
QUOTE BUTTON
========================= */

.sam-btn{

    position:relative;

    overflow:hidden;

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:14px 32px;

    border-radius:8px;

    color:#fff;

    font-size:14px;
    font-weight:600;

    background:
    linear-gradient(
    135deg,
    #008ba7,
    #00627c);

    transition:.4s ease;
}

.sam-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.35),
    transparent);

    transition:.7s ease;
}

.sam-btn:hover::before{
    left:100%;
}

.sam-btn:hover{

    color:#fff;

    transform:translateY(-4px);
}

/* =========================
FOOTER
========================= */

.sam-footer{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #032A5A 0%,
    #021E45 50%,
    #011833 100%);

    padding:90px 0 70px;
}

.sam-footer::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    left:-220px;
    top:-180px;

    background:
    radial-gradient(
    rgba(0,122,149,.25),
    transparent 70%);
}

.footer-divider{

    border-right:
    1px solid rgba(255,255,255,.12);
}

/* =========================
FOOTER LOGO
========================= */

.footer-logo img{

    max-width:180px;

    margin-bottom:20px;
    border-radius: 5px;
}

.footer-logo p{

    color:var(--text);

    line-height:1.8;

    font-size:15px;

    margin-top:15px;
}

/* =========================
FOOTER TITLE
========================= */

.footer-title{

    color:#ffffff;

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;
}

/* =========================
FOOTER LINKS
========================= */

.footer-links li{

    margin-bottom:12px;
}

.footer-links a{

    position:relative;

    color:var(--text);

    font-size:15px;

    transition:.3s ease;
}

.footer-links a:hover{

    color:#ffffff;

    padding-left:10px;
}

/* =========================
CONTACT INFO
========================= */

.footer-contact li{

    display:flex;

    gap:12px;

    margin-bottom:18px;

    color:var(--text);

    font-size:15px;

    line-height:1.6;
}

.footer-contact i{

    color:var(--primary);

    font-size:18px;

    margin-top:3px;
}

/* =========================
SOCIAL ICONS
========================= */

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;
}

.footer-social a{

    width:46px;
    height:46px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.1);

    color:#ffffff;

    transition:.4s ease;
}

.footer-social a:hover{

    background:var(--primary);

    border-color:var(--primary);

    transform:translateY(-6px);

    box-shadow:
    0 10px 25px rgba(0,122,149,.4);
}
.sam-footer::before{
    pointer-events:none;
}

.footer-logo{
    position:relative;
    z-index:10;
}

.footer-social{
    position:relative;
    z-index:10;
}
/* =========================
TABLET
========================= */

@media(max-width:991px){

    body{
        padding-top:85px;
    }

    .sam-logo img{
        height:60px;
    }

    .navbar-nav{
        gap:0;
        padding:20px 0;
    }

    .nav-link{
        padding:12px 0 !important;
    }

    .nav-link::after{
        display:none;
    }

    .sam-btn{
        margin-top:15px;
    }

    .footer-divider{
        border:none;
    }

    .sam-footer{
        padding:70px 0;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:767px){

    body{
        padding-top:80px;
    }

    .sam-logo img{
        height:52px;
    }

    .sam-footer{

        text-align:center;

        padding:60px 0;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-contact li{

        justify-content:center;

        text-align:left;
    }

    .footer-title{

        margin-top:10px;

        margin-bottom:18px;

        font-size:20px;
    }

    .footer-divider{
        border:none;
    }
}
/* =========================
FOOTER BOTTOM
========================= */

.sam-footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:
    1px solid rgba(255,255,255,.12);
}

.sam-footer-bottom-wrap{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;
}

.sam-footer-bottom p{

    margin:0;

    color:var(--text);

    font-size:14px;
}

.sam-footer-bottom-links{

    display:flex;

    gap:20px;
}

.sam-footer-bottom-links a{

    color:var(--text);

    font-size:14px;

    transition:.3s ease;
}

.sam-footer-bottom-links a:hover{

    color:#ffffff;
}

/* Mobile */

@media(max-width:767px){

    .sam-footer-bottom-wrap{

        flex-direction:column;

        text-align:center;
    }

    .sam-footer-bottom-links{

        justify-content:center;

        flex-wrap:wrap;
    }
}
/* home page section one  */
.sam-hero-section{

    position:relative;

    overflow:hidden;

    background:url('/public/frontend/assets/images/home-bg-img.png')
    center center/cover no-repeat;

    padding:50px 0;
}

.sam-hero-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.85) 25%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0.20) 75%,
    rgba(255,255,255,0.25) 100%
    );

    pointer-events:none;
}

.sam-hero-section .container{

    position:relative;

    z-index:2;
}
.sam-hero-content{

    position:relative;
    z-index:2;
    padding-top:50px;
}

.sam-tag{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    margin-bottom:15px;

    font-size:18px;
}

.sam-hero-content h1{

    color:var(--secondary);

    font-size:30px;

    font-weight:700;

    line-height:1.15;

    margin-bottom:20px;
}

.sam-hero-content h1 span{

    display:block;

    color:var(--primary);
}

.sam-hero-content p{

    font-size:16px;

    color:#555;

    max-width:500px;

    margin-bottom:35px;
}

.sam-hero-btns{

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

.sam-btn-outline{

    padding:14px 28px;

    border:2px solid var(--primary);

    color:var(--secondary);

    border-radius:8px;

    font-weight:600;

    transition:.3s;
}

.sam-btn-outline:hover{

    background:var(--primary);

    color:#fff;
}

.sam-hero-image{

    text-align:right;
}

.sam-hero-image img{

    width:100%;

    max-width:650px;
}

.swiper-slide{

    display:flex;
    align-items:center;
}

/* Tablet */

@media(max-width:991px){

    .sam-hero-content{

        text-align:center;
        margin-bottom:40px;
    }

    .sam-hero-btns{

        justify-content:center;
    }

    .sam-hero-content h1{

        font-size:42px;
    }

    .sam-hero-image{

        text-align:center;
    }

}

/* Mobile */

@media(max-width:767px){

    .sam-hero-section{

        padding:50px 0;
    }


    .sam-hero-section{

        padding:70px 0 50px;
        background-position:75% center;
    }

    .sam-hero-section::before{

        background:
        linear-gradient(
        180deg,
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0.85) 40%,
        rgba(255,255,255,0.95) 100%
        );
    }
}
    .sam-hero-content h1{

        font-size:22px;
    }

    .sam-tag{

        font-size:15px;
    }

    .sam-hero-content p{

        font-size:14px;
    }
/* section two */
/* =========================
STATS SECTION
========================= */

.sam-stats-section{

    position:relative;

    margin-top:-60px;

    z-index:10;
}

.sam-stats-wrapper{

    background:
    linear-gradient(
    90deg,
    #032A5A,
    #021E45,
    #007A95);

    border-radius:18px;

    padding:28px 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);
}

.sam-stat-item{

    flex:1;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    padding:0 15px;

    border-right:
    1px solid rgba(255,255,255,.15);
}

.sam-stat-item:last-child{
    border-right:none;
}

.sam-stat-icon{

    color:#fff;

    font-size:30px;

    line-height:1;
}

.sam-stat-content h3{

    margin:0;

    color:#fff;

    font-size:22px;

    font-weight:700;
}

.sam-stat-content p{

    margin:3px 0 0;

    color:rgba(255,255,255,.8);

    font-size:12px;

    font-weight:500;
}
@media(max-width:991px){

    .sam-stats-wrapper{

        display:grid;

        grid-template-columns:
        repeat(2,1fr);

        gap:25px;
    }

    .sam-stat-item{

        border:none;

        justify-content:flex-start;
    }

}
@media(max-width:767px){

    .sam-stats-section{
        margin-top:30px;
    }

    .sam-stats-wrapper{

        grid-template-columns:1fr;

        padding:25px;
    }

    .sam-stat-item{

        justify-content:flex-start;

        padding-bottom:15px;

        border-bottom:
        1px solid rgba(255,255,255,.15);
    }

    .sam-stat-item:last-child{

        border-bottom:none;

        padding-bottom:0;
    }

    .sam-stat-content h3{

        font-size:22px;
    }

}
/* section three */
/* ==========================
PRODUCT CATEGORIES
========================== */

.sam-product-categories{

    padding:90px 0;

    background:#fff;
}

.sam-section-title{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    margin-bottom:50px;
}

.sam-section-title span{

    width:60px;
    height:3px;

    background:var(--primary);

    border-radius:10px;
}

.sam-section-title h2{

    margin:0;

    font-family:'Poppins',sans-serif;

    font-size:30px;

    font-weight:700;

    color:var(--secondary);

    text-transform:uppercase;
}


.sam-category-card{

    background:#fff;

    border:1px solid #e9edf2;

    border-radius:18px;

    padding:25px 15px;

    text-align:center;

    height:260px;
    width: 100%;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    transition:.4s ease;

    cursor:pointer;
}
.sam-category-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.sam-category-card img{

    width:200px;

    height:150px;

    object-fit:contain;

    margin:0 auto;
}


.sam-category-card h3{

    font-size:16px;

    font-weight:700;

    line-height:1.4;

    min-height:42px;

    display:flex;

    align-items:center;

    justify-content:center;
}

.sam-category-card::after{

    content:"";

    display:block;

    width:35px;

    height:3px;

    background:var(--primary);

    margin:0 auto;

    border-radius:10px;
}
@media(max-width:991px){

    .sam-product-categories{

        padding:70px 0;
    }

    .sam-section-title h2{

        font-size:28px;
    }
}

@media(max-width:767px){

    .sam-section-title{

        gap:12px;
    }

    .sam-section-title span{

        width:35px;
    }

    .sam-section-title h2{

        font-size:20px;
        text-align:center;
    }
}
/* section four */
/* ==========================
ABOUT SECTION
========================== */

.sam-about-section{

    padding:50px 0;

    background:#fff;
}

.sam-about-image{

    overflow:hidden;

    border-radius:20px;
}

.sam-about-image img{

    width:100%;

    display:block;

    border-radius:20px;
}

/* Content */

.sam-about-tag{

    display:inline-block;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;

    text-transform:uppercase;
}

.sam-about-content h2{

    font-size:30px;

    font-weight:700;

    color:var(--secondary);

    line-height:1.2;

    margin-bottom:20px;
}

.sam-about-content h2 span{

    color:var(--primary);
}

.sam-about-content p{

    color:#5c6470;

    font-size:16px;

    line-height:1.9;

    margin-bottom:18px;
}

/* Stats */

.sam-about-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    border:1px solid #e7edf3;

    border-radius:18px;

    overflow:hidden;

    background:#fff;
}

.sam-stat-box{

    padding:35px 20px;

    text-align:center;

    border-right:1px solid #e7edf3;

    border-bottom:1px solid #e7edf3;
}

.sam-stat-box:nth-child(2),
.sam-stat-box:nth-child(4){

    border-right:none;
}

.sam-stat-box:nth-child(3),
.sam-stat-box:nth-child(4){

    border-bottom:none;
}

.sam-stat-box h3{

    color:var(--primary);

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;
}

.sam-stat-box p{

    margin:0;

    color:#5c6470;

    font-size:15px;

    font-weight:500;
}
/* Tablet */

@media(max-width:991px){

    .sam-about-section{

        padding:80px 0;
    }

    .sam-about-content{

        text-align:center;
    }

    .sam-about-content h2{

        font-size:34px;
    }

    .sam-about-stats{

        margin-top:20px;
    }

}

/* Mobile */

@media(max-width:767px){

    .sam-about-section{

        padding:60px 0;
    }

    .sam-about-content h2{

        font-size:28px;
    }

    .sam-about-content p{

        font-size:15px;
    }

    .sam-stat-box{

        padding:25px 15px;
    }

    .sam-stat-box h3{

        font-size:30px;
    }

}
/* section five */
/* ==========================
WHY CHOOSE US
========================== */

.sam-why-section{

    padding:10px 0;
    padding-bottom: 40px;

    background:#fff;
}

.sam-section-heading{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    margin-bottom:50px;
}

.sam-section-heading span{

    width:60px;

    height:3px;

    background:var(--primary);

    border-radius:10px;
}

.sam-section-heading h2{

    margin:0;

    color:var(--secondary);

    font-size:30px;

    font-weight:700;

    text-transform:uppercase;
}

.sam-why-card{

    background:#fff;

    border:1px solid #e8edf3;

    border-radius:18px;

    padding:35px 20px;

    text-align:center;

    height:100%;

    transition:.4s ease;
}

.sam-why-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    border-color:rgba(0,122,149,.2);
}
.sam-why-icon{

    display:block;

    font-size:40px;

    color:var(--primary);

    margin-bottom:20px;

    transition:.4s ease;
}

.sam-why-card:hover .sam-why-icon{

    transform:scale(1.1);

    color:var(--primary-dark);
}
.sam-why-card h3{

    font-size:18px;

    font-weight:700;

    color:var(--secondary);

    line-height:1.4;

    margin-bottom:15px;

    min-height:50px;
}

.sam-why-card p{

    margin:0;

    font-size:16px;

    color:#606d80;

    line-height:1.7;
}
/* Tablet */

@media(max-width:991px){

    .sam-why-section{

        padding:80px 0;
    }

    .sam-section-heading h2{

        font-size:28px;
    }

    .sam-why-card{

        padding:30px 15px;
    }
    

}

/* Mobile */

@media(max-width:767px){

    .sam-why-section{

        padding:60px 0;
    }

    .sam-section-heading{

        gap:10px;
    }

    .sam-section-heading span{

        width:30px;
    }

    .sam-section-heading h2{

        font-size:20px;

        text-align:center;
    }

    .sam-why-card{

        padding:25px 15px;
    }

   
.sam-why-icon{

        font-size:46px;
    }
    .sam-why-card h3{

        font-size:16px;

        min-height:auto;
    }

    .sam-why-card p{

        font-size:14px;
    }

}

/* section six */

/* ==========================
MANUFACTURING SECTION
========================== */

.sam-manufacturing-section{

    padding:80px 0;

    background:
    linear-gradient(
    90deg,
    #021E45 0%,
    #032A5A 50%,
    #021E45 100%);
}

.sam-manufacturing-content span{

    display:block;

    color:#ffffff;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:10px;
}

.sam-manufacturing-content h2{

    color:var(--primary);

    font-size:30px;

    font-weight:700;

    margin-bottom:20px;
}

.sam-manufacturing-content p{

    color:rgba(255,255,255,.85);

    font-size:16px;

    line-height:1.8;

    margin:0;
}

/* Gallery */

.sam-manufacturing-gallery{

    display:flex;

    gap:18px;

    justify-content:flex-end;
}

.sam-manufacturing-img{

    flex:1;

    overflow:hidden;

    border:3px solid rgba(255,255,255,.85);

    clip-path:
    polygon(
    10% 0%,
    100% 0%,
    90% 100%,
    0% 100%
    );

    transition:.4s ease;
}

.sam-manufacturing-img:hover{

    transform:translateY(-8px);
}

.sam-manufacturing-img img{

    width:100%;

    height:260px;

    object-fit:fill;

    display:block;

    transition:.5s ease;
}

.sam-manufacturing-img:hover img{

    transform:scale(1.08);
}
@media(max-width:991px){

    .sam-manufacturing-section{

        padding:70px 0;
    }

    .sam-manufacturing-content{

        text-align:center;

        margin-bottom:40px;
    }

    .sam-manufacturing-content h2{

        font-size:38px;
    }

    .sam-manufacturing-gallery{

        justify-content:center;
    }

}
@media(max-width:767px){

    .sam-manufacturing-section{

        padding:60px 0;
    }

    .sam-manufacturing-content h2{

        font-size:30px;
    }

    .sam-manufacturing-content p{

        font-size:15px;
    }

    .sam-manufacturing-gallery{

        flex-direction:column;
    }

    .sam-manufacturing-img img{

        height:220px;
    }

}
/* section seven  */
/* ==========================
OUR PROCESS
========================== */

.sam-process-section{

    padding:50px 0;

    background:#fff;
}

.sam-process-heading{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    margin-bottom:60px;
}

.sam-process-heading span{

    width:60px;

    height:3px;

    background:var(--primary);

    border-radius:10px;
}

.sam-process-heading h2{

    margin:0;

    color:var(--secondary);

    font-size:30px;

    font-weight:700;

    text-transform:uppercase;
}

/* Card */

.sam-process-card{

    position:relative;

    background:#fff;

    border:1px solid #e7edf3;

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    height:100%;

    transition:.4s ease;

    box-shadow:
    0 5px 15px rgba(0,0,0,.03);
}

.sam-process-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

/* Number */

.sam-process-number{

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);

    width:40px;

    height:40px;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:13px;

    font-weight:700;

    border:4px solid #fff;
}

/* Icon */

.sam-process-icon{

    font-size:40px;

    color:var(--primary);

    display:block;

    margin-bottom:20px;
}

.sam-process-card h3{

    color:var(--secondary);

    font-size:18px;

    font-weight:700;

    line-height:1.5;

    margin:0;
}
/* Tablet */

@media(max-width:991px){

    .sam-process-section{

        padding:80px 0;
    }

    .sam-process-heading h2{

        font-size:28px;
    }

}

/* Mobile */

@media(max-width:767px){

    .sam-process-section{

        padding:60px 0;
    }

    .sam-process-heading{

        gap:10px;
    }

    .sam-process-heading span{

        width:30px;
    }

    .sam-process-heading h2{

        font-size:22px;
    }

    .sam-process-card{

        padding:30px 15px;
    }

    .sam-process-icon{

        font-size:42px;
    }

    .sam-process-card h3{

        font-size:18px;
    }

}
/* section eight */
/* ==========================
TESTIMONIAL
========================== */

.sam-testimonial-section{

    padding:50px 0;

    background:#fff;
}

.sam-testimonial-card{

    position:relative;

    background:#fff;

    border:1px solid #e8edf3;

    border-radius:20px;

    padding:30px;

    height:100%;

    transition:.4s ease;
}

.sam-testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.sam-stars{

    color:#f7b500;

    font-size:18px;

    margin-bottom:15px;
}

.sam-testimonial-card p{

    color:#555;

    font-size:16px;

    line-height:1.8;

    margin-bottom:20px;
}

.sam-testimonial-card h4{

    color:var(--secondary);

    font-size:18px;

    font-weight:700;

    margin-bottom:5px;
}

.sam-testimonial-card span{

    color:#777;

    font-size:14px;
}

.sam-testimonial-card .bi-quote{

    position:absolute;

    right:25px;

    top:25px;

    font-size:46px;

    color:var(--primary);

    opacity:.9;
}
@media(max-width:767px){

    .sam-testimonial-section{

        padding:60px 0;
    }

    .sam-testimonial-card{

        padding:25px;
    }

    .sam-testimonial-card p{

        font-size:15px;
    }

}
/* section nine */
/* ==========================
CATALOGUE CTA
========================== */

.sam-catalogue-section{

    padding:30px 0;
}

.sam-catalogue-box{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:
    linear-gradient(
    135deg,
    #0a93ad,
    #007A95,
    #00647a);

    padding:30px 40px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

/* Light Effect */

.sam-catalogue-box::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    right:-150px;
    top:-120px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);
}

/* Image */

.sam-catalogue-image{

    text-align:center;
}

.sam-catalogue-image img{

    max-width:240px;

    width:100%;

    display:block;

    margin:auto;
}

/* Content */

.sam-catalogue-content h2{

    color:#fff;

    font-size:30px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:15px;

    text-transform:uppercase;
}

.sam-catalogue-content p{

    color:rgba(255,255,255,.9);

    font-size:16px;

    margin:0;
}

/* Button */

.sam-catalogue-btn{

    text-align:right;
}

.sam-download-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    color:var(--secondary);

    padding:18px 28px;

    border-radius:12px;

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

    transition:.4s ease;
}

.sam-download-btn:hover{

    transform:translateY(-5px);

    color:var(--secondary);

    box-shadow:
    0 15px 30px rgba(0,0,0,.12);
}
@media(max-width:991px){

    .sam-catalogue-box{

        padding:35px 25px;
    }

    .sam-catalogue-content{

        text-align:center;

        margin:25px 0;
    }

    .sam-catalogue-btn{

        text-align:center;
    }

    .sam-catalogue-content h2{

        font-size:30px;
    }

}
@media(max-width:767px){

    .sam-catalogue-section{

        padding:40px 0;
    }

    .sam-catalogue-box{

        padding:25px 20px;
    }

    .sam-catalogue-content h2{

        font-size:24px;
    }

    .sam-catalogue-content p{

        font-size:15px;
    }

    .sam-download-btn{

        width:100%;

        justify-content:center;

        padding:15px;
    }

    .sam-catalogue-image img{

        max-width:180px;
    }

}

/* contact page  */
/*==========================
CONTACT STRIP
==========================*/

.sam-contact-strip{

    position:relative;

    
    width: 1400px;
   margin: 50px auto;

    /* z-index:10; */
}

.sam-contact-box{

    background:var(--white);

    border-radius:20px;

    overflow:hidden;

    box-shadow:var(--shadow);
}

.sam-contact-item{

    display:flex;

    gap:18px;

    padding:35px 25px;

    height:100%;

    border-right:1px solid #e9eef4;
}

.sam-contact-last{

    border-right:none;
}

.sam-contact-icon{

    min-width:60px;

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    color:var(--primary);
}

.sam-contact-content h4{

    font-family:var(--heading-font);

    font-size:18px;

    font-weight:700;

    color:var(--secondary);

    margin-bottom:12px;

    /* text-transform:uppercase; */
}

.sam-contact-content p{

    margin:0 0 6px;

    font-family:var(--body-font);

    font-size:14px;

    line-height:1.8;

    color:#555;
}
@media(max-width:991px){

    .sam-contact-strip{

        margin-top:0;
        width: 100%;
    }

    .sam-contact-item{

        border-right:none;

        border-bottom:1px solid #e9eef4;
    }

    .sam-contact-last{

        border-bottom:none;
    }
}
@media(max-width:767px){

    .sam-contact-item{

        flex-direction:column;

        text-align:center;

        padding:25px 20px;
    }

    .sam-contact-icon{

        margin:auto;
    }

    .sam-contact-content h4{

        font-size:18px;
    }

    .sam-contact-content p{

        font-size:14px;
    }
}
/* contact section three */
.container-1{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding-left:15px;
    padding-right:15px;
}

.sam-contact-section{
    padding:80px 0;
    background:#f8fbfd;
}

.sam-contact-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:var(--shadow);
    height:100%;
}

.sam-contact-card h2{
    font-size:30px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:30px;
    position:relative;
    text-transform: uppercase;
}

.sam-contact-card h2::after{
    content:"";
    width:70px;
    height:3px;
    background:var(--primary);
    display:block;
    margin-top:10px;
}

.form-control,
.form-select{
    height:55px;
    border:1px solid #dfe7ef;
    border-radius:12px;
    box-shadow:none;
    font-size:15px;
}

.form-control:focus,
.form-select:focus{
    border-color:var(--primary);
    box-shadow:none;
}

textarea.form-control{
    min-height:140px;
    resize:none;
}

.sam-captcha-box{
    height:55px;
    border:1px solid #dfe7ef;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 15px;
    background:#fff;
    font-size:22px;
    font-weight:700;
    color:var(--secondary);
}

.sam-captcha-box button{
    border:none;
    background:none;
    color:var(--primary);
    font-size:20px;
    cursor:pointer;
}

.sam-submit-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:12px;
    background:var(--primary);
    color:#fff;
    font-weight:600;
    transition:.4s ease;
}

.sam-submit-btn:hover{
    background:var(--primary-dark);
}

.sam-note{
    margin-top:15px;
    color:#777;
    font-size:14px;
}

.sam-map-wrap iframe{
    width:100%;
    height:350px;
    border:none;
    border-radius:15px;
}

.sam-location-box{
    margin-top:20px;
    background:linear-gradient(135deg,var(--secondary),var(--primary));
    border-radius:15px;
    padding:25px;
}

.sam-location-content{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.sam-location-icon{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    font-size:24px;
}

.sam-location-content h4{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.sam-location-content p{
    margin:0;
    color:rgba(255,255,255,.9);
    line-height:1.8;
    font-size:14px;
}

.sam-direction-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:#fff;
    color:var(--primary);
    padding:14px 24px;
    border-radius:10px;
    font-weight:600;
    transition:.4s ease;
    font-size: 14px;
}

.sam-direction-btn:hover{
    transform:translateY(-3px);
    color:var(--primary-dark);
}

@media(max-width:1200px){
    .container-1{
        max-width:1140px;
    }
}

@media(max-width:991px){

    .container-1{
        max-width:720px;
    }

    .sam-contact-section{
        padding:60px 0;
    }

    .sam-contact-card{
        padding:25px;
    }

    .sam-contact-card h2{
        font-size:26px;
    }

    .sam-map-wrap iframe{
        height:320px;
    }

    .sam-location-box{
        padding:20px;
    }
}

@media(max-width:767px){

    .container-1{
        max-width:100%;
        padding-left:15px;
        padding-right:15px;
    }

    .sam-contact-section{
        padding:50px 0;
    }

    .sam-contact-card{
        padding:20px;
        border-radius:15px;
    }

    .sam-contact-card h2{
        text-align:center;
        font-size:22px;
    }

    .sam-contact-card h2::after{
        margin:10px auto 0;
    }

    .sam-location-content{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .sam-direction-btn{
        width:100%;
        justify-content:center;
        margin-top:15px;
    }

    .sam-map-wrap iframe{
        height:250px;
    }

    .form-control,
    .form-select{
        height:50px;
        font-size:14px;
    }

    .sam-submit-btn{
        height:50px;
    }

    .sam-captcha-box{
        height:50px;
        font-size:18px;
    }
}

@media(max-width:480px){

    .container-1{
        padding-left:12px;
        padding-right:12px;
    }

    .sam-contact-card{
        padding:15px;
    }

    .sam-map-wrap iframe{
        height:220px;
    }
}
/*=========================
WHY CONNECT WITH US
=========================*/

.samwhyconnect-main{

    padding:80px 0;

    background:#fff;
}

.samwhyconnect-heading-wrap{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    margin-bottom:40px;
}

.samwhyconnect-line{

    width:70px;

    height:3px;

    background:var(--primary);
}

.samwhyconnect-title{

    margin:0;

    font-size:30px;

    font-weight:700;

    color:var(--secondary);

    font-family:var(--heading-font);

    text-transform:uppercase;
}

.samwhyconnect-grid{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    border:1px solid #e9eef4;

    box-shadow:var(--shadow);
}

.samwhyconnect-box{

    padding:40px 20px;

    text-align:center;

    height:100%;

    border-right:1px solid #e9eef4;
}

.samwhyconnect-box-last{

    border-right:none;
}

.samwhyconnect-icon{

    display:block;

    font-size:30px;

    color:var(--primary);

    margin-bottom:20px;

    transition:all .4s ease-in-out;
}

.samwhyconnect-box:hover .samwhyconnect-icon{

    transform:translateY(-8px) scale(1.08);

    color:var(--primary-dark);
}

.samwhyconnect-card-title{

    font-size:18px;

    font-weight:700;

    color:var(--secondary);

    margin-bottom:15px;

    font-family:var(--heading-font);
}

.samwhyconnect-card-text{

    margin:0;

    font-size:15px;

    line-height:1.8;

    color:#555;

    font-family:var(--body-font);
}

/* Tablet */

@media(max-width:991px){

    .samwhyconnect-box{

        border-right:none;

        border-bottom:1px solid #e9eef4;
    }

    .samwhyconnect-title{

        font-size:26px;
    }
}

/* Mobile */

@media(max-width:767px){

    .samwhyconnect-main{

        padding:60px 0;
    }

    .samwhyconnect-heading-wrap{

        gap:10px;
    }

    .samwhyconnect-line{

        width:40px;
    }

    .samwhyconnect-title{

        font-size:20px;

        text-align:center;
    }

    .samwhyconnect-box{

        padding:25px 15px;
    }

    .samwhyconnect-icon{

        font-size:34px;
    }

    .samwhyconnect-card-title{

        font-size:17px;
    }

    .samwhyconnect-card-text{

        font-size:14px;

        line-height:1.6;
    }
}
/* about section two */


/* Section */
.our-story{
    padding:60px 0;
    background:var(--white);
}

.story-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

/* Image */
.story-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
}

/* Content */
.section-tag{
    display:inline-block;
    color:var(--primary);
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:15px;
    letter-spacing:1px;
}

.story-content h2{
    font-size:30px;
    line-height:1.2;
    color:var(--secondary);
    font-family:var(--heading-font);
    margin-bottom:20px;
    font-weight:700;
}

.story-content p{
    color:#555;
    font-size:16px;
    line-height:1.8;
    margin-bottom:35px;
}

/* Stats */
.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat-box{
    text-align:center;
    padding:20px 15px;
    border-left:1px solid #e5e5e5;
}

.stat-box:first-child{
    border-left:none;
}

.stat-box .icon{
    font-size:28px;
    margin-bottom:10px;
}

.stat-box h3{
    color:var(--primary);
    font-size:30px;
    margin-bottom:8px;
    font-weight:700;
}

.stat-box p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.5;
}

/* Tablet */
@media (max-width:991px){

    .story-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .story-content h2{
        font-size:32px;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stat-box{
        border:none;
        box-shadow:0 5px 20px rgba(0,0,0,.05);
        border-radius:10px;
    }
}

/* Mobile */
@media (max-width:576px){

    .our-story{
        padding:60px 0;
    }

    .story-content h2{
        font-size:30px;
    }

    .story-content p{
        font-size:15px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .stat-box h3{
        font-size:28px;
    }
}
/* section */
/* ==========================
MISSION & VISION
========================== */

.mission-vision-section {
    padding: 40px 0;
}

.mission-vision-wrapper {
    background: linear-gradient(90deg, #012b5a, #003b73);
    border-radius: 20px;
    padding: 45px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
}

.mv-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 25px;
}

.mv-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0,180,255,.25);
}

.mv-icon i {
    font-size: 40px;
    color: #fff;
}

.mv-content span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mv-content p {
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

.mv-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255,255,255,0.25);
}

/* Responsive */

@media (max-width: 991px) {

    .mission-vision-wrapper {
        flex-direction: column;
        padding: 35px 25px;
    }

    .mv-divider {
        width: 100%;
        height: 1px;
    }

    .mv-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {

    .mv-icon {
        width: 75px;
        height: 75px;
        min-width: 75px;
    }

    .mv-icon i {
        font-size: 32px;
    }

    .mv-content p {
        font-size: 14px;
    }
}


/* ===========================
   PRODUCT EXPERTISE SECTION
=========================== */

.samx-product-expertise{
    padding:80px 0;
    background:#fff;
}

.samx-expertise-content h2{
    font-family:var(--heading-font);
    font-size:28px;
    font-weight:700;
    color:var(--secondary);
    text-transform:uppercase;
    margin-bottom:15px;
    line-height:1.2;
}

.samx-expertise-content p{
    font-family:var(--body-font);
    font-size:16px;
    line-height:1.7;
    color:#4b5563;
    margin-bottom:20px;
}

.samx-expertise-list{
    padding:0;
    margin:0;
    list-style:none;
}

.samx-expertise-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:15px;
    color:#1f2937;
    /* margin-bottom:12px; */
    font-weight:500;
    line-height:1.5;
}

.samx-expertise-list li i{
    color:#00a8c6;
    font-size:18px;
    margin-top:2px;
}

/* ===========================
   CATEGORY CARD
=========================== */

.samx-category-card{
    height:100%;
    background:#fff;
    border:1px solid #e6eaf0;
    border-radius:14px;
    text-align:center;
    padding:25px 15px;
    transition:all .35s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    min-height:250px;
}

.samx-category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-color:var(--primary);
}

.samx-category-card img{
    width:100%;
    max-width:130px;
    height:140px;
    object-fit:contain;
    margin:0 auto 20px;
    display:block;
    transition:var(--transition);
}

.samx-category-card:hover img{
    transform:scale(1.05);
}

.samx-category-card h3{
    font-family:var(--heading-font);
    font-size:18px;
    font-weight:700;
    color:#0B2341;
    line-height:1.5;
    margin:0;
    text-transform:uppercase;
}

/* ===========================
   DESKTOP CARD WIDTH
=========================== */

.samx-card-row{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:991px){

    .samx-product-expertise{
        padding:60px 0;
    }

    .samx-expertise-content{
        margin-bottom:25px;
    }

    .samx-card-row{
        grid-template-columns:repeat(3,1fr);
    }

    .samx-category-card{
        min-height:220px;
    }

    .samx-category-card img{
        max-width:110px;
        height:120px;
    }

    .samx-category-card h3{
        font-size:16px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:767px){

    .samx-product-expertise{
        padding:50px 0;
    }

    .samx-expertise-content h2{
        font-size:28px;
    }

    .samx-card-row{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .samx-category-card{
        min-height:200px;
        padding:20px 12px;
    }

    .samx-category-card img{
        max-width:90px;
        height:100px;
    }

    .samx-category-card h3{
        font-size:14px;
    }

    .samx-expertise-list li{
        font-size:14px;
    }
}
/* ==========================
MANUFACTURING EXCELLENCE
========================== */

.manufacturing-section {
    padding: 40px 0;
    background: #f5f8fb;
}

.manufacturing-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Content Box */
.mfg-content-box {
    flex: 0 0 300px;
    min-width: 260px;
}

.mfg-content-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 27px;
    font-weight: 700;
    color: #0B2341;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.mfg-content-box p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
}

.mfg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0B2341;
    color: #fff;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.mfg-btn:hover {
    background: #007A95;
    color: #fff;
    transform: translateY(-3px);
}

.mfg-btn .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.mfg-btn:hover .arrow {
    transform: translateX(4px);
}

/* Right Cards Row */
.mfg-cards-row {
    flex: 1;
    display: flex;
    gap: 20px;
}

.mfg-card {
    flex: 1;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mfg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
}

.mfg-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.mfg-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.mfg-card:hover .mfg-img-wrapper img {
    transform: scale(1.07);
}

.mfg-card-title {
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #0B2341;
    text-align: center;
    background: #fff;
    border-top: 2px solid #007A95;
}

/* Tablet */
@media (max-width: 991px) {
    .manufacturing-container {
        flex-direction: column;
        gap: 40px;
    }

    .mfg-content-box {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .mfg-btn {
        margin: 0 auto;
    }

    .mfg-cards-row {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .manufacturing-section {
        padding: 60px 0;
    }

    .mfg-cards-row {
        flex-direction: column;
        gap: 16px;
    }

    .mfg-img-wrapper {
        height: 200px;
    }

    .mfg-content-box h2 {
        font-size: 20px;
    }
}

/* =========================
QUALITY ASSURANCE PROCESS
========================= */

.sam-qa-section{
    padding:40px 0;
    background:#fff;
}

.sam-qa-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:40px;
    width:100%;
}

.sam-qa-step{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    flex:0 0 auto;
}

.sam-qa-icon-wrap{
    position:relative;
    margin-bottom:16px;
}

.sam-qa-num{
    position:absolute;
    top:-10px;
    left:-10px;
    width:28px;
    height:28px;
    background:#007A95;
    color:#fff;
    border-radius:50%;
    font-size:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:3;
    border:2px solid #fff;
    box-shadow:0 2px 8px rgba(0,122,149,0.35);
}

.sam-qa-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#eaf6f9;
    border:2px solid #007A95;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.35s ease;
    position:relative;
    z-index:2;
}

.sam-qa-icon i{
    font-size:23px;
    color:#007A95;
    transition:color 0.35s ease;
}

.sam-qa-step:hover .sam-qa-icon{
    background:#007A95;
    box-shadow:0 10px 28px rgba(0,122,149,0.4);
    transform:translateY(-4px);
}

.sam-qa-step:hover .sam-qa-icon i{ color:#fff; }

/* Dashed connector line */
.sam-qa-line{
    flex:1;
    border-top:2px dashed #007A95;
    margin-bottom:60px;
    min-width:15px;
    opacity:0.5;
}

.sam-qa-step h4{
    font-size:13px;
    font-weight:700;
    color:#0B2341;
    line-height:1.5;
    margin:0;
    max-width:120px;
}

@media(max-width:991px){
    .sam-qa-wrapper{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:40px 20px;
    }
    .sam-qa-line{ display:none; }
    .sam-qa-step h4{ max-width:110px; }
}

@media(max-width:576px){
    .sam-qa-section{ padding:60px 0; }
    .sam-qa-wrapper{
        grid-template-columns:repeat(2,1fr);
        gap:35px 15px;
    }
    .sam-qa-icon{ width:80px; height:80px; }
    .sam-qa-icon i{ font-size:28px; }
    .sam-qa-step h4{ font-size:12px; }
}


/* =========================
CERTIFICATIONS & STANDARDS
========================= */

.sam-cert-section {
    padding: 60px 0;
    background: #fff;
}

.sam-cert-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1.5px solid #d0dce8;
    border-radius: 12px;
    padding: 28px 40px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.sam-cert-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 36px;
    flex: 1;
    min-width: 140px;
}

.sam-cert-divider {
    width: 1px;
    height: 60px;
    background: #d0dce8;
    flex-shrink: 0;
}

.sam-cert-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.ce-logo {
    font-size: 36px;
    font-weight: 800;
    color: #0B2341;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2px;
    line-height: 1;
}

.sam-cert-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0B2341;
    margin-bottom: 2px;
}

.sam-cert-info p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

.udyam h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0B2341;
}

.udyam p {
    font-size: 14px;
    font-weight: 600;
    color: #007A95;
}

@media (max-width: 991px) {
    .sam-cert-wrapper {
        gap: 24px;
        padding: 28px 20px;
    }
    .sam-cert-card {
        padding: 0 16px;
    }
    .sam-cert-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .sam-cert-section {
        padding: 50px 0;
    }
    .sam-cert-wrapper {
        gap: 28px;
        padding: 24px 16px;
    }
    .sam-cert-card {
        flex: 0 0 45%;
        padding: 0;
        justify-content: flex-start;
    }
    .sam-cert-logo img {
        height: 42px;
    }
}

/* =========================
PRODUCT PAGE - BANNER
========================= */

.sam-page-banner{
    padding:60px 0;
    background:linear-gradient(180deg,#f5f8fb 0%,#ffffff 100%);
}

.sam-page-banner-content h1{
    color:var(--secondary);
    font-size:38px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:18px;
}

.sam-page-banner-content h1 span{
    display:block;
    color:var(--primary);
}

.sam-page-banner-content p{
    color:#5c6470;
    font-size:16px;
    line-height:1.8;
    max-width:480px;
    margin-bottom:30px;
}

.sam-banner-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    max-width:460px;
}

.sam-banner-feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    font-weight:600;
    color:var(--secondary);
}

.sam-banner-feature-item i{
    width:38px;
    height:38px;
    min-width:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#eaf6f9;
    color:var(--primary);
    font-size:17px;
}

.sam-page-banner-image{
    text-align:center;
}

.sam-page-banner-image img{
    width:100%;
    max-width:520px;
    margin:0 auto;
}

@media(max-width:991px){
    .sam-page-banner-content{ text-align:center; }
    .sam-page-banner-content p{ margin:0 auto 30px; }
    .sam-banner-features{ margin:0 auto; }
    .sam-page-banner-image{ margin-top:30px; }
}

@media(max-width:576px){
    .sam-page-banner-content h1{ font-size:28px; }
    .sam-banner-features{ grid-template-columns:1fr; }
}

/* =========================
PRODUCT LISTING - SIDEBAR
========================= */
.sam-page-banner{
     background:url('/public/frontend/assets/images/home-bg-img.png')
    center center/cover no-repeat;
}
.sam-product-listing-section{
    padding:70px 0 90px;
    background:#fff;
   
}

.sam-sidebar{
    background:#fff;
    border:1px solid #e9edf2;
    border-radius:var(--radius);
    padding:25px;
}

.sam-sidebar-title{
    color:var(--secondary);
    font-size:18px;
    font-weight:700;
    margin-bottom:18px;
    padding-bottom:15px;
    border-bottom:2px solid var(--primary);
}

.sam-sidebar-categories li{
    border-bottom:1px solid #eef2f6;
}

.sam-sidebar-categories li:last-child{
    border-bottom:none;
}

.sam-sidebar-categories a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 5px;
    font-size:14px;
    font-weight:500;
    color:#5c6470;
    transition:.3s ease;
}

.sam-sidebar-categories a i{
    color:var(--primary);
    font-size:15px;
}

.sam-sidebar-categories li.active a,
.sam-sidebar-categories a:hover{
    color:var(--primary);
    padding-left:10px;
}

.sam-sidebar-catalogue{
    margin-top:25px;
    padding:22px 18px;
    border-radius:12px;
    background:linear-gradient(135deg,#0a93ad,#00647a);
    text-align:center;
}

.sam-sidebar-catalogue p{
    color:#fff;
    font-size:15px;
    font-weight:700;
    margin-bottom:6px;
}

.sam-sidebar-catalogue span{
    display:block;
    color:rgba(255,255,255,.85);
    font-size:12px;
    margin-bottom:15px;
}

.sam-download-btn-sm{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    color:var(--secondary);
    padding:10px 18px;
    border-radius:8px;
    font-size:13px;
    font-weight:700;
    transition:.3s ease;
}

.sam-download-btn-sm:hover{
    transform:translateY(-3px);
    color:var(--secondary);
}

/* =========================
PRODUCT LISTING - CONTENT
========================= */

.sam-product-content-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:12px;
}

.sam-product-content-header h2{
    color:var(--secondary);
    font-size:30px;
    font-weight:700;
    margin:0;
}

.sam-product-desc{
    color:#5c6470;
    font-size:15px;
    line-height:1.8;
    margin-bottom:30px;
    max-width:780px;
}

.sam-product-card{
    position:relative;
    background:#fff;
    border:1px solid #e9edf2;
    border-radius:var(--radius);
    padding:25px 18px 20px;
    height:100%;
    text-align:center;
    transition:.4s ease;
}

.sam-product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border-color:rgba(0,122,149,.2);
}

.sam-product-code{
    position:absolute;
    top:15px;
    left:15px;
    background:var(--primary);
    color:#fff;
    font-size:16px;
    font-weight:700;
    padding:4px 10px;
    border-radius:20px;
}

.sam-product-card img{
    width:100%;
    height:140px;
    object-fit:contain;
    margin:10px auto 18px;
}

.sam-product-card h3{
    font-size:14.5px;
    font-weight:600;
    color:var(--secondary);
    line-height:1.5;
    min-height:90px;
    margin-bottom:12px;
}

.sam-view-details{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:var(--primary);
    font-size:13px;
    font-weight:700;
    transition:.3s ease;
}

.sam-view-details:hover{
    gap:10px;
    color:var(--primary-dark);
}

@media(max-width:767px){
    .sam-product-content-header h2{ font-size:22px; }
}

/* =========================
PRODUCT PAGE - FEATURES STRIP
========================= */

.sam-features-strip-section{
    padding:50px 0;
    background:#f5f8fb;
}

.sam-feature-strip-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.sam-feature-strip-item i{
    width:55px;
    height:55px;
    min-width:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff;
    color:var(--primary);
    font-size:24px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.sam-feature-strip-item h4{
    font-size:15px;
    font-weight:700;
    color:var(--secondary);
    margin-bottom:3px;
}

.sam-feature-strip-item p{
    font-size:13px;
    color:#777;
    margin:0;
}

@media(max-width:767px){
    .sam-feature-strip-item{ margin-bottom:20px; }
}

/* =========================
PRODUCT PAGE - BOTTOM CTA
========================= */

.sam-product-btns{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:22px;
}

.sam-whatsapp-btn,
.sam-enquire-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:48px;

    border-radius:10px;

    font-size:15px;
    font-weight:600;

    text-decoration:none;

    transition:.35s;

    gap:8px;
}

/* WhatsApp */

.sam-whatsapp-btn{

    background:#25D366;
    color:#fff;
}

.sam-whatsapp-btn:hover{

    background:#1ebc59;
    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 10px 20px rgba(37,211,102,.30);
}

/* Enquiry */

.sam-enquire-btn{

    background:#0A4E84;
    color:#fff;
}

.sam-enquire-btn:hover{

    background:#083C67;
    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 10px 20px rgba(10,78,132,.30);
}

/* Icons */

.sam-product-btns i{

    font-size:18px;
}



/* =========================
PRODUCT PAGE - PRECISION CTA
========================= */

.sam-precision-cta-section{
    padding:60px 0 50px;
    background:#fff;
}

.sam-precision-cta-box{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 50px rgba(0,0,0,.1);
}

.sam-precision-cta-content{
    height:100%;
    padding:45px 50px;
    background:linear-gradient(135deg,#0a93ad,#032A5A,#021E45);
    color:#fff;
}

.sam-precision-cta-content h2{
    font-size:30px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:12px;
}

.sam-precision-cta-content > p{
    color:rgba(255,255,255,.85);
    font-size:14px;
    line-height:1.7;
    max-width:480px;
    margin-bottom:25px;
}

.sam-precision-cta-list{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.sam-precision-cta-list li{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13.5px;
    font-weight:600;
    margin-bottom:12px;
}

.sam-precision-cta-list i{
    color:#3ddcf0;
    font-size:15px;
}

.sam-precision-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    color:var(--secondary);
    padding:14px 28px;
    border-radius:8px;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    transition:.3s ease;
}

.sam-precision-cta-btn:hover{
    transform:translateY(-3px);
    color:var(--secondary);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.sam-precision-cta-image{
    height:100%;
    min-height:320px;
}

.sam-precision-cta-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.sam-precision-stats-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:25px;
    margin-top:45px;
}

.sam-precision-stat{
    display:flex;
    align-items:center;
    gap:14px;
}

.sam-precision-stat i{
    font-size:26px;
    color:var(--primary);
}

.sam-precision-stat h3{
    font-size:20px;
    font-weight:700;
    color:var(--secondary);
    margin:0;
}

.sam-precision-stat p{
    font-size:12px;
    color:#777;
    margin:0;
}

@media(max-width:991px){
    .sam-precision-cta-content{ padding:35px 25px; }
    .sam-precision-cta-image{ min-height:260px; }
    .sam-precision-stats-row{ justify-content:center; }
}

@media(max-width:767px){
    .sam-precision-cta-content h2{ font-size:22px; }
    .sam-precision-stats-row{ flex-direction:column; align-items:flex-start; }
}
/* =========================
FOOTER - LOCATION MAP
========================= */

.footer-location-map{
    border-radius:10px;
    overflow:hidden;
    margin-bottom:15px;
    filter:grayscale(20%) brightness(.9);
}

.footer-location-map iframe{
    display:block;
}

.sam-get-directions-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--primary);
    color:#fff;
    padding:10px 18px;
    border-radius:8px;
    font-size:13px;
    font-weight:700;
    transition:.3s ease;
}

.sam-get-directions-btn:hover{
    background:var(--primary-dark);
    color:#fff;
    transform:translateY(-2px);
}

@media(max-width:991px){
    .footer-location-map{ max-width:280px; margin:0 auto 15px; }
    .sam-get-directions-btn{ display:flex; justify-content:center; max-width:200px; margin:0 auto; }
}

/* product enquiry */


/*======================================
PRODUCT ENQUIRY HERO
======================================*/

.pe-hero {

    position: relative;

    padding: 150px 0 90px;

    background: url('/public/frontend/assets/images/product-enquiry-bg-img.jpg') center center/cover no-repeat;

    overflow: hidden;

}

/* Light Overlay */

.pe-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(255,255,255,.93) 0%,
        rgba(255,255,255,.82) 32%,
        rgba(255,255,255,.30) 62%,
        rgba(255,255,255,0) 100%
    );

}

.pe-hero .container{

    position: relative;

    z-index: 2;

}

.pe-hero-content{

    max-width: 520px;

}

.pe-hero-title{

    font-size: 52px;

    font-family: var(--heading-font);

    font-weight: 700;

    color: var(--secondary);

    margin-bottom: 18px;

    line-height: 1.2;

}

.pe-hero-text{

    font-size: 19px;

    color: #34495e;

    line-height: 1.8;

    margin-bottom: 45px;

}

.pe-hero-features{

    display: flex;

    align-items: center;

    gap: 40px;

    flex-wrap: wrap;

}

.pe-feature-item{

    display: flex;

    align-items: center;

    gap: 14px;

}

.pe-feature-icon{

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(0,122,149,.08);

    color: var(--primary);

    font-size: 26px;

    transition: var(--transition);

}

.pe-feature-item:hover .pe-feature-icon{

    background: var(--primary);

    color: var(--white);

    transform: translateY(-5px);

}

.pe-feature-content h6{

    margin: 0;

    font-size: 16px;

    font-weight: 600;

    color: var(--secondary);

    line-height: 1.4;

}

.pe-feature-content span{

    display: block;

    font-size: 15px;

    color: #4e6278;

    margin-top: 2px;

}

/*======================================
Large Desktop
======================================*/

@media(max-width:1399px){

.pe-hero{

padding:140px 0 80px;

}

.pe-hero-title{

font-size:46px;

}

}

/*======================================
Laptop
======================================*/

@media(max-width:1199px){

.pe-hero{

padding:130px 0 75px;

}

.pe-hero-title{

font-size:42px;

}

.pe-hero-text{

font-size:17px;

}

.pe-hero-features{

gap:28px;

}

}

/*======================================
Tablet
======================================*/

@media(max-width:991px){

.pe-hero{

padding:120px 0 70px;

background-position:right center;

}

.pe-hero-content{

max-width:100%;

text-align:center;

margin:auto;

}

.pe-hero-title{

font-size:38px;

}

.pe-hero-text{

font-size:16px;

margin-bottom:35px;

}

.pe-hero-features{

justify-content:center;

gap:24px;

}

}

/*======================================
Mobile
======================================*/

@media(max-width:767px){

.pe-hero{

padding:100px 0 60px;

background-position:75% center;

}

.pe-hero-title{

font-size:30px;

}

.pe-hero-text{

font-size:15px;

line-height:1.7;

margin-bottom:30px;

}

.pe-hero-features{

flex-direction:column;

align-items:flex-start;

gap:18px;

}

.pe-feature-item{

width:100%;

}

.pe-feature-icon{

width:48px;

height:48px;

font-size:22px;

}

.pe-feature-content h6{

font-size:15px;

}

.pe-feature-content span{

font-size:14px;

}

}

/*======================================
Small Mobile
======================================*/

@media(max-width:575px){

.pe-hero{

padding:90px 0 50px;

}

.pe-hero-title{

font-size:26px;

}

.pe-hero-text{

font-size:14px;

}

}

/*======================================
PRODUCT ENQUIRY BREADCRUMB
======================================*/

.pe-breadcrumb{

    padding:28px 0;

    background:#fff;

}

.pe-breadcrumb-box{

    background:#fff;

    border-radius:12px;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    padding:18px 30px;

}

.pe-breadcrumb ul{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:14px;

    margin:0;

    padding:0;

    list-style:none;

}

.pe-breadcrumb li{

    font-size:15px;

    color:#6b7280;

    font-family:var(--body-font);

    position:relative;

}

.pe-breadcrumb li:not(:last-child)::after{

    content:"›";

    margin-left:14px;

    color:#9ca3af;

    font-size:18px;

}

.pe-breadcrumb li a{

    text-decoration:none;

    color:#6b7280;

    transition:var(--transition);

}

.pe-breadcrumb li a:hover{

    color:var(--primary);

}

.pe-breadcrumb li.active{

    color:var(--primary);

    font-weight:600;

}

#breadcrumbCategory{

    color:#4b5563;

    font-weight:500;

}

/*=========================
Tablet
=========================*/

@media(max-width:991px){

.pe-breadcrumb{

padding:22px 0;

}

.pe-breadcrumb-box{

padding:16px 22px;

}

}

/*=========================
Mobile
=========================*/

@media(max-width:767px){

.pe-breadcrumb{

padding:18px 0;

}

.pe-breadcrumb-box{

padding:14px 16px;

}

.pe-breadcrumb ul{

gap:10px;

}

.pe-breadcrumb li{

font-size:13px;

}

.pe-breadcrumb li:not(:last-child)::after{

margin-left:10px;

font-size:15px;

}

}

























/*======================================
Privacy Policy CSS
Unique Classes
======================================*/

.pp-section{
    padding:80px 0;
    background:#f7fbfc;
    font-family:var(--body-font);
}

.pp-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 15px;
}

/*====================
Header
====================*/

.pp-header{
    text-align:center;
    margin-bottom:45px;
}

.pp-badge{
    display:inline-block;
    padding:8px 18px;
    background:rgba(0,122,149,.12);
    color:var(--primary);
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.pp-title{
    font-family:var(--heading-font);
    color:var(--secondary);
    font-size:42px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:18px;
}

.pp-description{
    max-width:760px;
    margin:auto;
    font-size:16px;
    line-height:1.8;
    color:#5c6672;
}

.pp-meta{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.pp-meta-box{
    background:var(--white);
    border-radius:var(--radius);
    padding:18px 28px;
    min-width:220px;
    box-shadow:var(--shadow);
}

.pp-meta-box strong{
    display:block;
    color:var(--secondary);
    font-size:15px;
    margin-bottom:6px;
}

.pp-meta-box span{
    color:#666;
    font-size:15px;
}

/*====================
Card
====================*/

.pp-card{
    background:var(--white);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    padding:35px;
    margin-bottom:30px;
    transition:var(--transition);
    border:1px solid rgba(0,0,0,.05);
}

.pp-card:hover{
    transform:translateY(-5px);
}

.pp-heading{
    font-size:28px;
    color:var(--secondary);
    margin-bottom:22px;
    font-weight:700;
    position:relative;
    padding-bottom:14px;
}

.pp-heading::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:75px;
    height:4px;
    border-radius:20px;
    background:var(--primary);
}

.pp-subheading{
    color:var(--primary);
    font-size:20px;
    font-weight:600;
    margin-top:28px;
    margin-bottom:16px;
}

.pp-card p{
    color:#5d6673;
    line-height:1.9;
    font-size:16px;
    margin-bottom:18px;
}

/*====================
List
====================*/

.pp-list{
    margin:0;
    padding:0;
    list-style:none;
}

.pp-list li{
    position:relative;
    padding-left:34px;
    margin-bottom:14px;
    color:#5d6673;
    line-height:1.8;
    font-size:16px;
}

.pp-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:1px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:rgba(0,122,149,.12);
    color:var(--primary);
    font-size:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

/*====================
Contact Box
====================*/

.pp-contact{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:20px;
}

.pp-contact-box{
    background:#f8fbfd;
    border-left:4px solid var(--primary);
    border-radius:12px;
    padding:20px;
}

.pp-contact-box h4{
    color:var(--secondary);
    font-size:18px;
    margin-bottom:12px;
    font-weight:600;
}

.pp-contact-box p{
    margin:8px 0;
    color:#5d6673;
    line-height:1.8;
}

/*====================
Consent
====================*/

.pp-consent{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    border-radius:18px;
    padding:35px;
    margin-top:40px;
}

.pp-consent h2{
    color:#fff;
    margin-bottom:18px;
    font-size:28px;
    font-weight:700;
}

.pp-consent p{
    color:#fff;
    line-height:1.9;
    margin:0;
}

/*====================
Table (Optional)
====================*/

.pp-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.pp-table th,
.pp-table td{
    border:1px solid #e6edf2;
    padding:14px;
    text-align:left;
}

.pp-table th{
    background:var(--primary);
    color:#fff;
}

/*====================
Links
====================*/

.pp-card a,
.pp-contact a{
    color:var(--primary);
    text-decoration:none;
    transition:var(--transition);
}

.pp-card a:hover,
.pp-contact a:hover{
    color:var(--primary-dark);
}

/*====================
Responsive
====================*/

@media(max-width:991px){

.pp-section{
    padding:70px 0;
}

.pp-title{
    font-size:34px;
}

.pp-heading{
    font-size:24px;
}

.pp-subheading{
    font-size:19px;
}

.pp-card{
    padding:28px;
}

.pp-contact{
    grid-template-columns:1fr;
}

}

@media(max-width:767px){

.pp-section{
    padding:60px 0;
}

.pp-title{
    font-size:30px;
}

.pp-description{
    font-size:15px;
}

.pp-heading{
    font-size:22px;
}

.pp-card{
    padding:24px;
}

.pp-meta{
    flex-direction:column;
}

.pp-meta-box{
    width:100%;
}

.pp-list li{
    font-size:15px;
}

.pp-card p{
    font-size:15px;
}

.pp-consent{
    padding:25px;
}

.pp-consent h2{
    font-size:24px;
}

}

@media(max-width:576px){

.pp-section{
    padding:50px 0;
}

.pp-title{
    font-size:26px;
}

.pp-heading{
    font-size:20px;
}

.pp-subheading{
    font-size:18px;
}

.pp-card{
    padding:20px;
    border-radius:12px;
}

.pp-meta-box{
    padding:16px;
}

.pp-list li{
    padding-left:30px;
    line-height:1.7;
}

.pp-list li::before{
    width:20px;
    height:20px;
    font-size:11px;
}

.pp-contact-box{
    padding:18px;
}

}
.pp-accept{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:var(--white);
    border-radius:18px;
    padding:35px;
    margin-top:40px;
}

.pp-accept h2{
    color:var(--white);
    font-size:28px;
    font-weight:700;
    margin-bottom:18px;
}

.pp-accept p{
    color:var(--white);
    line-height:1.9;
    margin-bottom:15px;
}

.pp-accept p:last-child{
    margin-bottom:0;
}

































































/*======================================
PRODUCT ENQUIRY SECTION
======================================*/

.pe-enquiry-section{

    padding:20px 0;

    background:#f8fafc;

}

.pe-company-card,
.pe-product-card,
.pe-form-card{

    background:var(--white);

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    overflow:hidden;

}

/*======================================
LEFT COMPANY CARD
======================================*/
.pe-company-card{

    background:#fff;

    border-radius:20px;

    box-shadow:var(--shadow);

    padding:40px;

}

.pe-company-top{

    margin-bottom:35px;

}

.pe-tag{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:rgba(0,122,149,.08);

    color:var(--primary);

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.pe-tag i{

    font-size:18px;

}

.pe-company-top h2{

    font-family:var(--heading-font);

    font-size:34px;

    font-weight:700;

    color:var(--secondary);

    line-height:1.3;

    margin-bottom:20px;

}

.pe-company-top p{

    color:#64748b;

    line-height:1.9;

    margin:0;

    font-size:16px;

}

/*======================================
COMPANY LIST
======================================*/

.pe-company-list{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:35px;

}

.pe-list-item{

    display:flex;

    align-items:center;

    gap:15px;

    font-size:16px;

    color:#334155;

    font-weight:500;

}

.pe-list-item i{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(0,122,149,.10);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    transition:var(--transition);

}

.pe-list-item:hover i{

    background:var(--primary);

    color:#fff;

    transform:rotate(360deg);

}

/*======================================
WHATSAPP BUTTON
======================================*/

.pe-company-contact{

    margin-top:0px;

}

.pe-whatsapp-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    width:100%;

    height:58px;

    border-radius:10px;

    text-decoration:none;

    background:#25D366;

    color:#fff;

    font-size:17px;

    font-weight:600;

    transition:var(--transition);

}

.pe-whatsapp-btn i{

    font-size:22px;

}

.pe-whatsapp-btn:hover{

    background:#1ebc59;

    color:#fff;

    transform:translateY(-3px);

}

/*======================================
PRODUCT CARD
======================================*/

.pe-product-card{

    padding:35px;

}

.pe-product-image{

    background:#f5f7fa;

    border-radius:12px;

    overflow:hidden;

    margin-bottom:25px;

}

.pe-product-image img{

    width:100%;

    display:block;

}

.pe-product-content span{

    display:inline-block;

    color:var(--primary);

    font-size:15px;

    font-weight:600;

    margin-bottom:10px;

}

.pe-product-content h3{

    font-size:28px;

    color:var(--secondary);

    margin-bottom:25px;

    line-height:1.4;

    font-family:var(--heading-font);

}

.pe-product-content ul{

    list-style:none;

    padding:0;

    margin:0;

}

.pe-product-content ul li{

    display:flex;

    justify-content:space-between;

    gap:20px;

    padding:15px 0;

    border-bottom:1px solid #edf2f7;

    font-size:15px;

}

.pe-product-content ul li:last-child{

    border-bottom:none;

}

.pe-product-content strong{

    color:var(--secondary);

    min-width:100px;

}

.pe-product-content span{

    color:#475569;

}
/*======================================
COMMON CONTACT SECTION
======================================*/

.pe-common-contact{

    margin-top:30px;

    display:flex;

    flex-direction:column;

    gap:25px;

    position:relative;

    z-index:2;

}
/*======================================
RIGHT FORM CARD
======================================*/

.pe-form-card{

    height:100%;

    padding:45px;

    position:relative;

}

/*======================================
FORM HEADING
======================================*/

.pe-form-heading{

    margin-bottom:35px;

}

.pe-form-heading span{

    display:inline-block;

    background:rgba(0,122,149,.08);

    color:var(--primary);

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.pe-form-heading h2{

    font-size:34px;

    font-weight:700;

    color:var(--secondary);

    font-family:var(--heading-font);

    margin-bottom:15px;

}

.pe-form-heading p{

    font-size:16px;

    line-height:1.8;

    color:#64748b;

    margin:0;

}

/*======================================
FORM
======================================*/

#productEnquiryForm{

    margin-top:30px;

}

/*======================================
INPUT
======================================*/

#productEnquiryForm .form-control{

    width:100%;

    height:58px;

    border:1px solid #d9e2ec;

    border-radius:10px;

    box-shadow:none;

    padding:0 18px;

    font-size:15px;

    color:var(--secondary);

    transition:var(--transition);

    background:#fff;

}

#productEnquiryForm .form-control::placeholder{

    color:#94a3b8;

}

#productEnquiryForm .form-control:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(0,122,149,.10);

}

/*======================================
TEXTAREA
======================================*/

#productEnquiryForm textarea.form-control{

    height:150px;

    resize:none;

    padding:18px;

}

/*======================================
SUBMIT BUTTON
======================================*/

.pe-submit-btn{

    width:100%;

    height:60px;

    border:none;

    border-radius:10px;

    background:var(--primary);

    color:var(--white);

    font-size:17px;

    font-weight:600;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    transition:var(--transition);

    cursor:pointer;

}

.pe-submit-btn i{

    font-size:18px;

}

.pe-submit-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(0,122,149,.20);

}

/*======================================
REMOVE BOOTSTRAP SHADOW
======================================*/

.form-control:focus{

    box-shadow:none;

}

/*======================================
FORM SPACING
======================================*/

#productEnquiryForm .row{

    row-gap:20px;

}
/*======================================
XXL Desktop
======================================*/

@media (max-width:1399px){

.pe-company-card,
.pe-product-card,
.pe-form-card{

padding:35px;

}

.pe-company-top h2,
.pe-form-heading h2{

font-size:30px;

}

.pe-product-content h3{

font-size:24px;

}

}

/*======================================
Laptop
======================================*/

@media (max-width:1199px){

.pe-enquiry-section{

padding:70px 0;

}

.pe-company-card,
.pe-product-card,
.pe-form-card{

padding:30px;

}

.pe-company-top h2,
.pe-form-heading h2{

font-size:28px;

}

.pe-company-top p,
.pe-form-heading p{

font-size:15px;

}

.pe-list-item{

font-size:15px;

}

.pe-product-content h3{

font-size:22px;

}

.pe-product-content ul li{

font-size:14px;

}

}

/*======================================
Tablet
======================================*/

@media (max-width:991px){

.pe-enquiry-section{

padding:60px 0;

}

.pe-company-card,
.pe-product-card{

margin-bottom:30px;

}

.pe-company-card,
.pe-product-card,
.pe-form-card{

padding:30px 25px;

}

.pe-company-top{

text-align:center;

}

.pe-company-top h2{

font-size:28px;

}

.pe-company-top p{

max-width:100%;

}

.pe-tag{

justify-content:center;

}

.pe-company-list{

margin-top:25px;

}

.pe-form-heading{

text-align:center;

}

.pe-form-heading h2{

font-size:28px;

}

.pe-product-content{

text-align:center;

}

.pe-product-content ul li{

flex-direction:column;

align-items:flex-start;

gap:5px;

}

.pe-product-content strong{

min-width:100%;

}

.pe-whatsapp-btn{

height:55px;

font-size:16px;

}

}

/*======================================
Mobile
======================================*/

@media (max-width:767px){

.pe-enquiry-section{

padding:50px 0;

}

.pe-company-card,
.pe-product-card,
.pe-form-card{

padding:25px 20px;

border-radius:12px;

}

.pe-company-top h2{

font-size:24px;

}

.pe-form-heading h2{

font-size:24px;

}

.pe-company-top p,
.pe-form-heading p{

font-size:14px;

line-height:1.8;

}

.pe-tag{

font-size:13px;

padding:8px 15px;

}

.pe-tag i{

font-size:16px;

}

.pe-list-item{

font-size:14px;

gap:12px;

}

.pe-list-item i{

width:38px;

height:38px;

font-size:16px;

}

.pe-product-content h3{

font-size:20px;

}

.pe-product-content ul li{

padding:12px 0;

font-size:14px;

}

#productEnquiryForm .form-control{

height:54px;

font-size:14px;

}

#productEnquiryForm textarea.form-control{

height:130px;

}

.pe-submit-btn{

height:54px;

font-size:15px;

}

.pe-whatsapp-btn{

height:54px;

font-size:15px;

}

}

/*======================================
Small Mobile
======================================*/

@media (max-width:575px){

.pe-enquiry-section{

padding:40px 0;

}

.pe-company-card,
.pe-product-card,
.pe-form-card{

padding:20px 18px;

}

.pe-company-top h2{

font-size:22px;

}

.pe-form-heading h2{

font-size:22px;

}

.pe-company-top p,
.pe-form-heading p{

font-size:13px;

}

.pe-list-item{

font-size:13px;

}

.pe-product-content h3{

font-size:18px;

}

.pe-product-content span{

font-size:13px;

}

.pe-product-content ul li{

font-size:13px;

}

.pe-submit-btn{

font-size:14px;

}

.pe-whatsapp-btn{

font-size:14px;

}

}
.pe-input-box{

    position: relative;

    width: 100%;

}

.pe-input-box i{

    position: absolute;

    left: 18px;

    top: 50%;

    transform: translateY(-50%);

    z-index: 2;

    color: #94a3b8;

    font-size: 18px;

    pointer-events: none;

}

.pe-input-box .form-control,
.pe-input-box .form-select{

    width: 100%;

    padding-left: 52px !important;

}
/*======================================
MESSAGE BOX
======================================*/

.pe-message-box{

    position: relative;

}

.pe-message-box i{

    position: absolute;

    top: 18px;

    left: 18px;

    transform: none;

    font-size: 18px;

    color: #94a3b8;

    z-index: 2;

    pointer-events: none;

}

.pe-message-box textarea{

    min-height: 150px;

    padding-top: 16px;

    padding-left: 50px !important;

    resize: vertical;

}
/*======================================
DOWNLOAD CATALOGUE CARD
======================================*/

.pe-catalog-card{

   

    padding:30px 25px;

    background:linear-gradient(135deg,#f4fbfd,#edf7fb);

    border:1px solid rgba(0,122,149,.12);

    border-radius:12px;

    text-align:center;

}

.pe-catalog-icon{

    width:70px;

    height:70px;

    margin:0 auto 18px;

    border-radius:50%;

    background:rgba(0,122,149,.10);

    display:flex;

    align-items:center;

    justify-content:center;

}

.pe-catalog-icon i{

    font-size:32px;

    color:var(--primary);

}

.pe-catalog-card h4{

    font-size:24px;

    font-weight:700;

    color:var(--secondary);

    margin-bottom:12px;

    font-family:var(--heading-font);

}

.pe-catalog-card p{

    font-size:15px;

    line-height:1.8;

    color:#64748b;

    margin-bottom:25px;

}

.pe-catalog-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 28px;

    background:var(--primary);

    color:#fff;

    text-decoration:none;

    border-radius:8px;

    font-weight:600;

    transition:var(--transition);

}

.pe-catalog-btn:hover{

    background:var(--primary-dark);

    color:#fff;

    transform:translateY(-3px);

}

.pe-catalog-btn i{

    font-size:18px;

}

/*=========================
Responsive
=========================*/

@media(max-width:767px){

.pe-catalog-card{

padding:25px 20px;

}

.pe-catalog-card h4{

font-size:20px;

}

.pe-catalog-icon{

width:60px;

height:60px;

}

.pe-catalog-icon i{

font-size:28px;

}

}

/*======================================
CONTACT BAR
======================================*/

.pe-contact-bar{

    margin-top:40px;
    margin-bottom: 40px;

}

.pe-contact-item{

    display:flex;

    align-items:center;

    gap:18px;

    background:#eef7fd;

    border:1px solid rgba(0,122,149,.08);

    border-radius:12px;

    padding:20px;

    text-decoration:none;

    transition:var(--transition);

    height:100%;

}

.pe-contact-item:hover{

    background:var(--white);

    transform:translateY(-5px);

    box-shadow:var(--shadow);

}

.pe-contact-icon{

    width:58px;

    height:58px;

    min-width:58px;

    border-radius:50%;

    background:rgba(0,122,149,.10);

    display:flex;

    align-items:center;

    justify-content:center;

}

.pe-contact-icon i{

    font-size:22px;

    color:var(--primary);

}

.pe-contact-content h5{

    margin:0 0 5px;

    font-size:20px;

    font-weight:600;

    color:var(--secondary);

    font-family:var(--heading-font);

}

.pe-contact-content span{

    font-size:15px;

    color:#64748b;

    line-height:1.6;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.pe-contact-item{

padding:18px;

}

.pe-contact-content h5{

font-size:18px;

}

}

@media(max-width:767px){

.pe-contact-bar{

margin-top:30px;

}

.pe-contact-item{

padding:18px 16px;

}

.pe-contact-icon{

width:50px;

height:50px;

min-width:50px;

}

.pe-contact-icon i{

font-size:20px;

}

.pe-contact-content h5{

font-size:17px;

}

.pe-contact-content span{

font-size:14px;

}

}



/* about us page */
.sam-hero-about-section{
    position: relative;
    height: 55vh;
    overflow: hidden;
    background: url('/public/frontend/assets/images/about-hero-bg.png') center center/cover no-repeat;
    padding: 50px 0;
}

.sam-hero-about-section::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.sam-hero-about-section .container{
    position: relative;
    z-index: 2;
}

/* Tablet */
@media (max-width: 991px){
    .sam-hero-about-section{
        height: 100vh;
        background-position: center right;
    }

    .sam-hero-about-section::before{
        background: linear-gradient(
            90deg,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.90) 45%,
            rgba(255,255,255,0.45) 70%,
            rgba(255,255,255,0.10) 100%
        );
    }
    
.sam-hero-content p {
    color: black;
    
}
.sam-hero-content{
    padding-top: 0px;
}
}

/* Mobile */
@media (max-width: 767px){
    .sam-hero-about-section{
        height: 70vh;
        background-position: 75% center;
    }

    .sam-hero-about-section::before{
        background: linear-gradient(
            180deg,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.95) 40%,
            rgba(255,255,255,10.75) 70%,
            rgba(255,255,255,10.35) 100%
        );
    }
}
