body {
    margin: 0;
    padding: 0;
    background: #fafbfc;

}

/* Button styling */
.btn-apply-now {
    background-color: #ED1C24;
    /* Red brand color */
    color: #fff;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s ease;
    animation: blink 1.5s infinite;
    font-family: 'Poppins', sans-serif;
}

/* Blink animation (fade in/out) */
@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.4;
    }
}

.btn-apply-now:hover,
.btn-apply-now:focus {
    background-color: #ED1C24;
    /* Darker red on hover */
    color: #fff;
    opacity: 1;
    animation: none;
    /* Stop blinking on hover for better UX */
}

/* Responsive font size and padding */
@media (max-width: 767px) {
    .btn-apply-now {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }
}

.hero-bg {
    background: url('Assets/img/BG.png') no-repeat;
    background-size: cover;
    color: #1E1E1E;
    min-height: 85vh;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    text-align: center;
}

.navbar-brand img {
    height: 90px;
    width: auto;
    object-fit: cover;
    /* background-color: #e32a4f; */
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -.5px;
    margin-bottom: .3em;
    font-family: 'Poppins', sans-serif;
}

.hero-sub {
    font-size: 1.28rem;
    opacity: .94;
    max-width: 70%;
    margin: 0 auto 1em auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.hero-action {
    background: #ED1C24;
    color: #fff;
    border-radius: 2em;
    padding: 0.65em 2.3em;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 4px 26px rgba(255, 70, 103, .1);
    transition: background .19s;
}

.hero-action:hover,
.hero-action:focus {
    background: #e32a4f;
    color: #fff;
}

/* Divider */
.section-divider {
    width: 60px;
    height: 4px;
    background: #ff4667;
    margin: 2.5em auto 1.2em auto;
    border-radius: 8px;
}

.talent-initiative {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    color: #000;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.org-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.1rem;
    /* margin-bottom: 2rem; */
    flex-wrap: wrap;
}

.org-logos img {
    height: 86px;
    width: 160px;
    object-fit: cover;
    object-position: center;
    /* background: #fff; */
    /* border-radius: 8px;
    box-shadow: 0 2px 7px rgba(220,58,72,0.06); */
    padding: 0;
    margin: 0px 20px;
    /* ZOOM-IN EFFECT: */
    transform: scale(1.18);
    /* slightly zooms the image content */
}

.org-divider {
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.talent-photo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 2.7rem;
}

.talent-photo {
    max-width: 920px;
    width: 100%;
    /* border-radius: 1.15em; */
    /* box-shadow: 0 4px 26px rgba(52, 53, 58, 0.08); */
    /* border: 2px solid #f5f5f5; */
}

.talent-photo-caption {
    margin-top: 1rem;
    font-size: 1.07rem;
    color: #383a3f;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
}

.colored-div {
    background-color: #ED1C24;
    /* Choose any desired color */
    color: #fff;
    padding: 20px;
    /* border-radius: 1.2em; */
    font-size: 1.4rem;
    text-align: center;
    width: 100%;
    /* margin: 3rem auto; */
    font-family: 'Poppins', sans-serif;
    /* box-shadow: 0 2px 14px rgba(10, 10, 20, 0.08); */
}

.competition-center-section {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 2.5rem 1rem;
    background: #f7f8fc;
    text-align: left;
}

.competition-img {
    width: 'auto';
    height: 350px;
    max-width: 70vw;
    border-radius: 1em;
    box-shadow: 0 2px 12px rgba(52, 53, 58, 0.05);
    object-fit: cover;
    /* background: #f2f2f3; */
}

.competition-content {
    max-width: 420px;
}

.competition-title {
    font-size: 1.22rem;
    font-weight: 700;
    color: #ED1C24;
    letter-spacing: 0.03em;
    margin-bottom: 1.1em;
    font-family: 'Poppins', sans-serif;
}

.competition-list {
    font-size: 1.08rem;
    line-height: 1.74;
    color: #292b33;
    margin-top: 0.3em;
    padding-left: 1em;
    font-family: 'Poppins', sans-serif;
}

.competition-list li {
    margin-bottom: 1.2em;
    font-weight: 400;
    position: relative;
    list-style: disc inside;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
}

.apply-full-bg {
    /* background: #ED1C24; */
    color: #fff;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    border-radius: 0;
    padding-top: 20px
}

.apply-main-row {
    /* display: flex;
    flex-wrap: wrap; */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 3.2rem 2rem 2.4rem 2rem; */
    /* gap: 2rem; */
}

.apply-text-side {
    flex: 2 1 380px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.apply-heading {
    font-size: 1.9rem;
    font-weight: 700;
    /* margin-bottom: 2rem; */
    letter-spacing: -.5px;
    font-family: 'Poppins', sans-serif;
    align-self: center;
    color: #ED1C24;
}

.apply-pointer {
    display: flex;
    align-items: flex-start;
    gap: 1.1em;
    font-size: 1.18em;
    font-weight: 700;
    /* margin-bottom: 0.3em; */
    font-family: 'Poppins', sans-serif;
}

.pointer-icon {
    display: flex;
    align-items: center;
    font-size: 1.85em;
    line-height: 1;
    color: #fff;
    font-weight: bold;
    /* text-shadow: 1px 1px 0 #df2419; */
}

.apply-pointer-desc {
    color: #ffe0dd;
    font-size: 1.04em;
    font-weight: 400;
    letter-spacing: 0;
    /* margin: .18em 0 0 3.2em; */
    max-width: 500px;
    font-family: 'Poppins', sans-serif;
}

.apply-qr-side {
    flex: 1 1 260px;
    min-width: 180px;
    background: #fff;
    border-radius: 1.3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* color: #ea2e1d; */
    box-shadow: 0 2px 14px rgba(220, 34, 34, 0.08);
    padding: 2.2em 1.35em 1.4em 1.35em;
    margin-top: 18px;
}

.apply-qr-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    /* background: #fff; */
    /* border: 2.3px solid #f33a2c; */
    border-radius: 1.07em;
    display: block;
    margin-bottom: .3em;
    transform: scale(1.50);
}

.hero-img-half-wrap {
    width: 100vw;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
    margin-bottom: -240px;
    /* Pull image up so bottom half is on white, top half on red */
    pointer-events: none;
}

.hero-img-half {
    width: 86vw;
    max-width: 750px;
    /* border-radius: 1.5em; */
    box-shadow: 0 7px 16px rgba(45, 20, 24, 0.10);
    /* border: 6px solid #fff; */
    object-fit: cover;
    position: relative;
    z-index: 3;
    pointer-events: auto;
    /* background: #fff; */
}

.nt26-red-section {
    background: #ED1C24;
    /* border-radius: 0 0 54px 54px; */
    box-shadow: 0 2.2px 28px rgba(112, 22, 22, 0.14);
    color: #fff;
    position: relative;
    z-index: 2;
    margin-top: -65px;
    padding-top: 250px;
    /* Leaves room for image to 'float' over top */
    padding-bottom: 2.4rem;
    min-height: 330px;
}

.nt26-content-inner {
    /* max-width: 800px; */
    margin: 0 auto;
    /* padding: 0 1.2rem; */
}

.nt26-title {
    font-size: 2.10rem;
    font-weight: 700;
    margin: 1.2em 0 0.30em 0;
    letter-spacing: -.6px;
    line-height: 1.11;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.nt26-desc {
    font-size: 1.12rem;
    color: #fff;
    max-width: 990px;
    margin: 0 auto 1.95em auto;
    text-align: center;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.nt26-benefit-title {
    font-size: 2.10rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.4em;
    color: #fff;
    letter-spacing: 0;
    font-family: 'Poppins', sans-serif;
    padding-top: 40px;
}

.nt26-benefits-list {
    max-width: 795px;
    margin: 0 auto 1.95em auto;
    padding: 0;
    color: #fff;
    list-style: none;
    font-size: 1.07rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.nt26-benefits-list li {
    margin-bottom: 1em;
    position: relative;
    padding-left: 2.1em;
    font-size: 1.06em;
    font-weight: 500;
    line-height: 1.67;
}

.nt26-benefits-list li:before {
    content: "*";
    color: #fff;
    font-size: 1.17em;
    position: absolute;
    left: 0.14em;
    /* top: 0.03em; */
    font-weight: 900;
    text-shadow: 1px 1px 0 #ED1C24;
    align-items: flex-start;
}

.nt26-eligibility-box {
    background: #fff;
    color: #ED1C24;
    border-radius: 1.04em;
    margin: 2.5em auto 0 auto;
    padding: 1.15em 1.1em .91em 1.1em;
    max-width: 830px;
    text-align: center;
    font-size: 1.13rem;
    font-weight: 600;
    box-shadow: 0 1.5px 13px rgba(220, 24, 32, 0.09);
}

.nt26-eligibility-heading {
    font-size: 1.9rem;
    font-weight: bold;
    margin-bottom: 0.2em;
    color: #ED1C24;
    font-family: 'Poppins', sans-serif;
}

.nt26-eligibility-box {
    color: #000;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.nt26-eligibility-box span {
    color: #ED1C24;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}

.nt-rounds-section {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 5%;
}

.nt-flex-row {
    display: flex;
    max-width: 1200px;
    margin: 2.3rem auto 2rem auto;
    gap: 2.3rem;
    align-items: stretch;
    /* padding: 0 1.0rem; */
    flex-wrap: wrap;
}

.nt-col-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 0 0 320px;
    max-width: 360px;
    min-width: 240px;
    align-items: center;
    justify-content: center;
}

.nt-img {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 2/2;
    object-fit: cover;
    border-radius: 1em;
    box-shadow: 0 2px 11px rgba(51, 32, 44, .09);
    /* background: #f3f3fa; */
    margin: 0 auto;
}

.nt-col-right {
    /* flex: 1 1 420px; */
    /* background: #fff; */
    /* border-radius: 1.35em; */
    /* box-shadow: 0 2px 15px rgba(80,32,44,.09); */
    padding: 2.3rem 1rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 290px;
    max-width: 720px;
}

.nt-rounds-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ED1C24;
    margin-bottom: .0em;
    letter-spacing: 0;
    font-family: 'Poppins', sans-serif;
}

.nt-rounds-sub {
    text-align: center;
    color: #000;
    font-size: 1.07rem;
    margin-bottom: 3.4rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;

}

.nt-sub {
    color: #1e1e20;
    font-size: 1.11rem;
    margin-bottom: 2.15rem;
    font-weight: 500;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.nt-step-block {
    margin-bottom: 1.9rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.nt-step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ED1C24;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.35rem;
    flex-shrink: 0;
    margin-top: 3px;
    font-family: 'Poppins', sans-serif;

}

.nt-step-title {
    font-size: 1.21rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.14em;
    font-family: 'Poppins', sans-serif;

}

.nt-step-desc {
    color: #363a41;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: .16em;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;

}

.nt-step-list {
    color: #000;
    font-size: 1rem;
    margin-left: 1em;
    margin-bottom: .3em;
    padding-left: 1.1em;
}

.nt-step-list li {
    margin-bottom: .27em;
    line-height: 1.5;
}

.nt26-info-block {
    background: #dd2935;
    color: #fff;
    border-radius: 1.5em;
    max-width: 950px;
    margin: 2.4rem auto 2.2rem auto;
    padding: 2.4rem 1.5rem 2.1rem 1.5rem;
    box-shadow: 0 2px 22px rgba(180, 23, 43, 0.09);
    text-align: center;
    font-size: 1.23rem;
    position: relative;
    font-family: 'Poppins', sans-serif;
    align-items: center;
}

.nt26-info-main {
    font-size: 1.22rem;
    line-height: 1.52;
    margin-bottom: 2.1rem;
    letter-spacing: 0.01em;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;

    /* max-width: 740px; */
}

.nt26-info-note {
    font-size: .99rem;
    font-weight: 600;
    opacity: 0.98;
    margin-bottom: 2.1rem;
    margin-top: .29em;
    color: #fff;
    font-family: 'Poppins', sans-serif;

}

.nt26-info-contact {
    font-size: 1.80rem;
    font-weight: 600;
    color: #fff;
    /* margin-top: 1.2em; */
    /* margin-bottom: 0.37em; */
    font-family: 'Poppins', sans-serif;

}

.nt26-info-branch {
    font-size: 1.80rem;
    font-weight: 600;
    color: #fff;
    /* margin-top: -20px; */
    letter-spacing: .01em;
    font-family: 'Poppins', sans-serif;
}

.news-section-title {
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    color: #EA1F24;
    letter-spacing: 0.5px;
    margin: 2.2rem 0 1.55rem 0;
    font-family: 'Poppins', sans-serif;
    padding-top: 1%;
}

.news-coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.3rem 2.75rem;
    max-width: 1300px;
    margin: 0 auto 2.5rem auto;
    align-items: start;
}

.news-col {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    align-items: center;
}

/* Top two news screenshots are wide, bottom grids are taller */
.news-main-img {
    width: 100%;
    max-width: 490px;
    border-radius: 1em;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    /* background: #eee; */
}

.news-grid-img {
    width: 100%;
    max-width: 490px;
    /* border-radius: 1em; */
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
    object-fit: cover;
    /* background: #f6f6fa; */
}

.nf-footer {
    /* background: #fff; */
    /* border-top: 1px solid #e6e6e6; */
    font-size: 1rem;
    color: #232323;
    padding: 2.5rem 0 1.2rem 0;
    margin-top: 2.5rem;
    font-family: 'Poppins', sans-serif;

}

.footer-title {
    font-size: 1.20rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;

}

.footer-title span {
    font-weight: 600;
    font-size: 1.3rem;
    display: inline-block;
    letter-spacing: 0px;
    font-family: 'Poppins', sans-serif;
}

.footer-about {
    font-size: 0.98rem;
    color: #353535;
    margin-bottom: 1.4rem;
    font-family: 'Poppins', sans-serif;

}

.footer-menu,
.footer-quick {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-menu li,
.footer-quick li {
    margin-bottom: 0.48rem;
}

.footer-menu a,
.footer-quick a {
    color: #242424;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.16s;
}

.footer-menu a:hover,
.footer-quick a:hover {
    color: #ED1C24;
}

.footer-actions .btn {
    font-size: 1rem;
    border-radius: 1.5em;
    margin-right: 0.54rem;
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.footer-actions .btn-black {
    background: #232323;
    color: #fff;
    border: none;
    padding: 0.6em 1.7em;
    transition: background 0.16s;
}

.footer-actions .btn-black:hover {
    background: #ED1C24;
}

.footer-actions .btn-outline-secondary {
    border: 1.2px solid #c2c0c0;
    color: #232323;
    background: #fff;
    padding: 0.6em 1.59em;
}

.footer-actions .btn-outline-secondary:hover {
    background: #f4f4f4;
    color: #ED1C24;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 1.25rem;
    color: #232323;
    transition: color 0.18s;
    vertical-align: middle;
}

.footer-social a:hover {
    color: #e44860;
}

.footer-copyright {
    text-align: center;
    font-size: 0.97rem;
    color: #303030;
    margin-top: 1.5rem;
}

.footer-links a {
    color: #353535;
    margin-left: 1.4rem;
    text-decoration: underline;
    font-size: 0.98rem;
}

.footer-links a:hover {
    color: #ED1C24;
}

.contact-section {
    max-width: 90%;
    margin: 18px auto;
    padding: 30px 10px 10px 18px;
    background-color: #fff;
    border-radius: 20px;
    border: 2px solid #ED1C24;
}

.contact-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    color: #000;
    font-family: 'Poppins', sans-serif;

}

.contact-title strong {
    font-weight: 700;
    color: #232323;
}

.contact-form label {
    font-size: 0.97rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-bottom: 1px solid #d6d6d6;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    font-size: 1.05rem;
    background: #fff;
    margin-bottom: 10px;
    padding-left: 0;
    font-family: 'Poppins', sans-serif;
}

.contact-form textarea {
    min-height: 56px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom: 2px solid #DA1F24;
    background: #fff;
    box-shadow: none;
}

/* Hide the default radio visually, but keep it accessible */
.form-check-input[type="radio"] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.form-check-input[type="checkbox"]:checked {
    background-color: #ED1C24;
    border-color: #ED1C24;
}


.form-check-input[type="checkbox"] {
    /* optional: your custom checkbox CSS here, or let Bootstrap/default handle it */
}


/* Custom radio look using label::before */
.form-check-label {
    position: relative;
    padding-left: 2.1em;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins', Arial, sans-serif;
    color: #232323;
}

.form-check-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 1.22em;
    height: 1.22em;
    border-radius: 50%;
    border: 2px solid #ED1C24;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

/* Checked state: show filled dot in brand color */
.form-check-input[type="radio"]:checked+.form-check-label::after {
    content: '';
    position: absolute;
    left: 0.34em;
    top: 0.47em;
    width: 0.52em;
    height: 0.52em;
    border-radius: 50%;
    background: #ED1C24;
}

/* Focused state (keyboard navigation UX) */
.form-check-input[type="radio"]:focus+.form-check-label::before {
    border-color: #E4666F;
    box-shadow: 0 0 0 2px #F6A7AE99;
}

.form-check {
    margin-bottom: 0.75em;
    min-width: 110px;
}

@media (max-width: 767.98px) {

    /* Make all columns in the form full width on tablets and smaller */
    #contact-us .contact-form .col-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Stack radios on mobiles and shrink font */
@media (max-width: 600px) {
    .form-check-inline {
        display: block;
        margin-right: 0 !important;
        margin-bottom: 0.45em;
    }

    .form-check-label {
        font-size: .97rem;
        padding-left: 1.7em;
    }
}

.btn-send {
    background: #ED1C24;
    color: #fff;
    border-radius: 2em;
    font-size: 1.13rem;
    padding: 0.9em 3.3em;
    font-weight: 700;
    border: none;
    transition: background 0.15s;
    margin-top: 16px;
    box-shadow: 0 2px 12px rgba(220, 40, 60, 0.08);
    font-family: 'Poppins', sans-serif;
}

.btn-send:hover,
.btn-send:focus {
    background: #c41d22;
    color: #fff;
}

#download-section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem 1.5rem;
    font-family: 'Poppins', sans-serif;
}

#download-section h2 {
    color: #ED1C24;
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
}

.download-group {
    margin-bottom: 2.5rem;
    background: #fff;
    border-radius: 0.6em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 1rem 1.2rem;
}

.download-group h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #ED1C24;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.download-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.download-group li {
    margin-bottom: 0.8rem;
}

.download-group a {
    color: #ED1C24;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    display: inline-block;
}

.download-group a:hover {
    color: #c41d22;
    text-decoration: underline;
}

#whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, background 0.2s;
}

#whatsapp-fab img {
    width: 40px;
    height: 40px;
    display: block;
}

