/* =========================================================
   HERO BANNER
========================================================= */
.inner-hero {
    padding: 140px 0;
    position: relative;
    text-align: center;
    color: #fff;
}

.inner-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.inner-hero p {
    font-size: 18px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */
.heading_center h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #0B3D91;
}

.heading_center p {
    margin: 0 auto 40px;
    text-align: center;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}


/* =========================================================
   SERVICE GRID LAYOUT
========================================================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}


/* =========================================================
   GLASSMORPHISM SERVICE CARD  (STYLE–3)
========================================================= */
.service-box {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    transition: all 0.35s ease;

    display: flex;
    flex-direction: column;
    height: 100%;               /* equal height */
}

.service-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}


/* IMAGE STYLE */
.servc-img-box img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}


/* DETAILS BOX */
.detail-box {
    padding: 24px 24px 30px;
    flex: 1;                     /* Push CTA to bottom */
}

.detail-box h5 {
    font-size: 22px;
    font-weight: 600;
    color: #0B3D91;
    margin-bottom: 10px;
}

.detail-box p {
    font-size: 15px;
    color: #222;
    line-height: 1.65;
    margin-bottom: 18px;
}


/* =========================================================
   CTA SECTION — FIXED AT BOTTOM
========================================================= */
.card-cta-wrapper {
    margin-top: auto;
    padding: 0 24px 28px 24px;    /* consistent spacing */
}

.cta-flex {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;

    flex-wrap: nowrap !important;
    white-space: nowrap;
}


/* =========================================================
   ICON BUTTON
========================================================= */
.icon-btn {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;

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

    border-radius: 14px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;

    transition: all 0.25s ease;
    flex: 0 0 auto;
}

/* WHATSAPP */
.btn-whatsapp {
    background: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
    background: #1fb85b;
    transform: translateY(-2px);
}

/* CONTACT */
.btn-contact {
    background: #0B3D91;
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.35);
}
.btn-contact:hover {
    background: #093174;
    transform: translateY(-2px);
}


/* =========================================================
   CAREER CTA SECTION
========================================================= */
.career-cta {
    background: #0B3D91;
    padding: 70px 0;
    color: #fff;
    text-align: center;
    margin-top: 60px;
}

.career-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.career-cta p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.career-cta .btn-primary {
    background: #fff;
    color: #0B3D91;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s ease;
}
.career-cta .btn-primary:hover {
    background: #e5e5e5;
}


/* =========================================================
   RESPONSIVE FIXES
========================================================= */
@media (max-width: 768px) {

    .inner-hero {
        padding: 100px 0;
    }

    .inner-hero h1 {
        font-size: 30px;
    }

    .inner-hero p {
        font-size: 15px;
    }

    .detail-box h5 {
        font-size: 18px;
    }

    .career-cta h2 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {

    .cta-flex {
        gap: 14px;
    }

    .icon-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        font-size: 20px;
        border-radius: 12px;
    }
}

/* Base floating button style */
.float-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    right: 25px;   /* same right position */
}

/* Hover effect for all icons */
.float-icon:hover {
    transform: scale(1.1);
}

/* WhatsApp */
.whatsapp {
    background-color: #25d366;
    bottom: 25px;
}
.whatsapp:hover {
    background-color: #20b858;
}

/* Facebook */
.facebook {
    background-color: #1877f2;
    bottom: 95px; /* Stack above WhatsApp */
}
.facebook:hover {
    background-color: #0f5fcc;
}

/* Instagram */
.instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, 
                                #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    bottom: 165px; /* Stack above Facebook */
}
.instagram:hover {
    filter: brightness(1.1);
}
