/*-- =================== BANNER SECTION  ==================== --*/

.banner-section {
    margin-top: -100px;
}

.bnr-2 {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-content {
    position: relative;
    z-index: 2;
    margin: auto;
    padding: 20px;
}

.banner-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.banner-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.banner-btn:hover {
    background: var(--second);
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .single-banner {
        height: 65vh;
    }

    .banner-content h1 {
        font-size: 38px;
        line-height: 48px;
    }

    .banner-content p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .single-banner {
        height: 55vh;
        padding: 30px 15px;
    }

    .banner-content h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .banner-content p {
        font-size: 15px;
    }

    .banner-btn {
        font-size: 15px;
        padding: 10px 22px;
    }
}

.banner-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    width: 100%;
}

/* Mobile: बीच में center */
@media (max-width: 768px) {
    .banner-content {
        bottom: 35%;
        transform: translate(-50%, 40%);
    }
}

/*-- ============ Nav Links  ============= --*/

.breadcrumb-wrapper {
    margin: 40px 0;
    padding-left: 60px;
    /* 👈 left se gap */
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #000;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #000;
    padding: 0 8px;
}

.breadcrumb-item.active {
    font-weight: 700;
    color: #001a4d;
}

/* 📱 mobile view */
@media (max-width: 576px) {
    .breadcrumb-wrapper {
        padding-left: 20px;
        /* mobile left gap */
        margin: 20px 0;
    }
}

/*-- =============== NEW SECTION DESIGN ================= --*/

.extraordinary h2 {
    position: relative;
    font-size: 28px;
    /* default for small mobile */
    font-weight: 500;
    margin-bottom: 10px;
}

.extraordinary h2 span {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.extraordinary .para p {
    font-size: 20px;
}

/* Tablet */
@media (min-width: 576px) {
    .extraordinary h2 {
        font-size: 30px;
    }

    .extraordinary h2 span {
        font-size: 30px;
    }


}

/* Small Desktop / Laptop */
@media (min-width: 768px) {
    .extraordinary h2 {
        font-size: 32px;
    }

    .extraordinary h2 span {
        font-size: 32px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .extraordinary h2 {
        font-size: 34px;
        /* fix size */
    }

    .extraordinary h2 span {
        font-size: 34px;
    }
}

@media(max-width:1199.5px) {
    .extraordinary h2 b br {
        display: none !important;
    }
}

.extraordinary .image {
    height: 520px;
    overflow: hidden;
}

.extraordinary .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease-in;

}

.extraordinary .image img:hover {
    transform: scale(1.1);
    overflow: hidden;
    
}

.extraordinary .image img {
    border-top: 7px solid var(--second);
    border-bottom: 7px solid var(--second);
}

.extraordinary .para p {
    font-size: 20px;
}

@media(max-width:576px) {
    .extraordinary .image {
        height: 300px;
    }

    .extraordinary .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .extraordinary .para p {
        font-size: 16px;
    }
}

/* ===== Container ===== */
.buttons {
    margin-top: 30px;
    text-align: left;
}

/* ===== Blob Anchor Button ===== */
.blob-btn {
    z-index: 1;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 46px;
    margin-bottom: 30px;
    /* text-transform: uppercase; */
    font-size: 16px;
    font-weight: bold;
    color: #0505A9;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 30px;
    text-decoration: none;
    transition: color 0.5s;
    display: inline-block !important;

}

/* Border */
.blob-btn::before {
    content: "";
    z-index: 1;
    position: absolute;
    inset: 0;
    border: 2px solid var(--main-colour);
    border-radius: 30px;
}

/* Shadow layer */
.blob-btn::after {
    content: "";
    z-index: -2;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    transition: all 0.3s 0.2s;
}

/* Hover text */
.blob-btn:hover {
    color: #ffffff;
}

.blob-btn:hover::after {
    left: 0;
    top: 0;
    transition: all 0.3s;
}

/* ===== Inner Container ===== */
.blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: #ffffff;
}

/* ===== Blob Wrapper ===== */
.blob-btn__blobs {
    position: relative;
    height: 100%;
    display: block;
    filter: url('#goo');
}

/* ===== Individual Blob ===== */
.blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: var(--main-colour);
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
}

/* Goo support */
@supports (filter: url('#goo')) {
    .blob-btn__blob {
        transform: translate3d(0, 150%, 0) scale(1.4);
    }
}

/* Blob positions */
.blob-btn__blob:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
}

/* Hover animation */
.blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.7);
}

@supports (filter: url('#goo')) {
    .blob-btn:hover .blob-btn__blob {
        transform: translateZ(0) scale(1.4);
    }
}

/* ===== Mail Icon & Text ===== */
.blob-btn i,
.blob-btn .email-text {
    color: var(--main-colour);
    transition: color 0.5s;
    position: relative;
    z-index: 2;
}

.blob-btn:hover i,
.blob-btn:hover .email-text {
    color: #ffffff;
}

/* ===== SVG GAP FIX ===== */
svg {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ===== Mobile Responsive ===== */
/* @media (max-width: 768px) {
    .blob-btn {
        width: 100%;
        justify-content: flex-start;
    }
} */




.training-enquiries {
    background-color: var(--second);
}

.training-enquiries .trai{
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 10px;
}

.info-box{
    padding: 25px 22px;
    border-radius: 8px;
    background-color: #f2f7f5;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .25);
}

.info-box:hover{
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .25);
}

.info-box h5{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.training-enquiries h2 {
    color: var(--main-colour);
    font-weight: 700;
}

.inner-text {
    font-weight: 600;
    margin-top: 25px;
    background-color: var(--white);
    border-radius: 12px;
    padding: 20px;
    border: 2px solid rgb(205, 205, 205);
    min-height: 470px;
}

@media (max-width: 991px) {
    .inner-text {
        min-height: auto;
    }
}


/* Mobile responsive */
/* @media (max-width: 991px) {
    .inner-text {
        height: auto;
    }
} */

.training-enquiries .content-text {
    font-size: 1rem;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

.training-enquiries .card {
    border-radius: 12px;
    border: 2px solid var(--second);
    transition: transform 0.3s, box-shadow 0.3s;
}

.training-enquiries .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.training-enquiries .card a {
    color: var(--main-colour);
    font-weight: 500;
}

.training-enquiries .card-title {
    color: #000;
    font-weight: 600;
}

.training-enquiries .image-wrap {
    width: 100%;
    height: 100%;                 /* poora col-6 fill kare */
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-enquiries .content-image {
    width: 100%;
    max-height: 500px;             /* image height control */
    height: auto;
    object-fit: contain;           /* cut nahi hogi */
    border-radius: 12px;
}


/* Mobile responsiveness: stack columns */
@media (max-width: 991px) {
    .training-enquiries .image-wrap {
        height: auto;
    }

    .training-enquiries .content-image {
        /* max-height: 300px; */
        margin-bottom: 20px;
    }
}