#whatsapp-fab:hover,
#whatsapp-fab:focus {
    background: #1ebc54;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

/* Adjust size and bottom position for small screens */
@media (max-width: 600px) {
    #whatsapp-fab {
        width: 44px;
        height: 44px;
        bottom: 14px;
        right: 14px;
    }

    #whatsapp-fab img {
        width: 24px;
        height: 24px;
    }
}


/* Responsive tweaks */
@media (max-width: 600px) {
    #download-section {
        padding: 0.5rem 1rem;
    }

    .download-group {
        padding: 0.8rem 1rem;
    }
}

/* Responsive adjustments for tablets and mobile */
@media (max-width: 991px) {
    .btn-send {
        font-size: 1rem;
        /* slightly smaller font */
        padding: 0.7em 2.5em;
        /* reduced padding */
        margin-top: 12px;
    }
}

@media (max-width: 600px) {
    .btn-send {
        font-size: 0.85rem;
        /* smaller font for mobile */
        padding: 0.7em 2.5em;
        /* tighter padding */
        margin-top: 10px;
        /* width: 100%;            */
        box-sizing: border-box;
    }
}

@media (max-width: 991px) {
    .nf-footer {
        font-size: 0.97rem;
        padding: 1.2rem 0 0.7rem 0;
        text-align: center;
    }

    .footer-title {
        font-size: 1.03rem;
    }
}

