.button-style-one {
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    border-radius: 6px;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    font-size: 17px;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
    color: var(--white);
    border: none;
    background: var(--color-primary);
    padding: 16px 52px;
}

.button-style-one::after {
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: inherit;
    left: -5%;
    content: "";
    height: 150px;
    width: 115%;
    z-index: -1;
    background-color: var(--dark);
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    -webkit-transform: translateY(-45%) skew(25deg) scale(0);
    transform: translateY(-45%) skew(25deg) scale(0);
}

.button-style-one:hover::after {
    -webkit-transform: translateY(-45%) skew(25deg) scale(1.2);
    transform: translateY(-45%) skew(25deg) scale(1.2);
}

.button-style-one:hover {
    color: var(--white);
}


.tracking-widest {
    letter-spacing: 0.2em;
    font-size: 14px;
}

.top-bar-style-one .item-flex li i {
    font-size: 12px;
}

.top-bar-style-one .item-flex li {
    font-size: 12px;
}


.top-bar-style-one .social ul li {
    margin-left: 5px !important;
}

.top-bar-style-one .social ul li a {
    color: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
    font-size: 12px;
}

.social ul li a:hover {
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Topbar End */

/* Home Page App Download Section */
.app-download-area {
    background: #f5f5f5;
}

.app-thumb img {
    width: 100%;
    border-radius: 20px;
}

.app-info h2 {
    font-size: 36px;
    font-weight: 700;
}

.app-info .sub-title {
    color: #666;
    margin-bottom: 15px;
}

.app-brand img {
    width: 50px;
}

.app-brand h4 {
    margin: 0;
    font-weight: 600;
}

.app-info p {
    color: #555;
    line-height: 1.7;
}

.case-link {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
}

.case-link:hover {
    text-decoration: underline;
}

.app-buttons img {
    height: 50px;
    margin-right: 10px;
    transition: 0.3s;
}

.app-buttons img:hover {
    transform: scale(1.05);
}


/*========================== Signin Section ================================*/

.login-image-column {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0;
    display: flex;
}

.login-image-wrapper {
    width: 100%;
    min-height: 500px;
    background-image: url('');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius) 0 0 var(--radius);
    position: relative;
    overflow: hidden;
}

.login-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.6) 0%, rgba(26, 42, 108, 0.2) 100%);
}

.login-image-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.login-image-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.login-image-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.login-form-column {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0;
    display: flex;
}

.woocommerce {
    width: 100%;
    background: var(--white);
    padding: 60px;
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: 15px 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.woocommerce h2 {
    font-size: 32px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin-bottom: 10px;
    text-align: left;
}

.login-subtitle {
    color: black;
    margin-bottom: 35px;
    font-size: 15px;
}

.woocommerce-form-row {
    margin-bottom: 25px;
    position: relative;
}

.woocommerce-form-row label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.woocommerce-form-row label .required {
    color: #e74c3c;
    text-decoration: none;
}

.woocommerce-Input--text,
.input-text {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 15px;
    color: var(--text-dark);
    background-color: var(--white);
    transition: var(--transition);
    box-sizing: border-box;
    position: relative;
}

.woocommerce-Input--text:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 42, 108, 0.08);
}

.password-input {
    position: relative;
    display: block;
}

.show-password-input {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.show-password-input::after {
    content: '\f06e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--text-light);
}

.woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
    user-select: none;
    position: relative;
}

.woocommerce-form__input-checkbox {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #3995bd
}

.form-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.woocommerce-form-login__submit {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--white);
    border: none;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(26, 42, 108, 0.2);
}

.woocommerce-form-login__submit:hover {
    background-color: black;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
}

.woocommerce-form-login__submit i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.woocommerce-form-login__submit:hover i {
    transform: translateX(5px);
}

.lost_password {
    margin-top: 2;
    font-size: 14px;
}

.lost_password a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.lost_password a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

