*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
color:#333;
background:#fff;
overflow-x:hidden;
}

/*==================================================
            TOP HEADER
==================================================*/

.top-header{
    background:#ffffff;
    padding:10px 0;
    border-bottom:1px solid #e9ecef;
}

.top-header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.top-logo img{
    height:85px;
    width:auto;
}

/*==================================================
            CONTACT BUTTONS
==================================================*/

.top-contact{
    display:flex;
    align-items:center;
    gap:15px;
}

/* CALL BUTTON */

.call-btn{
    display:flex;
    align-items:center;
    gap:10px;

    background:#2d2d2d;
    color:#fff;
    text-decoration:none;

    padding:10px 18px;
    border-radius:50px;

    transition:.35s ease;
}

.call-btn:hover{
    background:#214c95;
    color:#fff;
    transform:translateY(-2px);
}

.call-btn i{
    width:36px;
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;
    color:#214c95;

    border-radius:50%;
    font-size:15px;
}

.call-btn span{
    display:block;
    font-size:11px;
    opacity:.9;
}

.call-btn strong{
    display:block;
    font-size:15px;
    font-weight:700;
}

/* EMAIL BUTTON */

.mail-btn{

    display:flex;
    align-items:center;
    gap:10px;

    background:#214c95;
    color:#fff;

    text-decoration:none;

    padding:10px 18px;

    border-radius:12px;

    font-size:15px;
    font-weight:600;

    transition:.35s;

}

.mail-btn:hover{

    background:#27d1c2;
    color:#fff;

    transform:translateY(-2px);

}

.mail-btn i{
    font-size:15px;
}

/*==================================================
            NAVBAR
==================================================*/

.navbar{

    background:#214c95;
    padding:14px 0;
    z-index:999;

}

.navbar .container{

    display:flex;
    align-items:center;
    justify-content:space-between;

}

.navbar-nav{

    gap:10px;

}

.nav-link{

    color: #ffffff !important;

    font-size:17px;
    font-weight:500;

    padding:8px 18px !important;

    transition:.3s;

}

.nav-link:hover{

    color: #2dd4bf !important;

}

/*==================================================
            SEARCH BOX
==================================================*/

.search-box{
    position:relative;
    width:400px;
}

.search-box input{
    width:100%;
    height:48px;
    padding:0 18px;
    border:1px solid #d9d9d9;
    border-radius:30px;
    outline:none;
    font-size:15px;
}

.search-box input:focus{
    border-color:#214c95;
    box-shadow:0 0 8px rgba(33,76,149,.15);
}

.search-box #suggestions,
.search-box #searchResult{
    position:absolute;
    top:55px;
    left:0;
    width:100%;
    background:#fff;
    border-radius:12px;
    box-shadow:0 12px 30px rgba(0,0,0,.15);
    display:none;
    overflow:hidden;
    z-index:99999;
    max-height:340px;
    overflow-y:auto;
}

.search-box #searchResult:not(:empty){
    display:block;
}

.search-box .search-item{
    display:block;
    padding:12px 18px;
    color:#333;
    text-decoration:none;
    border-bottom:1px solid #eee;
    transition:.25s;
    font-size:15px;
}

.search-box .search-item:last-child{
    border-bottom:none;
}

.search-box .search-item:hover{
    background:#214c95;
    color:#fff;
}

.no-result{
    padding:14px;
    text-align:center;
    color:#888;
}

/*==================================================
            MOBILE
==================================================*/

.mobile-right{

    display:flex;
    align-items:center;
    gap:15px;

}

.mobile-call{

    width:45px;
    height:45px;

    display:none;

    align-items:center;
    justify-content:center;

    background:#214c95;
    color:#fff;

    border-radius:50%;

    text-decoration:none;

    transition:.3s;

}

.mobile-call:hover{

    background:#27d1c2;
    color:#fff;

}

/*==================================================
            MENU BUTTON
==================================================*/

.menu-btn{

width:48px;
height:48px;
border:none;
outline:none;
background:#214c95;
border-radius:12px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
gap:5px;
cursor:pointer;
transition:.3s;

}

.menu-btn:hover{

background:#17386d;

}

.menu-btn span{

width:24px;
height:3px;
background:#fff;
border-radius:10px;
transition:.3s;

}

/* Active / open state */

.menu-btn.active span:nth-child(1){
transform:rotate(45deg) translate(5px,6px);
}

.menu-btn.active span:nth-child(2){
opacity:0;
}

.menu-btn.active span:nth-child(3){
transform:rotate(-45deg) translate(5px,-6px);
}

.logo{

    height:85px;

}


/*==================================================
            DROPDOWN MENU
==================================================*/

.dropdown-menu-custom{

    position:fixed;
    top:145px;
    right:20px;

    width:280px;

    background:#ffffff;

    border-radius:15px;

    overflow-y:auto;
    max-height:calc(100vh - 165px);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    z-index:99999;

    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-15px);

    transition:opacity .3s ease, transform .3s ease, visibility 0s linear .3s;

}

.dropdown-menu-custom.show{

    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);

    transition:opacity .3s ease, transform .3s ease, visibility 0s linear 0s;

}

.dropdown-menu-custom a{

    display:flex;
    align-items:center;
    gap:15px;

    padding:16px 22px;

    color:#214c95;
    text-decoration:none;
    font-weight:600;

    border-bottom:1px solid #f2f2f2;

    transition:.3s;

}

.dropdown-menu-custom a:last-child{
    border-bottom:none;
}

.dropdown-menu-custom a:hover{

    background:#214c95;
    color:#ffffff;

    padding-left:28px;

}

.dropdown-menu-custom i{

    width:25px;
    text-align:center;
    font-size:16px;

}

