.modern-breadcrumb-section {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #050505;
}

.breadcrumb-bg {
    position: absolute;
    inset: 0;
    background: url('/images/gcefficient.jpg') center center / cover no-repeat;
    transform: scale(1.05);
}


.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,.82), rgba(0,0,0,.55), rgba(0,0,0,.75) );
}

/* Glow */
.breadcrumb-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(221,31,37,.18);
    filter: blur(100px);
    border-radius: 50%;
}

.breadcrumb-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: .08;
}


.breadcrumb-label {
    color: #dd1f25;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 20px;
}


.breadcrumb-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    letter-spacing: -2px;
}



.breadcrumb-nav {
    gap: 14px;
}

    .breadcrumb-nav li {
        color: rgba(255,255,255,.65);
        font-size: .95rem;
    }

        .breadcrumb-nav li a {
            color: #ffffff;
            transition: .3s ease;
        }

            .breadcrumb-nav li a:hover {
                color: #dd1f25;
            }

        .breadcrumb-nav li.active {
            color: #dd1f25;
            font-weight: 600;
        }


@media (max-width: 991px) {

    .modern-breadcrumb-section {
        min-height: 420px;
        padding: 120px 0 80px;
    }

    .breadcrumb-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {

    .modern-breadcrumb-section {
        min-height: 380px;
    }

    .breadcrumb-title {
        font-size: 2.8rem;
    }

    .breadcrumb-description {
        font-size: .95rem;
    }
}

/*Our Hitory Section*/



.history-section {
    background: radial-gradient(circle at top right, rgba(221,31,37,.06), transparent 30%), linear-gradient(to bottom, #ffffff, #f8f9fb);
}

.history-badge {
    color: #dd1f25;
    letter-spacing: 3px;
    font-size: 13px;
}

.history-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -1px;
}

.history-text {
    color: #5f5f5f;
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: justify;
}

.history-img {
    max-height: 520px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.history-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 260px;
    transform: translate(-50%, -50%);
    background: rgba(221,31,37,.12);
    filter: blur(90px);
    border-radius: 50%;
    z-index: 1;
}

@media (max-width: 991px) {

    .history-section {
        text-align: center;
    }

    .history-title {
        font-size: 2.5rem;
    }

    .history-text {
        font-size: 1rem;
    }
}


/*Why Us Section */


.enhanced-about-section {
    background: #0b0b0b;
    position: relative;
}

/* Soft Background Overlay */
.about-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at top right, rgba(221,31,37,.08), transparent 30% );
}

/* Glow */
.about-glow {
    position: absolute;
    top: 10%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(221,31,37,.12);
    border-radius: 50%;
    filter: blur(100px);
}

/* Label */
.about-label {
    color: #dd1f25;
    letter-spacing: 3px;
    font-size: 13px;
}

/* Heading */
.about-heading {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -2px;
}