@media (max-width: 991px) {
    .login-image-column {
        display: none;
    }

    .login-form-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .woocommerce {
        border-radius: var(--radius);
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .attr-right {
        padding: 15px;
        justify-content: center;
    }

    .default-padding {
        padding: 40px 0;
    }
}

/* ================== Login End ===================*/


/*============================= History Section =============================*/
.history-section {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.history-section .main-container {
    display: flex;
    width: 100%;
    padding: 0 5%;
    align-items: center;
    gap: 50px;
}

.history-section .history-info {
    background: rgba(122, 13, 13, 0.267);
    padding: 40px;
    width: 380px;
    flex-shrink: 0;
    z-index: 5;
    border: 1px solid #fff;
}

.history-section .history-info p {
    line-height: 20px;
    text-align: justify;

}

.history-section .timeline-container {
    flex-grow: 1;
    overflow-x: auto;
    padding-bottom: 20px;
    cursor: grab;
}

.history-section .timeline-container::-webkit-scrollbar {
    height: 6px;
}

.history-section .timeline-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.history-section .timeline-container::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.history-section .timeline-content {
    display: flex;
    width: max-content;
    padding-top: 50px;
}

.history-section .timeline-item {
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 40px;
    position: relative;
}

.history-section .event-text {
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 80px;
    white-space: normal;
    padding-right: 20px;
}

.history-section .event-year {
    font-weight: 900;
    font-size: 1.3rem;
    position: absolute;
    bottom: 10px;
}

/* ================ History Section End ================= */




/* ================= Partners Section =================== */
.partners-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.partners-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.partners-header p {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.partner-swiper {
    padding: 20px 0;
    width: 100%;
}

.partners-section .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.partners-section .swiper-slide img {
    max-height: 70px;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partners-section .swiper-slide img:hover {
    transform: scale(1.1);
}

/* ===================== Partners Section End ============ */


/* ===================== Mission Section End ============ */
.mision-area {
    padding-bottom: 60px !important;

}

.mision-area img {
    width: 100%;
    display: block;
}

.mision-area .info {
    padding: 60px;
    left: -100px !important;
    margin-right: unset !important;
    position: relative;
    z-index: 2;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.1);
}

/* ===================== Vision Section End ============ */
.vision-area {
    padding-top: 60px !important;

}

.vision-area .info {
    padding: 60px;
    margin-right: -100px !important;
    left: unset !important;
    position: relative;
    z-index: 2;
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.vision-area img {
    width: 100%;
    display: block;
}

.footer-social li {
    margin-right: 8px;
}

/* ===================== Our Reporter ============ */
.our-reporters .process-style-one .thumb {
    width: 200px !important;
    height: 200px !important;
}

.our-reporters .nice-select::after {
    display: none !important;
}

/* Our Reporter  End */


/* ============== Counter Section =============*/
.counter-section {
    background: linear-gradient(135deg, #17181b 0%, #151618 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}


.stat-card {
    padding: 20px;
    transition: transform 0.3s ease;
    position: relative;
}


@media (min-width: 992px) {
    .stat-card:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -25px;
        top: 20%;
        height: 60%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, #151516, transparent);
    }
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-weight: 700;
    color: #d1c5c5;
    margin-bottom: 10px;
    display: block;
    letter-spacing: -1px;
}

.stat-title {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    margin-top: 15px;
    position: relative;
    display: inline-block;
}

/* Counter Section  End */




/* ============ Panther Speaks ============= */
.panther-speaks {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
    border-left: 5px solid #DF0A0A;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.panther-speaks h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-sans);
}

.panther-speaks h4 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}

.panther-speaks p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 0;
}


/* Membership-Editorial Style */
.membership-editorial.auth-text {
    color: #df0a0a;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.investment-box {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.investment-box h2 {
    font-size: 3rem;
    color: #fff;
    margin: 20px 0;
    font-weight: 800;
}

.criteria-item {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}


.c-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #df0a0a;
    font-family: 'Playfair Display', serif;
}

.c-text p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    max-width: 600px;
}

.criteria-item:hover {
    padding-left: 20px;
}

.criteria-item:hover .c-number {
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .criteria-stack {
        padding-left: 0;
        margin-top: 40px;
    }

    .editorial-title {
        font-size: 2.5rem;
    }
}

/* ============ Panther Speaks End ===================*/


/* =========== Disclaimer Section ============ */
.notice-list i {
    color: #ef4444;
    font-size: 18px;
    min-width: 40px;
}

/* =========== Disclaimer Section End ============ */

/* ========== Notice Section ================ */
.notice-container {
    padding: 20px 0;
}

.custom-table {
    width: 100%;
    border: 1px solid #dee2e6;
    font-family: Arial, sans-serif;
}

.custom-table thead th {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 12px 10px;
    font-weight: 600;
    text-align: left;
    font-size: 14px;
}

.custom-table tbody td {
    padding: 10px;
    border: 1px solid #dee2e6;
    font-size: 14px;
    vertical-align: top;
    color: #333;
}

.view-link {
    color: #4e5052;
    text-decoration: none;
}

.view-link i {
    display: block;
    margin-top: 5px;
    font-size: 18px;
}

.pagination-container {
    margin-top: 15px;
}

/* ================ Notice Section End ================ */

/* ================ Advertise ===============*/
.advertise-section {
    background-color: #fff;
    padding: 60px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.advertise-section .form-container {
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.advertise-section .form-header {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.advertise-section .form-header h2 {
    margin: 0;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.advertise-section .form-body {
    padding: 40px;
}

.advertise-section .custom-select {
    padding-top: unset !important;
    padding-bottom: unset !important;
}

.advertise-section .common {
    height: 100px !important;
}

.advertise-section .submit-btn {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.advertise-section .submit-btn:hover {
    background-color: #003d66;
}

/* Responsive Fix */
@media (max-width: 600px) {
    .form-body {
        padding: 20px;
    }
}


/* ===========================Sponsorship Section ======================  */
.sponsorship-section {
    padding: 80px 0;
    background-color: #f0f2f5;
    margin-bottom: 80px;
}

.sponsorship-section .sponsorship-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.card-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    min-height: 500px;
}

.image-side {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 30px;
    transition: padding var(--transition-speed) ease;
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: border-radius var(--transition-speed) ease;
}

.content-side {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px 60px 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.content-side h2 {
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #000000;
    transition: color var(--transition-speed) ease;
}

.content-side p {
    color: #353434;
    line-height: 1.6;
    transition: color var(--transition-speed) ease;
}

.content-side ul {
    padding-left: 20px;
    font-weight: 600;
    color: #353434;
    transition: color var(--transition-speed) ease;
}

.sponsorship-card:hover {
    background-color: var(--purple-bg);
    box-shadow: 0 30px 60px rgba(59, 22, 126, 0.3);
    transform: translateY(-5px);
}

.sponsorship-card:hover .image-side {
    padding: 0;
}

.sponsorship-card:hover .image-side img {
    border-radius: 0;
}

.sponsorship-card:hover .content-side {
    padding-left: 50px;
}

.sponsorship-card:hover .content-side h2,
.sponsorship-card:hover .content-side p,
.sponsorship-card:hover .content-side ul {
    color: #ffffff !important;
}

/* =================== EVENTS SECTION ================= */
.events-section {
    padding: 60px 0;
    overflow: hidden;
}

.events-section.events-header h2 {
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.events-header p {
    color: #000;
    font-size: 1.1rem;
    max-width: 900px;
    line-height: 1.5;
    margin-bottom: 50px;
}

.slider-container {
    position: relative;
    width: 100%;
}

.events-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 2px 30px 2px;
}

.events-track::-webkit-scrollbar {
    display: none;
}

.event-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 280px;
    scroll-snap-align: start;
    cursor: pointer;
}

.event-image-wrapper {
    aspect-ratio: 3 / 4.2;
    overflow: hidden;
    border-radius: 30px;
    background-color: #f8f9fa;
    position: relative;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #df0a0a81;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    text-align: left;
}

.event-card:hover .event-overlay {
    opacity: 1;
    visibility: visible;
}

.event-overlay .explore-graph {
    color: #f7ebeb;

}

.event-card:hover img {
    transform: scale(1.1);
}

.overlay-content h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.view-event-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    color: rgb(0, 0, 253);
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    width: fit-content;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.control-btn:hover {
    border-color: var(--text-dark);
    background-color: var(--text-dark);
}

@media (max-width: 1199px) {
    .event-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 991px) {
    .event-card {
        flex: 0 0 calc(50% - 12px);
    }

    .content-side h2,
    .events-header h2 {
        font-size: 2.2rem;
    }

    .image-side,
    .content-side {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .event-card {
        flex: 0 0 85%;
    }
}

/* ===================== End Advertise Form Section =================== */

/* ============================ Press Resource ====================== */
.press-card {
    border-radius: 16px;
    border: 1px solid #eee;
    background: #fff;
    transition: all 0.3s ease;
}

.press-card.bg-dark {
    background: #111 !important;
    color: #fff;
}

.icon-box {
    color: #DF0A0A;
}

.btn-elegant {
    padding: 10px 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-elegant:hover {
    transform: scale(1.02);
    background: #000;
}

.asset-box {
    border-radius: 10px;
    padding: 12px;
    --bs-bg-opacity: .2 !important;

}

.press-card .asset-box img {
    height: 40px;
}

.press-card .btn-sm {
    height: 36px;
    min-width: 75px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.btn-outline-dark:hover {
    background: #000;
    color: #fff;
}

.release-item {
    position: relative;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.release-item:hover {
    background: linear-gradient(90deg, #f8f9ff, #ffffff);
    transform: translateX(4px);
}

.release-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 3px;
    height: 0%;
    background: var(--color-primary);
    border-radius: 5px;
    transition: 0.3s;
}

.release-item:hover::before {
    height: 60%;
}

.release-item small {
    font-size: 12px;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: var(--color-primary);

}

.release-item h5 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-top: 5px;
    transition: 0.3s;
}

.release-item p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}


.release-item a {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: 0.3s;
}

.release-item a::after {
    content: "";
    width: 0;
    height: 2px;
    background: var(--color-primary);
    position: absolute;
    bottom: -3px;
    left: 0;
    transition: width 0.3s ease;
}

.release-item a:hover {
    color: var(--color-primary);
}

.release-item a:hover::after {
    width: 100%;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================== End Press Resource =================== */

/* ===================== Partner With Us Form ================== */

.modern-modal {
    border-radius: 16px;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.modern-modal .modern-left {
    background: black;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px;
}

.modern-modal.modern-left h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.form-wrapper {
    padding: 40px;
}

.floating-group {
    position: relative;
    color: #000;
    font-size: 22px;
}

.floating-group input,
.floating-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 5px;
    background: transparent !important;
    outline: none;
    font-size: 14px;
}

.floating-group .nice-select {
    background-color: transparent !important;
    border-top: none !important;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #ccc
}

.floating-group label {
    position: absolute;
    top: 10px;
    left: 5px;
    font-size: 13px;
    color: #888;
    transition: 0.3s;
}

/* Animation */
.floating-group input:focus+label,
.floating-group textarea:focus+label,
.floating-group textarea:valid+label {
    top: -10px;
    font-size: 11px;
    color: #000;
}

.floating-group input:focus,
.floating-group textarea:focus {
    border-bottom: 1px solid #000;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.floating-group select:focus~.select-arrow {
    color: #ff9f1a;
    transform: translateY(-50%) rotate(180deg);
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile */
@media (max-width: 768px) {
    .modern-left {
        display: none;
    }
}


/*  ===================== End Partner With Us Form =================*/

/*  ============================== Partner With Us Logo ================= */
.partner-img {
    width: 100%;
    max-width: 80px;
    height: auto;

    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.partner-img:hover {
    filter: grayscale(0) brightness(1) opacity(1);
    transform: scale(1.1);
}

.text-white {
    --bs-text-opacity: 1;
    color: rgb(0 0 0) !important;
}

.text-orange {
    color: #ff9f1a !important;
}

.tracking-widest {
    letter-spacing: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
}

/* ============================ Partner With Us Logo ========================= */

/*  =========================== Why Choose Us ====================== */
.why-partner-grid {
    background: #ffffff;
    padding: 80px 0;
}

.text-orange {
    color: #ff9f1a !important;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    color: #fff;
}

.card-number {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: #ff9f1a;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.benefit-card h5 {
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    font-size: 1.25rem;
}

.benefit-card p {
    line-height: 1.6;
    margin-bottom: 0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: #ff9f1a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 159, 26, 0.1);
}


@media (max-width: 768px) {
    .benefit-card {
        padding: 30px 20px;
    }
}

/*  ======================== Impact Section ================== */
.impact-wrapper {
    background: #eef3f8;
    padding: 80px 0;
    overflow-x: hidden;
}

.timeline {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.timeline::before {
    content: "";
    position: absolute;
    width: 4px;
    background: #f59e0b;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    width: 50%;
    padding: 40px;
    position: relative;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.step {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 10;
}

.timeline-card h4 {
    margin-top: 10px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
}

.image-flip-container {
    perspective: 1000px;
    width: 100%;
    height: 220px;
    margin-bottom: 15px;
}

.flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    cursor: pointer;
}

.image-flip-container:hover .flipper {
    transform: rotateY(180deg);
}

.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
    top: 0;
    left: 0;
}

.front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.back {
    background: #1f2937;
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.back h5 {
    margin: 0 0 10px 0;
    color: #f59e0b;
    font-size: 18px;
}

.back p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #d1d5db !important;
}

.btn-more {
    margin-top: 15px;
    background: #f59e0b;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
}

.timeline-card>p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    text-align: center;
    margin: 0;
}

.timeline-item.left .timeline-card {
    margin-right: 30px;
}

.timeline-item.right .timeline-card {
    margin-left: 30px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 45px;
        padding-right: 15px;
        padding-bottom: 20px;
    }

    .timeline-item.right {
        left: 0;
    }

    .step {
        left: -25px;
        transform: none;
        top: 50px;
    }

    .timeline-item.left .timeline-card,
    .timeline-item.right .timeline-card {
        margin: 0;
    }

    .image-flip-container {
        height: 180px;
    }
}

/*  ===================== End Impact Section ================ */

/* ========================== Grievance-Redressal ================= */
.notification-box {
    background: #DF0A0A;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.notification-box h4 {
    margin-bottom: 15px;
}

.contact-form-style-one textarea {
    min-height: 120px;
}

.notification-box ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.notification-box ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.alert-box {
    margin-top: 20px;
    background: #DF0A0A;
    color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .notification-box {
        margin-top: 30px;
    }
}

/*  ================== End Grievance-Redressal ================ */

/*  ================== Broadcast section =============== */
.broadcast-intro-area .broadcast-main-content h2 {
    font-size: 48px;
    margin-bottom: 25px;
}

.live-status {
    background: #fdf2f2;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 50px;
    color: #d9534f;
    font-weight: 600;
    margin-top: 20px;
}

.pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #d9534f;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(217, 83, 79, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(217, 83, 79, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(217, 83, 79, 0);
    }
}

.platform-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.platform-card:hover {
    transform: translateY(-10px);
    background: #df0a0a71;
    color: #fff;
}

.platform-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #DF0A0A;
}

.platform-card .icon-2 {

    color: #1877F2;
}

.btn-standard {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    margin-top: 15px;
    display: inline-block;
    color: #DF0A0A;
}

.broadcast-thumb {
    position: relative;
}

.broadcast-thumb img {
    border-radius: 15px;
    width: 100%;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #ff5e14;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
}


/* ======================= Publshing Section =======================  */

/* Latest Issue */
.latest-issue-showcase .serif-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #1a1a1a;
}

.latest-issue-showcase .badge-luxury {
    background: #1a1a1a;
    color: #dab617;
    border: 1px solid #ffe600;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.latest-issue-showcase .tagline-gold {
    color: #000000;
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.latest-issue-showcase .gold-hr {
    border-top: 2px solid #e0be4e;
    width: 50px;
    margin-left: 0;
}


.latest-issue-showcase .spec-list {
    list-style: none;
    padding: 0;
}

.latest-issue-showcase .spec-list li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
}

.latest-issue-showcase .spec-list li strong {
    color: #eb2e2e;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    margin-right: 10px;
}


.latest-issue-showcase .palm-leaf-shadow img {
    box-shadow: 25px 25px 50px rgba(176, 141, 87, 0.15);
    border-radius: 0px 5px 5px 0px;
}

.latest-issue-showcase .magazine-3d-wrap img {
    width: 100%;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.2), -5px 0 10px rgba(0, 0, 0, 0.05);
    border-radius: 2px 10px 10px 2px;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.latest-issue-showcase .btn-link-luxury {
    color: #DF0A0A;
    text-decoration: underline;
    font-weight: 600;
}

.latest-issue-showcase .btn-link-luxury:hover {
    color: #cfa74fc9;

}


/* Archive Section */
.archive-section .mag-item:hover .mag-overlay {
    opacity: 1;
}

.archive-section .mag-item:hover .mag-cover img {
    transform: scale(1.05);
}

.archive-section .mag-cover {
    position: relative;
    overflow: hidden;
}

.archive-section .mag-cover img {
    width: 100%;
    transition: 0.5s ease;
}

.archive-section .mag-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #DF0A0A;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.archive-section .view-btn {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
}

.archive-section .view-btn:hover {
    background: #fff;
    color: #000;
}

.mag-footer-cta .subscribe-form-simple input {
    padding: 15px;
    border: 1px solid #ddd;
    width: 300px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .latest-issue-showcase {
        text-align: center;
    }

    .latest-issue-showcase .magazine-3d-wrap {
        margin-bottom: 40px;
    }

    .mag-footer-cta .subscribe-form-simple input {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* ========================== End Publshing ======================= */






/* Container and Card Styling */
.portal-card.premium-style {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.portal-card.premium-style:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: #da251c;
    /* Highlight on hover */
}

/* Header & Logo */
.portal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.portal-logo-bg {
    width: 65px;
    height: 65px;
    background: #1a1a1a;
    /* Dark background for logos */
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch-date {
    font-size: 11px;
    color: #999;
    font-weight: 700;
    text-transform: uppercase;
}

/* Badges */
.badge-live,
.badge-premium,
.badge-local {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.badge-live {
    background: #fee2e2;
    color: #da251c;
    border: 1px solid #fecaca;
}

.badge-premium {
    background: #fef3c7;
    color: #d97706;
    border: 1px solid #fde68a;
}

.badge-local {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* Audience Metrics Table-like View */
.audience-metrics {
    display: flex;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 14px;
    margin: 20px 0;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric .label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric .value {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Launch Button */
.btn-portal {
    display: block;
    text-align: center;
    background: #1a1a1a;
    color: #fff !important;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
    text-decoration: none;
}

.btn-portal:hover {
    background: #da251c;
    box-shadow: 0 10px 20px rgba(218, 37, 28, 0.3);
}

:root {
    --accent-color: #6e8efb;
    --glass: rgba(255, 255, 255, 0.8);
}

.text-gradient {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Horizontal Visual Stack */
.horizontal-visual-stack {
    position: relative;
    height: 400px;
    margin-bottom: 40px;
}

.mockup-h {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.center-focus {
    z-index: 3;
    width: 230px;
    top: 0;
}

.side-left {
    z-index: 1;
    margin-left: -180px;
    top: 40px;
    transform: translateX(-50%) rotate(-10deg) scale(0.9);
    opacity: 0.8;
}

.side-right {
    z-index: 1;
    margin-left: 180px;
    top: 40px;
    transform: translateX(-50%) rotate(10deg) scale(0.9);
    opacity: 0.8;
}

/* Glass Cards */
.glass-card-h {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    text-align: left;
}

.glass-card-h:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(110, 142, 251, 0.15);
}

.glass-card-h.highlight {
    border: 1px solid var(--accent-color);
}

.app-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.app-logo {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
}

.app-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.stars {
    font-size: 0.8rem;
    font-weight: bold;
    color: #ffc107;
}

.dl-icons i {
    color: #333;
    margin-left: 10px;
    font-size: 1.1rem;
}

.blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 250px;
    background: radial-gradient(circle, rgba(110, 142, 251, 0.2) 0%, transparent 70%);
    z-index: 0;
}





.bcnn-theme {
    background-color: #050505;
    min-height: 600px;
}

/* Globe Vector Styling (Left Side) */
.globe-vector-overlay {
    position: absolute;
    top: 0;
    left: -10%;
    width: 60%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png'),
        radial-gradient(circle at center, rgba(243, 156, 18, 0.1) 0%, transparent 70%);
    mask-image: url('path/to/your/globe-vector.svg');
    /* Link your SVG globe here */
    mask-repeat: no-repeat;
    mask-size: contain;
    opacity: 0.3;
    z-index: 1;
}

/* Central Pulse */
.bcnn-innovation-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-shield {
    width: 120px;
    z-index: 10;
    filter: drop-shadow(0 0 20px rgba(243, 156, 18, 0.5));
}

.pulse-ring {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid #f39c12;
    border-radius: 50%;
    animation: pulse-out 3s linear infinite;
}

.delay-1 {
    animation-delay: 1.5s;
}

/* Orbiting Icons Logic */
.orbit-container {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate-orbit 20s linear infinite;
}

.orbit-item {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid #f39c12;
    color: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Counter-rotate the icons so they stay upright */
    animation: rotate-orbit 20s linear infinite reverse;
}

/* Positioning items around the circle */
.item-1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.item-2 {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.item-3 {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.item-4 {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes rotate-orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-out {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}


/* ======================================= Manifesto Section ===================== */
.manifesto-area {
    background-color: var(--soft-bg);
    color: var(--text-main);
    line-height: 1.8;
}

.manifesto-area h1,
.manifesto-area h2,
.manifesto-area h3,
.manifesto-area h4 {
    font-family: 'Montserrat', sans-serif;
    /* Modern font for headers */
    font-weight: 800;
}

.manifesto-area .intro-section {
    border-left: 6px solid red;
    padding-left: 30px;
    margin-bottom: 50px;
}

.manifesto-area.manifesto-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    background: #fff;
}

.manifesto-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.manifesto-area .pillar-box {
    padding: 40px;
    border-bottom: 1px solid #eee;
}

.manifesto-area .promises-gradient {
    background: linear-gradient(145deg, #111 0%, #222 100%);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.manifesto-area .promises-gradient::after {
    content: '\f06e';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    top: 10px;
    right: 30px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
}

.manifesto-area .accent-text {
    color: var(--black-cat-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 0.9rem;
}

.manifesto-area .closing-statement {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
}

/* ===================== End Manifesto Section ================== */
/* Background & Typography */
.bg-soft-gray {
    background-color: #f4f7f6;
}

.text-accent {
    color: #f39c12; /* A sophisticated burnt orange/gold */
}

.modern-badge {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* The Card */
.clean-award-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 20px 20px 60px #d9dada, -20px -20px 60px #ffffff; /* Neumorphic effect */
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
    z-index: 1;
}

.clean-award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.1);
}

/* Watermark Year */
.award-year-bg {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 80px;
    font-weight: 900;
    color: rgba(0,0,0,0.03); /* Extremely subtle watermark */
    z-index: -1;
    line-height: 1;
}

/* Image Styling */
.award-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.award-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}

.clean-award-card:hover img {
    transform: scale(1.1);
}

.award-icon {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: #fff;
    color: #f39c12;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Details */
.award-details h4 {
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 15px;
}

.award-details p {
    color: #636e72;
    font-size: 15px;
    line-height: 1.7;
}

.award-link {
    display: inline-block;
    margin-top: 15px;
    color: #2d3436;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #f39c12;
    transition: 0.3s;
}

.award-link:hover {
    color: #f39c12;
    letter-spacing: 1px;
}


/* Achievement Card Styling */
.achievement-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

/* Overlay Style - Text on Image */
.overlay-card {
    height: 400px; /* Fixed height for consistency */
}

.overlay-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.overlay-card .overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    transform: translateY(20px);
    transition: 0.4s;
}

.overlay-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-card:hover img {
    transform: scale(1.05);
}

.overlay-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 14px;
    opacity: 0.8;
}

/* Standard Card - Icon and Text below */
.standard-card {
    background: #fff;
    text-align: center;
    border: 1px solid #eee;
}

.standard-card .thumb {
    height: 250px;
    background: #222;
}

.standard-card .card-info {
    padding: 30px;
    position: relative;
}

.icon-bg {
    font-size: 50px;
    color: rgba(0,0,0,0.05);
    position: absolute;
    top: 10px;
    right: 20px;
}

.standard-card h4 {
    font-weight: 700;
    color: #333;
}

.devider {
    height: 4px;
    width: 50px;
    background: #e74c3c;
    margin: 15px auto;
}

/* ===========================  End Archivments Section =================== */