@charset "UTF-8";

/* =========================
GENERAL
========================= */

.service-content img{
    max-width:100%;
    height:auto;
    display:block;
    margin:10px 0;
}

.service-short-desc{
    font-size:17px;
    line-height:1.9;
    color:#667085;
    margin-bottom:20px;
}

/* =========================
MAIN SERVICE IMAGE
========================= */

.service-main-img{
    width:100%;
    max-width:450px;
    height:450px;
    object-fit:contain;
    display:block;
    margin:auto;
}

/* =========================
CATEGORY LINKS
========================= */

.category-links{
    margin-top:40px;
    text-align:center;
}

.category-links h4{
    font-size:28px;
    font-weight:700;
    color:#12263a;
    margin-bottom:22px;
}

.category-links a{
    display:inline-block;
    margin:4px;
    padding:6px 14px;
    background:#f7f7f7;
    border:1px solid #ddd;
    border-radius:20px;
    color:#333;
    font-size:14px;
    text-decoration:none;
    transition:all .25s ease;
}

.category-links a:hover{
    background:#00a79d;
    border-color:#00a79d;
    color:#fff;
}

/* =========================
SERVICE ACTION BUTTONS
========================= */

.product-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:18px;
}

.product-action{
    flex:1;
    min-width:120px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:10px 8px;
    border-radius:10px;

    background:#f7f7f7;
    text-decoration:none;

    transition:transform .25s ease,
               box-shadow .25s ease;
}

.product-action:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(0,0,0,0.08);
}

.product-action img{
    height:26px;
    width:auto;
    margin-bottom:6px;
    display:block;
}

.product-action span{
    font-size:12px;
    font-weight:600;
    line-height:1.3;
    text-align:center;
}

/* =========================
ACTION COLORS
========================= */

.action-whatsapp{
    color:#25D366;
}

.action-share{
    color:#007bff;
}

.action-video{
    color:#ff0000;
}

.action-catalogue{
    color:#d9534f;
}

/* =========================
RELATED SERVICES GRID
========================= */

.related-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:12px;
}

/* =========================
RELATED CARD
========================= */

.related-card{
    position:relative;
    background:#fff;
    border-radius:12px;
    padding:10px;
    text-align:center;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
    transition:0.3s;
}

.related-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* =========================
RELATED IMAGE
========================= */

.related-img{
    width:100%;
    height:120px;
    object-fit:contain;
}

/* =========================
RELATED TITLE
========================= */

.related-title{
    display:block;
    font-size:13px;
    font-weight:600;
    margin-top:8px;
    color:#000;
    text-decoration:none;
    line-height:1.5;
    min-height:42px;
}

.related-title:hover{
    color:#00a79d;
}

/* =========================
BADGE
========================= */

.card-badge{
    position:absolute;
    top:8px;
    left:8px;

    padding:3px 7px;
    border-radius:5px;

    background:#00a79d;
    color:#fff;

    font-size:10px;
    font-weight:600;
    z-index:2;
}

/* =========================
CARD OVERLAY
========================= */

.card-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,0.5);

    opacity:0;
    transition:opacity .3s ease;

    pointer-events:none;
}

.related-card:hover .card-overlay{
    opacity:1;
}

/* =========================
VIEW BUTTON
========================= */

.view-btn{
    padding:6px 12px;
    border-radius:20px;

    background:#fff;
    color:#000;

    font-size:12px;
    font-weight:600;
    text-decoration:none;

    pointer-events:auto;
}

/* =========================
PREMIUM SERVICE HIGHLIGHT
========================= */

.premium-service-highlight{
    background:#f8fcfc;
    position:relative;
    overflow:hidden;
}

.premium-highlight-box{
    background:#fff;
    border-radius:28px;
    padding:60px 50px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
    text-align:center;
    border:1px solid rgba(0,167,157,0.08);
    position:relative;
}

.highlight-badge{
    display:inline-block;
    background:rgba(0,167,157,0.12);
    color:#00a79d;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
}

.highlight-title{
    font-size:46px;
    line-height:1.2;
    font-weight:700;
    color:#12263a;
    margin-bottom:22px;
}

.highlight-subtitle{
    max-width:950px;
    margin:0 auto;
    color:#667085;
    font-size:18px;
    line-height:1.9;
}

.highlight-features{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

.highlight-feature{
    background:#f4fffd;
    border:1px solid rgba(0,167,157,0.12);
    padding:14px 22px;
    border-radius:40px;
    font-size:15px;
    font-weight:500;
    color:#344054;
}

.highlight-feature span{
    color:#00a79d;
    font-weight:700;
    margin-right:6px;
}

/* =========================
RELATED SERVICES HEADING
========================= */

.related-services-heading{
    max-width:850px;
    margin:0 auto;
}

.section-badge{
    display:inline-block;
    background:rgba(0,167,157,0.12);
    color:#00a79d;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.section-title{
    font-size:42px;
    font-weight:700;
    color:#12263a;
    margin-bottom:18px;
}

.section-subtitle{
    font-size:17px;
    line-height:1.8;
    color:#667085;
}

/* =========================
LAYOUT FIXES
========================= */

#services2{
    margin-top:0 !important;
    padding-top:10px !important;
}

#services2 .row{
    margin-top:0 !important;
}

#services2 h1,
#services2 h2,
#services2 h3{
    margin-top:0 !important;
}

/* =========================
TABLET
========================= */

@media(max-width:992px){

.related-grid{
    grid-template-columns:repeat(3,1fr);
}

.service-main-img{
    height:350px;
}

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.product-action{
    flex:48%;
}

.service-main-img{
    height:320px;
}

.related-grid{
    grid-template-columns:repeat(2,1fr);
}

.related-title{
    font-size:12px;
}

.related-img{
    height:100px;
}

.premium-highlight-box{
    padding:40px 24px;
}

.highlight-title{
    font-size:32px;
}

.highlight-subtitle{
    font-size:15px;
}

.section-title{
    font-size:30px;
}

.section-subtitle{
    font-size:15px;
}

.highlight-features{
    gap:12px;
}

.highlight-feature{
    font-size:13px;
    padding:12px 18px;
}

.category-links h4{
    font-size:22px;
}

}

/* IMAGE ZOOM */

.zoomable-image{
cursor:zoom-in;
transition:.3s ease;
}

.zoomable-image:hover{
transform:scale(1.02);
}

.image-zoom-modal{

display:none;

position:fixed;

z-index:99999;

left:0;

top:0;

width:100%;

height:100%;

background:
rgba(0,0,0,.92);

backdrop-filter:
blur(5px);

padding:30px;
}

.zoom-modal-content{

display:block;

margin:auto;

max-width:90%;

max-height:90vh;

border-radius:18px;

animation:
zoomIn .25s ease;
}

.zoom-close{

position:absolute;

top:20px;

right:35px;

font-size:48px;

color:#fff;

cursor:pointer;

line-height:1;
}

@keyframes zoomIn{

from{
transform:scale(.85);
opacity:0;
}

to{
transform:scale(1);
opacity:1;
}

}