/* Gradient Text */
.text-gradient {
    background: linear-gradient(to right, #ffffff, #dd1f25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Divider */
.about-divider {
    width: 90px;
    height: 4px;
    border-radius: 50px;
    background: linear-gradient( to right, #dd1f25, transparent );
}

/* Paragraph */
.about-text {
    color: rgba(255,255,255,.78);
    font-size: 1.05rem;
    line-height: 1.9;
    text-align:justify;
}

/* Images */
.about-image-wrapper {
    position: relative;
}

.main-about-image img {
    max-height: 520px;
    object-fit: cover;
}

/* Floating Image */
.floating-about-image {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 260px;
    animation: floatingImage 5s ease-in-out infinite;
}

    .floating-about-image img {
        border: 6px solid rgba(255,255,255,.08);
    }

/* Experience Box */
.experience-box {
    position: absolute;
    left: -20px;
    bottom: 40px;
    padding: 22px 28px;
    border-radius: 24px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.08);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

    .experience-box h3 {
        color: #dd1f25;
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
    }

    .experience-box span {
        color: rgba(255,255,255,.75);
        font-size: .9rem;
    }

/* Feature Cards */
.feature-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    transition: .3s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        border-color: rgba(221,31,37,.3);
        background: rgba(255,255,255,.06);
    }

    .feature-card i {
        color: #dd1f25;
        font-size: 1.2rem;
    }

    .feature-card span {
        color: #ffffff;
        font-weight: 500;
    }

/* Floating Animation */
@keyframes floatingImage {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Responsive */
@media (max-width: 991px) {

    .enhanced-about-section {
        text-align: center;
    }

    .about-heading {
        font-size: 3rem;
    }

    .about-divider {
        margin-inline: auto;
    }

    .experience-box {
        left: 50%;
        transform: translateX(-50%);
        bottom: -25px;
    }

    .main-about-image img {
        max-height: 420px;
    }

    .feature-card {
        justify-content: center;
    }
}

@media (max-width: 576px) {

    .about-heading {
        font-size: 2.4rem;
    }

    .about-text {
        font-size: .96rem;
    }

    .experience-box {
        padding: 16px 22px;
    }

        .experience-box h3 {
            font-size: 1.6rem;
        }
}


/*LeaderShipSection*/


.leadership-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

/* =========================
   SECTION TITLE
========================= */

.section-subtitle {
    color: #dd1f25;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #111;
}

/* =========================
   TEAM GRID
========================= */

.team-row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1.5rem;
}

/* =========================
   CARD
========================= */

.leader-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.35s ease;
    border: 1px solid #efefef;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
    height: 100%;
}

    .leader-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,0.12);
    }

/* =========================
   IMAGE
========================= */

.leader-image-wrapper {
    background: linear-gradient(to bottom, #f8f8f8, #ffffff);
    min-height: 240px;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 15px 10px 0;
}

.leader-image {
    max-height: 240px;
    width: auto;
    object-fit: contain;
    transition: 0.35s ease;
}

.leader-card:hover .leader-image {
    transform: scale(1.03);
}

/* =========================
   CONTENT
========================= */

.leader-content {
    padding: 20px 18px 24px;
    text-align: center;
}

.leader-name {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.4;
}

.leader-designation {
    color: #dd1f25;
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.5;
}

/* =========================
   BUTTON
========================= */

.leader-btn {
    border: none;
    background: #dd1f25;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s ease;
}

    .leader-btn:hover {
        background: #111;
        transform: translateY(-2px);
    }

/* =========================
   MODAL
========================= */

.modal-image-side {
    background: linear-gradient(135deg, #f7f7f7, #ececec);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.modal-leader-image {
    max-height: 500px;
    object-fit: contain;
}

.modal-tag {
    display: inline-block;
    color: #dd1f25;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 12px;
}

.modal-title-custom {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.modal-designation {
    color: #dd1f25;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.modal-description {
    color: #555;
    line-height: 1.9;
    font-size: 14px;
}

/* =========================
   5 CARDS IN ONE ROW
========================= */

@media (min-width: 1200px) {

    .custom-col-5 {
        width: 20%;
    }
}

/* =========================
   TABLET
========================= */

@media (max-width: 1199px) {

    .custom-col-5 {
        width: 33.3333%;
    }
}

@media (max-width: 991px) {

    .custom-col-5 {
        width: 50%;
    }

    .leader-image-wrapper {
        min-height: 220px;
    }

    .leader-image {
        max-height: 220px;
    }
}


@media (max-width: 576px) {

    .custom-col-5 {
        width: 100%;
    }

    .leader-content {
        padding: 18px;
    }

    .leader-name {
        font-size: 0.95rem;
    }

    .leader-designation {
        font-size: 12px;
    }
}

/*Innovation Section*/

.innovation-section {
    background: #050505;
}

.innovation-bg {
    position: absolute;
    inset: 0;
    background: url('/images/innovation-bg.jpg') center center/cover no-repeat;
    transform: scale(1.05);
}

.innovation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0,0,0,0.88), rgba(0,0,0,0.72), rgba(221,31,37,0.18) );
}

