/* HERO */
.service-hero {
    position: relative;
    height: 550px;
    overflow: hidden;

    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
}

/* BOTTOM */
.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/images/dark1.png') center/cover no-repeat;
    z-index: 1;

}

/* MIDDLE (YOUR REQUIRED IMAGE) */
.middle-bg {
    position: absolute;
    inset: 0;
    background: url('/images/dark3.png') center/cover no-repeat;
    z-index: 2;
}

/* TOP */
.service-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/images/dark2.png') center/cover no-repeat;
    z-index: 3;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 4;

    background: rgba(10, 45, 90, 0.9);
    padding: 50px;
    border-radius: 16px;   /* smoother like Figma */
    text-align: center;
    color: #fff;

    max-width: 700px;      /* slightly wider */
    width: 90%;            /* responsive center */
}

.hero-content {
    background: rgba(10, 45, 90, 0.9);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    max-width: 650px;
}

.hero-content h1 {
    font-size: 38px;
}

.hero-content h2 {
    font-size: 42px;
    color: #ffc107;
    margin: 10px 0;
}

.call-btn {
    display: inline-block;
    margin-top: 20px;
    background: #0d6efd;
    padding: 14px 28px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}

/* OUR SERVICES */

.our-services {
    position: relative;
    height: 600px;   /* increase height */
    overflow: hidden;
}

/* BACKGROUND MAP */
.services-bg {
    position: absolute;
    inset: 0;
    background: url('/images/worldback.png') center/cover no-repeat;
    z-index: 1;
}

/* TOP IMAGE (CIRCLES DESIGN IMAGE) */
.services-overlay {
    position: absolute;
    inset: 0;
    background: url('/images/our-services.png') center no-repeat;
    background-size: 70%;   /* 🔥 reduce size here */
    z-index: 2;
}

/* .our-services {
    padding: 70px 20px;
    text-align: center;
} */

.our-services h2 {
    font-size: 34px;
    margin-bottom: 50px;
}

.service-circles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.circle img {
    width: 45px;
    margin-bottom: 8px;
}

/* COLORS */
.pink { border: 4px solid #e91e63; }
.blue { border: 4px solid #2196f3; }
.purple { border: 4px solid #9c27b0; }
.teal { border: 4px solid #009688; }
.dark { border: 4px solid #607d8b; }

/* ---------------------------start service-section---------------------- */

/* SECTION */
.services-map-section {
    padding-bottom: 0;
     padding: 0;
    margin: 0;
}

.our-services {
    padding-top: 40px;
}

.service-section {
    padding: 10px 20px;
    background: #f5f7fa;   /* light background like figma */
}

/* CARD */
.service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    background: #fff;
    border-radius: 16px;
    padding: 30px;

    margin-bottom: 40px;

    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* REVERSE */
.service-card.reverse {
    flex-direction: row-reverse;
}

/* TEXT */
.service-card .text {
    flex: 1;
}


/* IMAGE */
/* IMAGE */
.service-card .image {
    flex: 1;
}
.image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
 
.image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}
 
/* overlay */
.image::after {
    /* content: "View Service"; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
 
    opacity: 0;
    transition: 0.4s ease;
}
 
/* hover effect */
.image:hover img {
    transform: scale(1.1);
}
 
.image:hover::after {
    opacity: 1;
}
 
.service-card img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}
.service-card img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* TAG */
.tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 25px;
    color: #fff;
    font-size: 13px;
    margin-bottom: 10px;
    padding: 8px 16px;
}

/* TAG COLORS */
.tag.pink { background: #e91e63; }
.tag.blue { background: #2196f3; }
.tag.purple { background: #9c27b0; }
.tag.teal { background: #009688; }
.tag.dark { background: #607d8b; }

/* ===== SERVICE TAG STYLE (ALL COLORS) ===== */
.tag {
    display: inline-block;
    font-size: 18px;        /* BIG text */
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 25px;
    color: #fff;
}
/* COLORS */
.tag.pink {
    background-color: #e91e63;
}
.tag.blue {
    background-color: #2196f3;
}
 
.tag.purple {
    background-color: #9c27b0;
}
 
.tag.teal {
    background-color: #009688;
}
 
.tag.dark {
    background-color: #455a64;
}
 


/* TITLE */
.service-card h3 {
    font-size: 32px;   /* 🔥 bigger */
    font-weight: 700;
    margin: 15px 0;
    color: #0b2c5f;
}

/* DESCRIPTION */
.service-card p {
    color: #555;
    line-height: 1.7;
    font-size: 16px;   /* 🔥 improved readability */
}

/* BUTTON (ONLY GREEN) */
/* BUTTON (ONLY GREEN) */
.btn {
    display: inline-flex;          /* use flex */
    align-items: center;           /* vertical center */
    justify-content: center;       /* horizontal center */
    background: #28a745;
    color: #fff;
    padding: 12px 24px;            /* reduced size */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    width: auto;                   /*  prevent full width */
    min-width: 180px;              /* optional consistent size */
    transition: 0.3s ease;
}
 
.btn:hover {
    background: #218838;
    transform: scale(1.05);
}
/* ----------------------------over service-section----------------------------- */

/* ========================= */
/* ❄️ CRYO SECTION */
/* ========================= */
.cryo {
    background: #1f3347;
    color: #fff;
    text-align: center;
    padding: 100px 20px;   /* 🔥 more height */
}

/* HEADING */
.cryo h2 {
    color: #ffc107;
    font-size: 42px;       /* 🔥 big */
    font-weight: 700;      /* 🔥 bold */
    margin-bottom: 20px;
}

/* DESCRIPTION TEXT */
.cryo p {
    font-size: 18px;       /* 🔥 bigger text */
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* BUTTON */
.cryo-btn {
    display: inline-block;
    margin-top: 30px;
    background: #ffffff;
    color: #1f3347;
    padding: 16px 40px;    /* 🔥 bigger */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.cryo-btn:hover {
    background: #ffc107;
    color: #000;
}

/* ==================================over=================================== */

/* ========================= */
/* 📱 RESPONSIVE (MOBILE) */
/* ========================= */
@media (max-width: 768px) {
    .service-hero {
        height: 420px;
        padding: 20px;
    }

    .hero-content {
        padding: 25px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content h2 {
        font-size: 28px;
    }
}

.services-overlay {
    background-size: 70%;  /* desktop */
}

@media (max-width: 1024px) {
    .services-overlay {
        background-size: 80%;
    }
}

@media (max-width: 768px) {
    .our-services {
        height: 400px;
    }

    .services-overlay {
        background-size: 90%;
    }
}


@media (max-width: 992px) {
    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-card.reverse {
        flex-direction: column;
    }

    .service-card .image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .service-section {
        padding: 40px 15px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .cryo {
        padding: 60px 15px;
    }

    .cryo h2 {
        font-size: 28px;
    }

    .cryo p {
        font-size: 15px;
    }

    .cryo-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .tag {
        font-size: 14px;
        padding: 8px 14px;
    }
}
 
/* FORCE OVERRIDE (if any conflict) */
.text .tag {
    font-size: 20px !important;
}