@media (max-width: 575.98px) {
    .footer-actions .btn {
        font-size: 0.94rem;
        margin-bottom: 0.4rem;
        width: 100%;
        margin-right: 0;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* GAP between the two main columns */
@media (max-width: 1000px) {
    .news-section-title {
        font-size: 1.2rem;
    }

    .news-coverage-grid {
        grid-template-columns: 1fr;
        gap: 2.1rem 0;
        max-width: 98vw;
    }

    .news-main-img,
    .news-grid-img {
        max-width: 88vw;
    }

    .news-col {
        gap: 1.1rem;
    }
}

@media (max-width: 600px) {
    .news-section-title {
        font-size: 1.5rem;
        margin-top: 1.1rem;
    }

    .news-main-img,
    .news-grid-img {
        border-radius: 7px;
    }

    .news-col {
        gap: 0.7rem;
    }
}

@media (max-width: 700px) {
    .nt26-info-block {
        padding: 1.1rem 0.7rem 1.24rem 0.7rem;
        font-size: 0.99rem;
        border-radius: 0em !important;
    }

    .nt26-info-contact {
        font-size: 1.05rem;
    }

    .nt26-info-main {
        font-size: 1.07rem;
    }
}

@media (max-width: 900px) {
    .nt-flex-row {
        flex-direction: column;
        align-items: center;
        gap: 1.7rem;
    }

    .nt-col-right {
        max-width: 98vw;
        min-width: 0;
    }

    .nt-col-left {
        flex-direction: row;
        gap: 1.5rem;
        max-width: 98vw;
    }

    .nt-img {
        max-width: 43vw;
    }
}

@media (max-width: 600px) {
    .nt-flex-row {
        padding: 0 .3rem;
    }

    .nt-col-left {
        flex-direction: column !important;
        /* stack images vertically for mobiles */
        gap: 1.5rem;
    }

    .nt-img {
        max-width: 97vw;
    }

    .btn-send {
        padding: 0.4em, 2.5em !important;
    }
}


@media (max-width: 900px) {
    .hero-img-half {
        max-width: 99vw;
    }

    .hero-img-half-wrap {
        margin-bottom: -66px;
    }

    .nt26-red-section {
        /* border-radius: 0 0 22px 22px; */
        padding-top: 98px;
    }

    .btn-send {
        padding: 0.4em, 2.5em !important;
    }

    .nt26-title {
        font-size: 1.48rem;
    }
}

@media (max-width: 600px) {
    .hero-img-half {
        border-width: 3.5px;
        min-width: 0;
        border-radius: .7em;
    }

    .nt26-red-section {
        /* border-radius: 0 0 9px 9px; */
        padding-top: 58px;
    }

    .hero-img-half-wrap {
        margin-bottom: -33px;
    }

    .nt26-title {
        font-size: 1.35rem;
    }

    .nt26-benefit-title {
        font-size: 1.35rem;
    }

    .nt26-eligibility-box {
        font-size: .97rem;
    }

    .nt26-content-inner {
        padding: 0 0.16rem;
    }
}


@media (max-width: 991px) {
    .apply-main-row {
        flex-direction: column;
        gap: 1.7rem;
        padding: 2rem .7rem 2rem .7rem;
    }

    .apply-full-bg {
        padding: 0;
    }

    .apply-qr-side {
        margin-top: .5rem;
        padding: 1.2em .5em 1.4em .5em;
        border-radius: 1em;
    }

    .apply-qr-img {
        width: 130px;
        height: 130px;
        transform: scale(1.5);
        /* keep scale */

    }

    .apply-heading {
        font-size: 1.3rem;
    }

    .pointer-icon {
        font-size: 1.5em;
    }
}

@media (max-width: 600px) {
    .apply-full-bg {
        padding: 0;
    }

    .apply-main-row {
        padding: 1.1rem .2rem 1.1rem .2rem;
    }

    .apply-text-side {
        min-width: 0;
    }

    .apply-qr-img {
        width: 100px;
        height: 100px;
        transform: scale(1.5);
    }
}

@media (max-width: 768px) {
    .competition-center-section {
        flex-direction: column;
        gap: 1.4rem;
        padding: 1.4rem 0.4rem;
        text-align: center;
    }

    .competition-img {
        width: 63vw;
        max-width: 310px;
        margin: 0 auto;
    }

    .competition-content {
        max-width: 95vw;
        margin: 0 auto;
    }

    .competition-title {
        margin-bottom: .7em;
    }

    .competition-list {
        text-align: left;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .colored-div {
        font-size: 1.2rem;
        padding: 1.3rem 0.4rem;
        /* border-radius: 0.6em; */
        margin: 1.2rem 0.1rem;
    }
}

@media (max-width: 767px) {
    .org-logos img {
        height: 34px;
        width: 80px;
        transform: scale(1.18);
    }

    .talent-photo {
        max-width: 99vw;
    }
}

@media (max-width: 768px) {
    .hero-bg {
        min-height: 56vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-title {
        font-size: 1.3rem;
    }
}