.innovation-tag {
    color: #dd1f25;
    letter-spacing: 3px;
    font-size: 0.9rem;
}

.innovation-heading {
    line-height: 1.1;
    letter-spacing: -1px;
}

.innovation-divider {
    width: 120px;
    height: 4px;
    border-radius: 30px;
    background: linear-gradient(to right, transparent, #dd1f25, transparent);
}

.innovation-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 50px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.innovation-text {
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

.innovation-highlight {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin: 45px 0;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient( 135deg, rgba(221,31,37,0.16), rgba(255,255,255,0.04) );
    border: 1px solid rgba(221,31,37,0.2);
}

.highlight-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: #dd1f25;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(221,31,37,0.35);
}

@media (max-width: 991px) {

    .innovation-card {
        padding: 35px 25px;
    }

    .innovation-highlight {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .innovation-heading {
        font-size: 2.6rem;
    }

    .innovation-text {
        font-size: 1rem;
    }
}


/*What x-ms-webview bdo section */

.what-we-do-section {
    position: relative;
}

.letter-spacing {
    letter-spacing: 2px;
}

.heading-line {
    width: 90px;
    height: 4px;
    background: #dc3545;
    border-radius: 20px;
}

.what-text {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #5c5c5c;
}

.product-card {
    height: 320px;
    cursor: pointer;
    transition: 0.35s ease;
    background: #000;
}

    .product-card:hover {
        transform: translateY(-6px);
    }

.product-image {
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,0.9), rgba(0,0,0,0.15), transparent );
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

@media (max-width: 991px) {

    .product-card {
        height: 360px;
    }

    .what-text {
        font-size: 1rem;
    }
}
/* PRODUCT MODAL */
#productModal .modal-content {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

#productModal .modal-body {
    padding: 0;
}

#productModal .modal-leader-image,
#modalProductImg {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    background: #f5f5f5;
}

#productModal .btn-close {
    z-index: 5;
    box-shadow: none;
    opacity: 1;
}

#modalProductTitle {
    font-size: 2rem;
    line-height: 1.2;
    color: #111;
}

#modalProductDesc {
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
}

#productModal .badge {
    font-size: .75rem;
    letter-spacing: 1px;
    font-weight: 600;
}

#productModal .modal-dialog {
    max-width: 950px;
}

#productModal .modal-content {
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

#productModal .modal-body .row {
    min-height: 450px;
}

/* MOBILE */
@media (max-width: 991px) {

    #modalProductImg {
        min-height: 300px;
        max-height: 300px;
    }

    #modalProductTitle {
        font-size: 1.6rem;
    }

    #modalProductDesc {
        font-size: .95rem;
        line-height: 1.8;
    }

    #productModal .modal-body .row {
        min-height: auto;
    }
}


/*source Story section */

/* =========================================================
   MODERN AWARDS SECTION
========================================================= */

.awards-section {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* =========================================================
   SECTION TITLE
========================================================= */

.awards-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(220,53,69,0.08);
    color: #dc3545;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.awards-title {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.awards-desc {
    max-width: 760px;
    margin: auto;
    font-size: 1.05rem;
    line-height: 1.9;
    color: #6b7280;
}

/* =========================================================
   SWIPER
========================================================= */

.modernAwardsSwiper {
    padding-top: 50px;
    padding-bottom: 90px;
}

/* =========================================================
   CARD
========================================================= */

.modern-award-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;
    transition: all 0.45s ease;
    border: 1px solid rgba(0,0,0,0.06);
    height: 520px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

    .modern-award-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    }

/* =========================================================
   IMAGE
========================================================= */

.award-image-wrapper {
    position: relative;
    height: 290px;
    overflow: hidden;
}

.award-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.modern-award-card:hover .award-img {
    transform: scale(1.08);
}

/* IMAGE OVERLAY */

.award-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15), transparent);
}

/* YEAR BADGE */

.award-year {
    position: absolute;
    top: 22px;
    left: 22px;
    background: #dc3545;
    color: #fff;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(220,53,69,0.35);
}