@keyframes menuOpen{

    from{
        opacity:0;
        transform:translateY(-15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/*==================================================
            STICKY NAVBAR
==================================================*/

.navbar.sticky-top{

    top:0;

    transition:.35s;

}

.navbar.scrolled{

    padding:10px 0;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px){

.top-header{

    padding:10px 0;

}

.top-header-wrapper{

    justify-content:center;

}

.top-contact{

    display:none;

}

.top-logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.top-logo img{
    height:60px;
}

.company-info h3{
    font-size:22px;
    margin:0;
    font-weight:700;
}

.company-info p{
    margin:2px 0 0;
    font-size:14px;
    color:#666;
}

.navbar{

    padding:12px 0;

}

.navbar-nav{

    display:none !important;

}

.search-box{

    display:none !important;

}

.mobile-call{

    display:flex;

}

}

/*==================================================
            MOBILE
==================================================*/

@media(max-width:768px){

.top-logo img{

    height:60px;

}

.mobile-call{

    width:42px;
    height:42px;

}

.menu-btn{

    width:48px;
    height:48px;

}

.menu-btn span{

    width:22px;

}

.dropdown-menu-custom{

    width:92%;

    left:4%;
    right:4%;

}

}

/*==================================================
            SMALL MOBILE
==================================================*/

@media(max-width:480px){

.top-logo img{

    height:55px;

}

.menu-btn{

    width:45px;
    height:45px;

}

.mobile-call{

    width:40px;
    height:40px;

}

.dropdown-menu-custom a{

    padding:14px 16px;

    font-size:15px;

}

}

.nav-link,
.call-btn,
.mail-btn,
.menu-btn,
.dropdown-menu-custom a{

    transition: transform .3s ease,
            box-shadow .3s ease,
            background-color .3s ease,
            color .3s ease;

}

/*====================================
            HERO SECTION
====================================*/

.hero{
    background:linear-gradient(90deg,#1d6ea8,#2db8c8);
    min-height:700px;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero .container{
    max-width:1320px;
}

.hero h1{
    font-size:64px;
    color:#fff;
    font-weight:700;
    line-height:1.2;
}

.hero h2{
    color:#fff;
    font-size:34px;
    margin:20px 0;
    font-weight:600;
}

.hero p{
    color:#fff;
    line-height:1.8;
    font-size:17px;
}

/*==============================
        HERO BUTTONS
==============================*/

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-buttons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:180px;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:all .35s ease;
}

.hero-buttons .main-btn{
    background:#ffffff;
    color:#214c95;
    border:2px solid #ffffff;
}

.hero-buttons .main-btn:hover{
    background:#ffffff;
    color:#214c95;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.hero-buttons .outline-btn{
    background:#ffffff;
    color:#214c95;
    border:2px solid #ffffff;
}

.hero-buttons .outline-btn:hover{
    background:#ffffff;
    color:#214c95;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/*==============================
        HERO SLIDER
==============================*/

.hero-slider{
    width:100%;
    overflow:hidden;
}

.hero-track{
    display:flex;
    width:200%;
    animation:heroSlide 10s ease-in-out infinite;
}

.hero-product{
    width:50%;
    flex-shrink:0;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;

    padding:10px;
    align-items:center;
}

.hero-med-img{
    width:100%;
    max-width:360px;
    height:280px;
    object-fit:contain;
    background:#fff;
    border-radius:18px;
    padding:18px;
    display:block;
    margin:auto;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.35s;
}

.hero-med-img:hover{
    transform:translateY(-8px) scale(1.04);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

@keyframes heroSlide{

    0%,45%{
        transform:translateX(0%);
    }

    50%,95%{
        transform:translateX(-50%);
    }

    100%{
        transform:translateX(0%);
    }

}

/*==============================
        HERO TRUST BADGES
==============================*/

.hero-trust-badges{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:30px;
}

.hero-trust-item{
    display:flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    backdrop-filter:blur(4px);
}

.hero-trust-item i{
    color:#ffd166;
    font-size:15px;
}

@media(max-width:991px){
    .hero-trust-badges{
        justify-content:center;
    }
}

/*==============================
        MOBILE
==============================*/

@media(max-width:991px){

    .hero{
        text-align:center;
        padding:80px 0;
        min-height:auto;
    }

    .hero h1{
        font-size:42px;
    }

    .hero h2{
        font-size:24px;
    }

    .hero-buttons{
        justify-content:center;
    }

}

@media(max-width:768px){

    .hero{
        padding:70px 0;
    }

    .hero h1{
        font-size:34px;
    }

    .hero h2{
        font-size:20px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-product{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .hero-med-img{
        max-width:150px;
        height:150px;
        padding:12px;
    }

    .hero-buttons a{
        min-width:150px;
        padding:12px 25px;
    }

}

/* SECTION */

.section{
padding:20px 0;
}

.section-title{
font-size:42px;
font-weight:700;
text-align:center;
margin-bottom:25px;
color:#214c95;
}

.section-text{
max-width:900px;
margin:auto;
text-align:center;
line-height:1.9;
font-size:18px;
}

/* FEATURE CARDS */

.feature-card{
background:white;
padding:35px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
height:100%;
}

.feature-card:hover{
transform:translateY(-10px);
}

.feature-card i{
font-size:45px;
color:#27d1c2;
margin-bottom:20px;
}

.feature-card h4{
color:#214c95;
margin-bottom:15px;
}

/* STATS */

.stats{
background:#214c95;
padding:80px 0;
color:white;
}

.stats h2{
font-size:50px;
font-weight:700;
}

.stats p{
font-size:18px;
margin-top:10px;
}

/* CERTIFICATIONS */

.certificate-card{
background:white;
padding:40px;
border-radius:15px;
text-align:center;
font-weight:600;
font-size:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
}

.certificate-card:hover{
transform:translateY(-10px);
}

/* CONTACT */

.contact-section{
padding:100px 0;
background:#f7fbff;
}

.contact-section h2{
text-align:center;
font-size:42px;
font-weight:700;
color:#214c95;
margin-bottom:50px;
}

.contact-section p{
font-size:18px;
margin-bottom:15px;
}

.form-control{
padding:15px;
border-radius:10px;
border:1px solid #ddd;
}

.submit-btn{
width:100%;
padding:15px;
border:none;
background:#214c95;
color:white;
font-weight:600;
border-radius:10px;
transition:.3s;
}

.submit-btn:hover{
background:#17386d;
}

.submit-btn:disabled{
    opacity:.7;
    cursor:not-allowed;
}

#contactFormMsg .alert{
    border-radius:10px;
    font-size:15px;
    padding:14px 18px;
}

/*==================================================
    CONTACT SECTION TRUST BADGES
==================================================*/

.contact-trust-badges{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:16px;
    margin:-20px 0 45px;
}

.contact-trust-item{
    display:flex;
    align-items:center;
    gap:8px;
    background:#fff;
    border:1px solid #e5eef8;
    color:#214c95;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.contact-trust-item i{
    color:#00b4c6;
}

.contact-quote-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:20px;
    background:#214c95;
    color:#fff !important;
    border:2px solid #214c95;
    padding:12px 26px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.contact-quote-btn:hover{
    background:#17386d;
    border-color:#17386d;
    transform:translateY(-2px);
}

@media(max-width:768px){
    .contact-trust-badges{
        margin-top:0;
    }
}

/* FOOTER */

footer{
background:#17386d;
color:white;
padding:70px 0 25px;
}

footer h4{
margin-bottom:20px;
font-weight:600;
}

footer p{
margin-bottom:12px;
}

footer a{
color:white;
text-decoration:none;
transition:0.3s;
}

footer a:hover{
color:#27d1c2;
padding-left:5px;
}

/* WHATSAPP */

.whatsapp-btn{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25D366;
color:white;
font-size:30px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
z-index:999;
box-shadow:0 5px 15px rgba(0,0,0,.3);
}

/* TOP BUTTON */

#topBtn{
position:fixed;
bottom:95px;
right:25px;
width:55px;
height:55px;
border:none;
background:#214c95;
color:white;
border-radius:50%;
cursor:pointer;
display:none;
font-size:20px;
z-index:999;
}

/* ANIMATION */

.feature-card,
.certificate-card{
animation:fadeUp 1s ease;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(40px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/*==============================
        MAP
==============================*/

.map-section{
    padding:100px 0;
    background:#fff;
}

.map-box{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

/*==============================
      WHATSAPP CHAT
==============================*/

.whatsapp-chat{
    position:fixed;
    bottom:25px;
    right:25px;
    background:#25D366;
    color:white;
    padding:15px 22px;
    border-radius:50px;
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
    z-index:9999;
    transition:.3s;
}

.whatsapp-chat:hover{
    transform:translateY(-5px);
    color:white;
}

.whatsapp-chat i{
    font-size:28px;
}

@media(max-width:768px){

    .whatsapp-chat{
        width:60px;
        height:60px;
        border-radius:50%;
        padding:0;
        justify-content:center;
    }
    .whatsapp-chat span{
        display:none;
    }

}

.related-card{
    transition:.35s;
    border-radius:15px;
    overflow:hidden;
}

.related-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.product-image{
    transition:.4s;
    cursor:zoom-in;
}

.product-image:hover{
    transform:scale(1.05);
}

.share-btn{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

/*==================================================
        STICKY ACTION BUTTONS (WhatsApp / Call)
==================================================*/

.sticky-buttons{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;
}

.sticky-buttons a{
    display:block;
    width:60px;
    height:60px;
    margin-top:10px;
    border-radius:50%;
    text-align:center;
    line-height:60px;
    color:#fff !important;
    font-size:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.sticky-buttons .sticky-whatsapp{
    background:#25D366 !important;
}

.sticky-buttons .sticky-call{
    background:#214c95 !important;
}

/* product-details page needs the sticky buttons positioned a bit higher */
.product-details-page .sticky-buttons{
    bottom:90px;
}

.share-section{
    margin-top:30px;
}

.badge-custom{
    background:#198754;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-size:15px;
}

/*==========================
    PREMIUM SPLASH SCREEN
==========================*/

#loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;
background:white;
z-index:999999;
}

.loader-box{
    position:relative;
    z-index:10;
    text-align:center;
}

#logo{

width:190px;
display:block;
margin:auto;

filter:
drop-shadow(0 0 10px rgba(0,170,255,.3))
drop-shadow(0 0 25px rgba(0,170,255,.35))
drop-shadow(0 0 40px rgba(0,255,200,.2));

animation:logoAnimation 2.5s ease forwards;

}

.loader-box h1{

    margin-top:18px;

    font-size:44px;

    color:#1d4d9f;

    letter-spacing:4px;

    opacity:0;

    animation:titleAnimation 3s ease forwards;

    animation-delay: 1.1s;

}

.loader-box p{

    letter-spacing:8px;

    color:#17b6aa;

    opacity:0;

    animation:titleAnimation 3s ease forwards;

    animation-delay:1.5s;

}

#loader{
    opacity:1;
    visibility:visible;
    transition:opacity .6s ease, visibility .6s ease;
}

#loader.hide{
    opacity:0;
    visibility:hidden;
}


.loading{

    width:240px;

    height:7px;

    background:#dfe7ec;

    border-radius:50px;

    overflow:hidden;

    margin:30px auto;

}

.loading-fill{

    width:0;

    height:100%;

    border-radius:50px;

    background:linear-gradient(90deg,#0d6efd,#20c997,#0dcaf0);

    animation:loadingBar 3s linear forwards;

}

.bg-circle{

position:absolute;

border-radius:50%;

filter:blur(90px);

animation:glowMove 8s ease-in-out infinite alternate;

}

.circle1{

width:380px;

height:380px;

background:#0d6efd;

left:-140px;

top:-120px;

opacity:.28;

}

.circle2{

width:320px;

height:320px;

background:#20c997;

right:-120px;

bottom:-120px;

opacity:.28;

}

.particles span{

position:absolute;

bottom:-60px;

width:12px;

height:12px;

border-radius:50%;

background:linear-gradient(#20c997,#0d6efd);

box-shadow:0 0 12px rgba(13,110,253,.5);

animation:particleMove linear infinite;

}

.particles span:nth-child(odd){
width:8px;
height:8px;
}

.particles span:nth-child(even){
width:14px;
height:14px;
}

.particles span:nth-child(1){left:5%;animation-duration:8s;}
.particles span:nth-child(2){left:13%;animation-duration:7s;}
.particles span:nth-child(3){left:21%;animation-duration:9s;}
.particles span:nth-child(4){left:30%;animation-duration:6.5s;}
.particles span:nth-child(5){left:39%;animation-duration:8.2s;}
.particles span:nth-child(6){left:48%;animation-duration:7.4s;}
.particles span:nth-child(7){left:57%;animation-duration:9.5s;}
.particles span:nth-child(8){left:66%;animation-duration:6.8s;}
.particles span:nth-child(9){left:74%;animation-duration:8.7s;}
.particles span:nth-child(10){left:82%;animation-duration:7.6s;}
.particles span:nth-child(11){left:90%;animation-duration:9.1s;}
.particles span:nth-child(12){left:96%;animation-duration:7.9s;}

@keyframes logoAnimation{

0%{

opacity:0;

transform:
translateY(80px)
scale(.15)
rotate(-180deg);

}

40%{

opacity:1;

transform:
translateY(-10px)
scale(1.18)
rotate(15deg);

}

65%{

transform:
translateY(5px)
scale(.96)
rotate(-8deg);

}

85%{

transform:
translateY(-4px)
scale(1.03)
rotate(4deg);

}

100%{

opacity:1;

transform:
translateY(0)
scale(1)
rotate(0deg);

}

}

@keyframes titleAnimation{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

@keyframes loadingBar{

0%{

width:0;

}

100%{

width:100%;

}

}

@keyframes particleMove{

0%{

transform:
translateY(0)
translateX(0)
scale(.2);

opacity:0;

}

20%{

opacity:1;

}

50%{

transform:
translateY(-50vh)
translateX(25px)
scale(1);

}

100%{

transform:
translateY(-120vh)
translateX(-40px)
scale(1.5);

opacity:0;

}

}

@keyframes glowMove{

0%{

transform:translate(0,0);

}

100%{

transform:translate(70px,50px);

}
}

/*=========================
    Announcement Bar
=========================*/

.announcement-bar{

    width:100%;
    background:linear-gradient(90deg,#0d6efd,#20c997);
    color:#fff;
    overflow:hidden;
    white-space:nowrap;
    padding:12px 0;
    position:relative;
    z-index:99;
    box-shadow:0 4px 15px rgba(0,0,0,.15);

}

.announcement-track{

    display:inline-flex;
    width:max-content;

    animation:marqueeMove 28s linear infinite;

}

.announcement-track span{

    padding-right:120px;
    font-size:17px;
    font-weight:600;
    letter-spacing:.5px;

}

.announcement-bar:hover .announcement-track{

    animation-play-state:paused;

}

@keyframes marqueeMove{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

.pharma-slider{
    background:#f8fbff;
    padding:40px 70px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    margin:40px 0;
}

.product-slide-img{
    width:100%;
    height:320px;
    object-fit:contain;
    background:#fff;
    border-radius:15px;
    padding:20px;
    transition:.4s;
    border:1px solid #e8eef5;
}

.product-slide-img:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:#0d6efd;
    border-radius:50%;
    padding:18px;
}

@media(max-width:768px){

.pharma-slider{
    padding:20px;
}

.product-slide-img{
    height:240px;
    margin-bottom:20px;
}

}


/*=============================
   Heading
=============================*/

.pharma-heading{

    background:linear-gradient(135deg,#f8fcff,#eef8ff);

    padding:70px 20px 40px;

    text-align:center;

}

.pharma-heading span{

    color:#00b4c6;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.pharma-heading h2{

    margin-top:12px;

    font-size:42px;

    color:#143c74;

    font-weight:700;

}

.heading-line{

    width:90px;

    height:4px;

    background:#00b4c6;

    margin:18px auto 25px;

    border-radius:20px;

}

.pharma-heading p{

    max-width:900px;

    margin:auto;

    color:#666;

    line-height:32px;

    font-size:17px;

}

/*==============================
 SKYAURO FEATURE SECTION
==============================*/

.skyauro-feature-area{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin:50px 0;
}

.skyauro-feature-card{
    width:320px;
    background:#ffffff;
    border:1px solid #e5eef8;
    border-radius:15px;
    padding:30px 25px;
    text-align:center;
    transition:0.3s;
}

.skyauro-feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 8px 20px rgba(0,0,0,.10);
}

.skyauro-feature-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#eaf6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.skyauro-feature-card h4{
    font-size:22px;
    font-weight:600;
    color:#0d4c92;
    margin-bottom:15px;
}

.skyauro-feature-card p{
    font-size:15px;
    color:#666;
    line-height:26px;
}

@media(max-width:768px){

.skyauro-feature-card{
    width:100%;
}

}

.custom-toggler{
    border:none;
    background:transparent;
    padding:8px;
    box-shadow:none;
}

.custom-toggler:focus{
    box-shadow:none;
}

.custom-toggler span{
    display:block;
    width:30px;
    height:3px;
    margin:6px 0;
    background:#214c95;
    border-radius:20px;
    transition:.35s;
}

.custom-toggler[aria-expanded="true"] span:nth-child(1){
    transform:rotate(45deg) translate(7px,6px);
}

.custom-toggler[aria-expanded="true"] span:nth-child(2){
    opacity:0;
}

.custom-toggler[aria-expanded="true"] span:nth-child(3){
    transform:rotate(-45deg) translate(7px,-6px);
}

/*=========================================
    PRODUCTS STRIP (home marquee, small cards)
=========================================*/

.products-strip{
    padding:80px 0;
    background:#f8fbff;
    overflow:hidden;
}

.products-strip .section-heading{
    text-align:center;
    margin-bottom:50px;
}

.products-strip .section-heading span{
    color:#00bcd4;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.products-strip .section-heading h2{
    font-size:42px;
    color:#214c95;
    margin:10px 0;
    font-weight:700;
}

.products-strip .section-heading p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.product-marquee{
    overflow:hidden;
    width:100%;
}

.products-strip .product-track{

    display:flex;

    gap:25px;

    width:max-content;

    animation:productScroll 28s linear infinite;

}

.product-marquee:hover .product-track{
    animation-play-state:paused;
}

.products-strip .product-card{

    width:230px;

    flex-shrink:0;

    background:#fff;

    border-radius:18px;

    padding:20px;

    text-align:center;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

    cursor:pointer;

}

.products-strip .product-card img{

    width:100%;

    height:200px;

    object-fit:contain;

}

.products-strip .product-card h5{

    margin-top:18px;

    color:#214c95;

    font-size:17px;

    font-weight:600;

}

.products-strip .product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

}

@keyframes productScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

.products-strip .product-card{

    width:170px;

}

.products-strip .product-card img{

    height:140px;

}

.products-strip .section-heading h2{

    font-size:30px;

}

.products-strip .product-track{

    animation-duration:20s;

}
}

#hero,
#about,
#why,
#contact{
    scroll-margin-top: 120px;
}

.sidebar h2{
    color:#00d1ff;
    font-weight:700;
    margin-bottom:30px;
}

.sidebar a{
    display:block;
    color:#fff;
    text-decoration:none;
    padding:12px 15px;
    margin-bottom:8px;
    border-radius:8px;
    transition:.3s;
}

.sidebar a:hover{
    background:#00d1ff;
    color:#111827;
}

.product-title{

font-size:20px;
font-weight:700;

}

.product-description{

font-size:15px;

}

.position-relative{
    position:relative;
}

.position-relative #suggestions{

position:absolute;

top:100%;

left:0;
right:0;

background:#fff;

border:1px solid #ddd;

border-top:none;

border-radius:0 0 10px 10px;

display:none;

max-height:300px;

overflow-y:auto;

z-index:99999;

box-shadow:0 10px 20px rgba(0,0,0,.12);

}

.position-relative .search-item{

display:block;

padding:12px 18px;

text-decoration:none;

color:#333;

border-bottom:1px solid #eee;

cursor:pointer;

}

.position-relative .search-item:hover{

background:#0d6efd;

color:#fff;

}

/*=========================================
        FEATURED PRODUCTS (larger grid cards)
=========================================*/

.featured-products{
    padding:90px 0;
    background:linear-gradient(180deg,#ffffff,#f4f9ff);
    overflow:hidden;
}

.featured-products .section-heading{
    text-align:center;
    margin-bottom:50px;
}

.featured-products .section-heading span{
    color:#11b4d6;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.featured-products .section-heading h2{

    margin-top:10px;

    font-size:42px;

    font-weight:700;

    background:linear-gradient(90deg,#0d6efd,#11b4d6);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.featured-products .section-heading p{
    color:#777;
    margin-top:10px;
}

.product-slider{
    overflow:hidden;
    position:relative;
}

.featured-products .product-track{
    display:flex;
    gap:25px;
    animation:productScrollLarge 28s linear infinite;
    width:max-content;
}

.product-slider:hover .product-track{
    animation-play-state:paused;
}

.featured-products .product-card{
    width:250px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #eef3f9;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    flex-shrink:0;
    cursor:pointer;
}

.featured-products .product-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.featured-products .product-card img{
    width:100%;
    height:220px;
    object-fit:contain;
    background:#fff;
    padding:20px;
    transition:.5s;
}

.featured-products .product-card:hover img{
    transform:scale(1.08);
}

.product-info{
    padding:20px;
    text-align:center;
}

.product-info h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:8px;
    color:#234b8f;
}

.product-info p{
    color:#666;
    margin-bottom:18px;
}

.view-btn{

    display:inline-block;

    background:#0d6efd;

    color:#fff;

    padding:11px 24px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.view-btn:hover{
    background:#11b4d6;
    color:#fff;
}

@keyframes productScrollLarge{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

.featured-products .product-card{
    width:190px;
}

.featured-products .product-card img{
    height:170px;
}

.featured-products .section-heading h2{
    font-size:30px;
}

}

/*==================================================
    CUSTOMER REVIEWS SECTION
==================================================*/

.reviews-section{
    background:#f8fbff;
}

.reviews-overall-badge{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-top:20px;
}

.reviews-overall-num{
    font-size:46px;
    font-weight:700;
    color:#214c95;
    line-height:1;
}

.home-review-card{
    background:#fff;
    border-radius:16px;
    padding:28px 25px;
    height:100%;
    box-shadow:0 8px 22px rgba(0,0,0,.06);
    transition:.3s;
}

.home-review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.home-review-text{
    color:#444;
    font-size:15px;
    line-height:26px;
    margin:15px 0 20px;
    font-style:italic;
}

.home-review-footer{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    border-top:1px solid #f0f0f0;
    padding-top:15px;
    font-size:13px;
}

.home-review-footer strong{
    color:#214c95;
    font-size:15px;
}

.home-review-footer a{
    color:#00b4c6;
    text-decoration:none;
    font-size:13px;
}

.home-review-footer a:hover{
    text-decoration:underline;
}

.review-date-small{
    color:#999;
    white-space:nowrap;
}

@media(max-width:768px){

    .reviews-overall-badge{
        flex-direction:column;
        gap:5px;
    }

    .home-review-card{
        padding:22px 18px;
    }

}

/*==================================================
    GLOBAL REACH / EXPORT COUNTRIES SECTION
==================================================*/

.global-reach-section{
    background:linear-gradient(180deg,#ffffff,#f4f9ff);
}

.country-chip-wrap{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
    max-width:1000px;
    margin:20px auto 0;
}

.country-chip{
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    border:1px solid #e5eef8;
    padding:12px 20px;
    border-radius:14px;
    font-size:15px;
    font-weight:600;
    color:#214c95;
    box-shadow:0 6px 18px rgba(0,0,0,.05);
    transition:.3s;
}

.country-chip:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,.1);
}

.country-flag{
    font-size:22px;
}

.country-chip-more{
    background:#214c95;
    color:#fff;
}

.global-reach-cta{
    display:inline-block;
    background:#214c95;
    color:#fff !important;
    border:2px solid #214c95;
    padding:13px 32px;
    border-radius:50px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.global-reach-cta:hover{
    background:#17386d;
    border-color:#17386d;
    transform:translateY(-3px);
}

@media(max-width:768px){

    .country-chip{
        padding:10px 16px;
        font-size:14px;
    }

    .country-flag{
        font-size:18px;
    }

}

/*==================================================
    GET EXPORT QUOTE MODAL
==================================================*/

#quoteModal .modal-content{
    border-radius:18px;
    border:none;
    overflow:hidden;
}

#quoteModal .modal-header{
    background:#214c95;
    color:#fff;
    border-bottom:none;
}

#quoteModal .modal-title{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
}

#quoteModal .btn-close{
    filter:invert(1);
}

#quoteModal .modal-body{
    padding:28px;
}

#quoteFormMsg .alert{
    border-radius:10px;
    font-size:14px;
    padding:12px 16px;
}
/* SPAM PROTECTION: hides the honeypot field from real visitors while
   keeping it in the DOM so basic bots still fill it in. Uses
   positioning instead of display:none because some bots skip
   display:none fields on purpose. */
.honeypot-field{
    position:absolute;
    left:-9999px;
    top:-9999px;
    width:1px;
    height:1px;
    opacity:0;
    pointer-events:none;
}

/*==================================================
    PRODUCTS PAGE - ADD THIS BLOCK TO style.css
    (uses the same navy #214c95 / teal #00b4c6 brand
    palette as the rest of the site, instead of the
    default Bootstrap blue)
==================================================*/

/*---------- Filter / Search bar ----------*/
.filter-bar{
    background:#fff;
    padding:22px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(33,76,149,.08);
    margin-top:-45px;
    position:relative;
    z-index:10;
    border:1px solid #eef3f9;
}

.filter-bar .filter-icon{
    position:absolute;
    top:50%;
    left:18px;
    transform:translateY(-50%);
    color:#9aa9c2;
    font-size:16px;
}

.filter-bar input.filter-input{
    padding-left:44px;
}

.filter-input{
    border:1px solid #e0e7f1;
    border-radius:12px;
    height:52px;
}

.filter-input:focus{
    border-color:#214c95;
    box-shadow:0 0 0 4px rgba(33,76,149,.1);
}

.filter-btn-primary{
    height:52px;
    background:#214c95;
    color:#fff;
    border-radius:12px;
    font-weight:600;
    border:none;
    transition:.3s;
}

.filter-btn-primary:hover{
    background:#17386d;
    color:#fff;
    transform:translateY(-2px);
}

.filter-btn-reset{
    height:52px;
    background:#eef3f9;
    color:#214c95;
    border-radius:12px;
    border:none;
    transition:.3s;
}

.filter-btn-reset:hover{
    background:#dfe9f7;
    color:#17386d;
}

.filter-bar .search-suggestions{
    position:absolute;
    top:calc(100% + 6px);
    left:0;
    width:100%;
    background:#fff;
    border-radius:12px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    display:none;
    overflow:hidden;
    z-index:9999;
}

.filter-bar .search-item{
    display:block;
    padding:12px 18px;
    color:#333;
    text-decoration:none;
    border-bottom:1px solid #eee;
    transition:.25s;
}

.filter-bar .search-item:last-child{ border-bottom:none; }

.filter-bar .search-item:hover{
    background:#214c95;
    color:#fff;
}

/*---------- Result count / empty state ----------*/
.catalog-count{
    color:#143c74;
    font-weight:600;
    font-size:20px;
}

.empty-state{
    background:#fff;
    border-radius:18px;
    padding:60px 30px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.empty-state i{
    font-size:50px;
    color:#c7d4e8;
    margin-bottom:18px;
}

.empty-state h5{
    color:#214c95;
    font-weight:700;
    margin-bottom:8px;
}

.empty-state p{
    color:#777;
}

/*---------- Product catalog card ----------*/
.pcard{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    height:100%;
    border:1px solid #edf2f7;
    box-shadow:0 10px 25px rgba(15,40,90,.06);
    transition:.35s;
    display:flex;
    flex-direction:column;
}

.pcard:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(15,40,90,.14);
    border-color:#dbe6f5;
    transform:translateZ(0);
    will-change:transform;
    backface-visibility:hidden;
}

.pcard-image{
    position:relative;
    background:#fff;
}

.pcard-image img{
    width:100%;
    height:230px;
    object-fit:contain;
    background:#fff;
    padding:20px;
    transition:.4s;
}

.pcard:hover .pcard-image img{
    transform:scale(1.05);
}

.pcard-badge{
    position:absolute;
    top:14px;
    left:14px;
    background:#214c95;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:11px;
    font-weight:700;
    letter-spacing:.4px;
    text-transform:uppercase;
}

.pcard-featured{
    position:absolute;
    top:14px;
    right:14px;
    background:#ffd166;
    color:#7a5200;
    padding:5px 12px;
    border-radius:30px;
    font-size:11px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:5px;
}

.pcard-body{
    padding:20px 22px 22px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.pcard-title{
    font-size:19px;
    font-weight:700;
    color:#0b2341;
    margin-bottom:10px;
    min-height:48px;
}

.pcard-desc{
    color:#697585;
    font-size:14px;
    line-height:24px;
    min-height:70px;
    margin-bottom:16px;
}

.pcard-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-top:auto;
    border-top:1px solid #f0f3f8;
    padding-top:16px;
}

.pcard-btn{
    background:#214c95;
    color:#fff;
    text-decoration:none;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
    display:inline-flex;
    align-items:center;
}

.pcard-btn:hover{
    background:#17386d;
    color:#fff;
    padding-right:22px;
}

.pcard-quote{
    width:42px;
    height:42px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eaf6ff;
    color:#00b4c6;
    border-radius:50%;
    font-size:16px;
    transition:.3s;
}

.pcard-quote:hover{
    background:#00b4c6;
    color:#fff;
}

/*---------- Pagination ----------*/
.products-pagination .page-link{
    border:none;
    margin:0 4px;
    border-radius:10px;
    color:#214c95;
    font-weight:600;
    min-width:42px;
    text-align:center;
}

.products-pagination .page-item.active .page-link{
    background:#214c95;
    color:#fff;
}

.products-pagination .page-item.disabled .page-link{
    color:#c3cede;
}

.products-pagination .page-link:hover{
    background:#eaf1fc;
    color:#17386d;
}

.products-pagination .page-item.active .page-link:hover{
    background:#17386d;
    color:#fff;
}

.pcard-price{
    margin:12px 0;
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.pcard-price .price{
    font-size:20px;
    font-weight:700;
    color:#17386d;
}

.pcard-price .mrp{
    color:#888;
    font-size:14px;
    text-decoration:none;
}

.pcard-price .mrp del{
    color:#888;
}

.pcard-price .discount{
    color:#1aa34a;
    font-size:13px;
    font-weight:700;
}


/*=====================================
        HERO REPEAT SECTION
======================================*/

.hero-repeat{
    background:#fff;
    padding:20px 0;
    margin-top:-15px;
    position:relative;
    z-index:20;
}

.hero-repeat .container{
    background:#fff;
    border-radius:22px;
    padding:22px 30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #eef3fb;
}

/* Buttons */

.hero-repeat .hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.hero-repeat .main-btn,
.hero-repeat .outline-btn{
    min-width:220px;
    height:60px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:600;
    text-decoration:none;
    transition:.35s;
}

.hero-repeat .main-btn{
    background:#214c95;
    color:#fff;
}

.hero-repeat .main-btn:hover{
    background:#173d79;
    transform:translateY(-4px);
}

.hero-repeat .outline-btn{
    background:linear-gradient(90deg,#12c2e9,#0b8fdc);
    color:#fff;
}

.hero-repeat .outline-btn:hover{
    transform:translateY(-4px);
}

/* Trust Badges */

.hero-repeat .hero-trust-badges{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-repeat .hero-trust-item{
    background:#f6f9ff;
    border:1px solid #e5edf8;
    padding:12px 22px;
    border-radius:40px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:500;
    color:#214c95;
    transition:.3s;
}

.hero-repeat .hero-trust-item i{
    font-size:18px;
    color:#16b6d9;
}

.hero-repeat .hero-trust-item:hover{
    background:#214c95;
    color:#fff;
    transform:translateY(-3px);
}

.hero-repeat .hero-trust-item:hover i{
    color:#fff;
}

/* Right Slider */

.hero-repeat .hero-slider{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
}

.hero-repeat .hero-track{
    display:flex;
    gap:18px;
}

.hero-repeat .hero-product{
    display:flex;
    gap:18px;
}

.hero-repeat .hero-med-img{
    width:250px;
    height:170px;
    object-fit:cover;
    border-radius:16px;
    background:#fff;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.hero-repeat .hero-med-img:hover{
    transform:translateY(-6px) scale(1.03);
}

/* Responsive */

@media(max-width:991px){

.hero-repeat{
    padding:30px 0;
}

.hero-repeat .container{
    padding:20px;
}

.hero-repeat .hero-buttons{
    justify-content:center;
}

.hero-repeat .hero-trust-badges{
    justify-content:center;
}

.hero-repeat .hero-slider{
    margin-top:30px;
}

.hero-repeat .hero-med-img{
    width:180px;
    height:130px;
}

}

/*==================================================
            FEATURED PRODUCTS V2 (fp-*)
==================================================*/

.featured-products-v2{
    padding:70px 0;
    background:#f4f7fb;
}

.featured-products-v2 .section-heading{
    margin-bottom:30px;
}

.featured-products-v2 .section-heading span{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#14b8a6;
    font-weight:600;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.featured-products-v2 .section-heading span::before,
.featured-products-v2 .section-heading span::after{
    content:"";
    width:28px;
    height:2px;
    background:#14b8a6;
    display:inline-block;
}

.featured-products-v2 .section-heading h2{
    font-size:34px;
    font-weight:700;
    color:#0b2d6b;
    margin:10px 0 6px;
}

.featured-products-v2 .section-heading p{
    color:#6b7684;
    font-size:15px;
    margin:0;
}

/* ---------------- PRODUCT GRID (full-width, 4 per row) ---------------- */

.fp-grid-wrap{
    position:relative;
}

.fp-page{
    display:none;
}

.fp-page.active{
    display:block;
}

.fp-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.fp-card{
    position:relative;
    background:#fff;
    border:1px solid #eef1f6;
    border-radius:14px;
    overflow:hidden;
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.fp-card:hover{
    box-shadow:0 14px 30px rgba(11,45,107,.12);
    transform:translateY(-4px);
}

.fp-card-tag{
    position:absolute;
    top:14px;
    left:0;
    background:#0b2d6b;
    color:#fff;
    font-size:11.5px;
    font-weight:600;
    padding:5px 14px 5px 12px;
    border-radius:0 20px 20px 0;
    z-index:2;
}

.fp-wish-btn{
    position:absolute;
    top:12px;
    right:12px;
    width:32px;
    height:32px;
    border-radius:50%;
    background:#fff;
    border:1px solid #eef1f6;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#8a94a3;
    font-size:14px;
    z-index:2;
    cursor:pointer;
    transition:.2s;
}

.fp-wish-btn:hover{
    color:#e2455f;
    border-color:#f3c6ce;
}

.fp-card-img{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fbfcfe;
    padding:22px 16px 8px;
}

.fp-card-img img{
    max-width:100%;
    height:140px;
    object-fit:contain;
}

.fp-card-body{
    padding:12px 14px 16px;
    flex:1;
    display:flex;
    flex-direction:column;
}

.fp-card-cat{
    display:inline-block;
    background:#e8f0fb;
    color:#2f6fdb;
    font-size:11px;
    font-weight:700;
    letter-spacing:.4px;
    padding:4px 10px;
    border-radius:5px;
    margin-bottom:10px;
    width:fit-content;
}

.fp-card-title{
    font-size:14.5px;
    font-weight:700;
    color:#0b2d6b;
    margin-bottom:5px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.fp-card-desc{
    font-size:12px;
    color:#8a94a3;
    line-height:1.5;
    margin-bottom:10px;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.fp-card-price{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:16px;
}

.fp-mrp{
    color:#888;
    text-decoration:line-through;
    font-size:14px;
    margin-left:6px;
}

.fp-price{
    font-size:20px;
    font-weight:700;
    color:#17386d;
}

.fp-discount{
    background:#e3f9f2;
    color:#0f9d8f;
    font-size:11.5px;
    font-weight:700;
    padding:4px 10px;
    border-radius:20px;
}

.fp-card-actions{
    display:flex;
    gap:8px;
    margin-bottom:14px;
}

.fp-btn-outline,
.fp-btn-solid{
    flex:1;
    text-align:center;
    font-size:12.5px;
    font-weight:600;
    padding:9px 8px;
    border-radius:8px;
    text-decoration:none;
    transition:.25s;
}

.fp-btn-outline{
    border:1.5px solid #0b2d6b;
    color:#0b2d6b;
    background:#fff;
}

.fp-btn-outline:hover{
    background:#0b2d6b;
    color:#fff;
}

.fp-btn-solid{
    background:#0b2d6b;
    color:#fff;
    border:1.5px solid #0b2d6b;
}

.fp-btn-solid:hover{
    background:#092351;
    color:#fff;
}

.fp-card-icons{
    display:flex;
    align-items:center;
    justify-content:space-around;
    border-top:1px solid #eef1f6;
    padding-top:14px;
}

.fp-card-icons a,
.fp-card-icons button{
    background:none;
    border:none;
    color:#8a94a3;
    font-size:14px;
    cursor:pointer;
    transition:.2s;
}

.fp-card-icons a:hover,
.fp-card-icons button:hover{
    color:#0b2d6b;
}

/* ---------------- NAV ARROWS ---------------- */

.fp-nav{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:26px;
}

.fp-nav-btn{
    width:40px;
    height:40px;
    border-radius:50%;
    border:1.5px solid #d7deea;
    background:#fff;
    color:#0b2d6b;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.25s;
}

.fp-nav-btn:hover{
    background:#0b2d6b;
    border-color:#0b2d6b;
    color:#fff;
}

/* ---------------- LEFT INFO SIDEBAR ---------------- */

.fp-sidebar{
    background:#eef3fb;
    border-radius:16px;
    padding:26px 20px;
    height:100%;
    display:flex;
    flex-direction:column;
}

.fp-sidebar-item{
    text-align:center;
    padding:18px 0;
    border-bottom:1px solid #dde6f3;
}

.fp-sidebar-item:first-child{
    padding-top:4px;
}

.fp-sidebar-icon{
    width:52px;
    height:52px;
    margin:0 auto 14px;
    border-radius:50%;
    background:#0b2d6b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
}

.fp-sidebar-item h5{
    font-size:14.5px;
    font-weight:700;
    color:#0b2d6b;
    margin:0 0 8px;
    line-height:1.3;
}

.fp-sidebar-item p{
    font-size:12.5px;
    color:#8a94a3;
    margin:0;
    line-height:1.5;
}

.fp-sidebar-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#0b2d6b;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    padding:13px 18px;
    border-radius:8px;
    margin-top:20px;
    transition:.25s;
}

.fp-sidebar-btn:hover{
    background:#14b8a6;
    color:#fff;
}

@media(max-width:991px){

    .fp-sidebar{
        margin-bottom:24px;
    }

}

/* ---------------- TOP INFO STRIP (replaces old left sidebar) ---------------- */

.fp-info-strip{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:18px;
    background:#fff;
    border:1px solid #eef1f6;
    border-radius:14px;
    padding:18px 26px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.fp-info-item{
    display:flex;
    align-items:center;
    gap:12px;
    flex:1;
    min-width:200px;
}

.fp-info-icon{
    width:44px;
    height:44px;
    flex-shrink:0;
    border-radius:50%;
    background:#eaf1fc;
    color:#0b2d6b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
}

.fp-info-item h5{
    font-size:14px;
    font-weight:700;
    color:#0b2d6b;
    margin:0 0 2px;
}

.fp-info-item p{
    font-size:12.5px;
    color:#8a94a3;
    margin:0;
    line-height:1.4;
}

.fp-info-divider{
    width:1px;
    height:38px;
    background:#eef1f6;
}

@media(max-width:991px){

    .fp-info-strip{
        justify-content:center;
    }

    .fp-info-divider{
        display:none;
    }

}

/* ---------------- TRUST STRIP ---------------- */

.fp-trust-strip{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#eef3fa;
    border-radius:14px;
    padding:22px 30px;
    margin-top:34px;
    flex-wrap:wrap;
    gap:20px;
}

.fp-trust-strip-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:13.5px;
    font-weight:600;
    color:#0b2d6b;
}

.fp-trust-strip-item i{
    font-size:20px;
    color:#0b2d6b;
}

/* ---------------- RIGHT EXPORT PANEL ---------------- */

.fp-export-panel{
    position:relative;
    background:linear-gradient(160deg,#0b2d6b 0%,#0f4fa8 100%);
    border-radius:16px;
    padding:22px 16px;
    color:#fff;
    height:100%;
    overflow:hidden;
}

.fp-export-globe{
    font-size:26px;
    background:rgba(255,255,255,.15);
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
}

.fp-export-panel h3{
    font-size:20px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:14px;
}

.fp-export-panel p{
    font-size:13px;
    color:#dbe6fb;
    line-height:1.7;
    margin-bottom:26px;
}

.fp-export-stats{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:30px;
}

.fp-export-stat{
    display:flex;
    align-items:center;
    gap:14px;
}

.fp-export-stat i{
    font-size:18px;
    background:rgba(255,255,255,.15);
    width:38px;
    height:38px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.fp-export-stat strong{
    display:block;
    font-size:17px;
    font-weight:700;
}

.fp-export-stat span{
    font-size:12.5px;
    color:#c9d8f5;
}

.fp-export-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#14b8a6;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:14.5px;
    padding:13px 22px;
    border-radius:8px;
    width:100%;
    transition:.25s;
}

.fp-export-btn:hover{
    background:#0f9d8f;
    color:#fff;
}

/* ---------------- RESPONSIVE ---------------- */

@media(max-width:1199px){

    .fp-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:991px){

    .fp-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .fp-export-panel{
        margin-top:24px;
    }

}

@media(max-width:767px){

    .featured-products-v2{
        padding:50px 0;
    }

    .fp-grid{
        grid-template-columns:1fr;
    }

    .fp-trust-strip{
        justify-content:center;
    }

    .fp-card-img img{
        height:150px;
    }

}
/*==================================================
        PRODUCTS PAGE (merged from products-premium.css)
==================================================*/

/* Products page premium visual layer — loaded after style.css */

.products-page .catalog-count {
    font-weight: 600;
    color: #17386d;
}

.products-page .filter-bar {
    box-shadow: 0 8px 24px rgba(23, 56, 109, 0.08);
}

.products-page .pcard {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.products-page .pcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(23, 56, 109, 0.12);
}

.products-page .empty-state i {
    font-size: 48px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.products-page .products-pagination .page-link {
    border-radius: 8px;
    margin: 0 3px;
    color: #214c95;
}

.products-page .products-pagination .page-item.active .page-link {
    background: #214c95;
    border-color: #214c95;
}

@media (max-width: 767px) {
    .products-page .filter-bar .filter-btn-primary,
    .products-page .filter-bar .filter-btn-reset {
        min-height: 48px;
    }
}