/* =========================================================
   CARD BODY
========================================================= */

.award-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 290px);
}

.award-company {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.award-text {
    color: #6b7280;
    line-height: 1.9;
    font-size: 1rem;
    flex-grow: 1;
}

/* BUTTON */

.award-btn {
    border: none;
    background: #111827;
    color: #fff;
    border-radius: 100px;
    padding: 14px 24px;
    font-weight: 700;
    transition: all 0.35s ease;
    width: fit-content;
}

    .award-btn:hover {
        background: #dc3545;
        transform: translateY(-2px);
    }

/* =========================================================
   SWIPER NAVIGATION
========================================================= */

.awards-prev,
.awards-next {
    width: 62px !important;
    height: 62px !important;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

    .awards-prev:hover,
    .awards-next:hover {
        background: #dc3545;
        transform: scale(1.08);
    }

    .awards-prev::after,
    .awards-next::after {
        font-size: 18px !important;
        font-weight: 900;
        color: #111;
        transition: 0.3s ease;
    }

    .awards-prev:hover::after,
    .awards-next:hover::after {
        color: #fff;
    }

/* =========================================================
   PAGINATION
========================================================= */

.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    opacity: 1;
    transition: all 0.35s ease;
}

.swiper-pagination-bullet-active {
    width: 36px;
    border-radius: 30px;
    background: #dc3545;
}

/* =========================================================
   MODAL
========================================================= */
/* =========================================================
   MODERN AWARD MODAL
========================================================= */

.modern-award-modal .modal-dialog {
    max-width: 1350px;
}

.modern-award-modal .modal-content {
    border: none;
    overflow: hidden;
    background: #fff;
    min-height: auto;
    box-shadow: 0 40px 120px rgba(0,0,0,0.2);
    position: relative;
}

/* =========================================================
   CLOSE BUTTON
========================================================= */

.modern-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 50;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #dd1f25;
    font-size: 1.2rem;
    transition: all 0.35s ease;
}

    .modern-close-btn:hover {
        background: #dc3545;
        transform: rotate(90deg);
        color:#fff;
    }

/* =========================================================
   IMAGE SIDE
========================================================= */

.modern-modal-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 420px;
    background: #111;
    overflow: hidden;
}

    /* IMPORTANT FIX */
    /* FULL IMAGE VISIBLE */

    .modern-modal-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #111;
        padding: 20px;
    }

/* OVERLAY */

.modern-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.15), transparent);
    pointer-events: none;
}

/* YEAR BADGE */

.modern-year-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.15);
}

/* =========================================================
   CONTENT SIDE
========================================================= */

.modern-modal-content {
    height: 100%;
    min-height: 420px;
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(220,53,69,0.08), transparent 30%), #fff;
}

/* TAG */

.modern-modal-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(220,53,69,0.08);
    color: #dc3545;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

/* TITLE */

.modern-modal-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 900;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

/* DIVIDER */

.modern-divider {
    width: 90px;
    height: 5px;
    background: #dc3545;
    border-radius: 100px;
    margin-bottom: 34px;
}

/* DESCRIPTION */

.modern-modal-description {
    font-size: 1.08rem;
    color: #6b7280;
}

/* FOOTER BOX */

.modern-modal-footer {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background: #f8f9fb;
    border: 1px solid rgba(0,0,0,0.04);
}

/* ICON */

.modern-footer-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: #dc3545;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .modern-award-modal .modal-content {
        min-height: auto;
        border-radius: 24px;
    }

    .modern-modal-image-wrapper {
        min-height: 340px;
    }

    .modern-modal-content {
        min-height: auto;
        padding: 40px 28px;
    }

    .modern-modal-title {
        font-size: 2.1rem;
        letter-spacing: -1px;
    }

    .modern-modal-description {
        font-size: 1rem;
        
    }

    .modern-close-btn {
        top: 16px;
        right: 16px;
        width: 46px;
        height: 46px;
    }
}

