/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .topbar .right {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0b2a4a;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
}

.topbar .right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
}

.social-icons svg {
    transition: 0.3s;
}

.social-icons a:hover svg {
    fill: #ffd700; /* hover color */
}
/* NAVBAR */
.navbar {
    height: 90px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 95px;
    width: auto;
    object-fit: contain;
}
/* NAV LINKS */
.navbar nav {
    display: flex;
    align-items: center;
}

.navbar nav a {
    margin: 0 18px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.navbar nav a:hover,
.navbar nav .active {
    color: #0b2a4a;
    border-bottom: 2px solid #0b2a4a;
}

/* BUTTONS */
.btn-primary {
    background: #0b2a4a;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid #0b2a4a;
    padding: 10px 20px;
    background: white;
}


/* =========================================================
   HOME HERO — FULLY RESPONSIVE
========================================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 650px;

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

    padding: 70px 8%;

    background-image: url('https://89million.tech/ukhec/public/images/hero-bg1.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;

    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 5;

    width: 55%;
    max-width: 720px;

    padding-right: 30px;
}

.hero-content h1 {
    margin: 0;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 700;

    color: #111;
}

.hero-content h1 span {
    color: #D21F26;
}

.hero-content .line {
    width: 65px;
    height: 4px;

    margin: 20px 0;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #0b2a4a,
        #D21F26
    );
}

.hero-content > p {
    max-width: 600px;

    margin: 0;

    color: #555;

    font-size: 17px;
    line-height: 1.75;
}

/* HERO IMAGE — kept for compatibility */
.hero-image {
    width: 45%;

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

.hero-image img {
    max-height: 600px;
    width: auto;
}

/* =========================================================
   HERO FEATURES
========================================================= */

.features {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;

    margin-top: 35px;
}

.feature-item {
    min-width: 0;

    text-align: center;
}

.feature-item .icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 10px;

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

    background: #0b2a4a;

    border-radius: 50%;

    transition: all 0.3s ease;
}

.feature-item:hover .icon {
    transform: translateY(-5px);

    background: #D21F26;

    box-shadow: 0 8px 20px rgba(11, 42, 74, 0.2);
}

.feature-item .icon svg {
    width: 28px;
    height: 28px;

    fill: #fff;
}

.feature-item p {
    margin: 0;

    color: #1a2a3a;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 28px;
}

.hero-buttons button {
    min-height: 48px;

    padding: 12px 24px;

    border-radius: 7px;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    border: 1px solid #0b2a4a;

    background: #0b2a4a;
    color: #fff;
}

.hero-buttons .btn-primary:hover {
    background: #D21F26;
    border-color: #D21F26;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(11, 42, 74, 0.2);
}

.hero-buttons .btn-outline {
    border: 1px solid #0b2a4a;

    background: #fff;

    color: #0b2a4a;
}

.hero-buttons .btn-outline:hover {
    background: #0b2a4a;
    color: #fff;

    transform: translateY(-2px);
}

/* =========================================================
   STEPS
========================================================= */

.steps {
    position: relative;
    z-index: 10;

    width: calc(100% - 120px);
    max-width: 1400px;

    margin: -55px auto 40px;

    padding: 28px 35px;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));

    gap: 15px;

    background: #0b2a4a;
    color: #fff;

    border-radius: 14px;

    box-shadow: 0 15px 35px rgba(11, 42, 74, 0.18);
}

.step {
    position: relative;

    text-align: center;

    padding: 5px 10px;
}

.step:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 10%;
    right: 0;

    width: 1px;
    height: 80%;

    background: rgba(255, 255, 255, 0.22);
}

.step h3 {
    margin: 0 0 5px;

    color: #D21F26;

    font-size: 25px;
    line-height: 1;

    font-weight: 700;
}

.step p {
    margin: 0;

    color: #fff;

    font-size: 14px;
    line-height: 1.4;

    font-weight: 500;
}

/* =========================================================
   UNIVERSITIES
========================================================= */

.universities {
    padding: 60px;

    text-align: center;
}

.logos {
    background: #f8f9fc;

    padding: 30px;

    border-radius: 10px;
}

.logos img {
    height: 45px;

    margin: 15px;
}

/* =========================================================
   HERO + STEPS TABLET
========================================================= */

@media (max-width: 1200px) {

    .hero {
        min-height: 620px;

        padding: 60px 5%;
    }

    .hero-content {
        width: 58%;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .features {
        gap: 12px;
    }

    .feature-item p {
        font-size: 12px;
    }

    .steps {
        width: calc(100% - 60px);

        padding: 25px 20px;
    }
}

/* =========================================================
   HERO + STEPS SMALL TABLET
========================================================= */

@media (max-width: 992px) {

    .hero {
        min-height: 650px;

        padding: 60px 5%;

        background-position: 130% center;
        background-size: 700px auto;
    }

    .hero-content {
        width: 65%;

        padding-right: 10px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);

        max-width: 500px;

        gap: 18px;
    }

    .feature-item {
        display: flex;

        align-items: center;

        gap: 10px;

        text-align: left;
    }

    .feature-item .icon {
        flex-shrink: 0;

        width: 55px;
        height: 55px;

        margin: 0;
    }

    .feature-item p {
        font-size: 13px;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);

        width: calc(100% - 40px);

        margin-top: -40px;
    }

    .step:nth-child(3)::after {
        display: none;
    }
}

/* =========================================================
   HERO + STEPS MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero {
        min-height: auto;

        display: block;

        padding: 55px 20px 70px;

        text-align: center;

        background-position: center bottom;
        background-size: 650px auto;
    }

    .hero::before {
        content: "";

        position: absolute;
        inset: 0;

        background: rgba(255, 255, 255, 0.78);

        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 5;

        width: 100%;
        max-width: 600px;

        margin: 0 auto;

        padding: 0;
    }

    .hero-content h1 {
        font-size: 32px;

        line-height: 1.2;
    }

    .hero-content .line {
        width: 55px;

        margin: 18px auto;
    }

    .hero-content > p {
        max-width: 100%;

        font-size: 15px;

        line-height: 1.7;
    }

    .features {
        width: 100%;
        max-width: 500px;

        margin: 30px auto 0;

        grid-template-columns: repeat(2, 1fr);

        gap: 22px 15px;
    }

    .feature-item {
        display: flex;

        flex-direction: column;

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

        gap: 0;

        text-align: center;
    }

    .feature-item .icon {
        width: 58px;
        height: 58px;

        margin: 0 auto 9px;
    }

    .feature-item .icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-item p {
        font-size: 12px;

        line-height: 1.45;
    }

    .hero-buttons {
        width: 100%;

        margin-top: 30px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }

    .hero-buttons button {
        width: 100%;

        min-height: 50px;

        padding: 13px 20px;

        font-size: 14px;
    }

    .steps {
        width: calc(100% - 30px);

        margin: -30px auto 30px;

        padding: 25px 18px;

        grid-template-columns: 1fr;

        gap: 0;

        border-radius: 14px;
    }

    .step {
        padding: 14px 10px;
    }

    .step:not(:last-child)::after {
        top: auto;
        right: 10%;

        bottom: 0;

        width: 80%;
        height: 1px;
    }

    .step:nth-child(3)::after {
        display: block;
    }

    .step h3 {
        font-size: 22px;

        margin-bottom: 4px;
    }

    .step p {
        font-size: 13px;
    }
}

/* =========================================================
   HERO + STEPS SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero {
        padding: 45px 16px 60px;

        background-size: 570px auto;

        background-position: center bottom;
    }

    .hero::before {
        background: rgba(255, 255, 255, 0.84);
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content > p {
        font-size: 14px;

        line-height: 1.65;
    }

    .features {
        gap: 20px 8px;
    }

    .feature-item .icon {
        width: 52px;
        height: 52px;
    }

    .feature-item .icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-item p {
        font-size: 11px;
    }

    .steps {
        width: calc(100% - 24px);

        margin-top: -25px;

        padding: 18px 15px;
    }

    .step {
        padding: 12px 8px;
    }

    .step h3 {
        font-size: 20px;
    }

    .step p {
        font-size: 12px;
    }
}

/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .hero {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-content h1 {
        font-size: 25px;
    }

    .hero-content > p {
        font-size: 13px;
    }

    .features {
        gap: 18px 5px;
    }

    .feature-item p {
        font-size: 10.5px;
    }

    .hero-buttons button {
        font-size: 13px;
    }
}

/* ABOUT SECTION */
.about-section {
    display: flex;
    align-items: stretch; /* Makes image and content same height */
    justify-content: space-between;
    padding: 80px 8%;
    gap: 60px;
    background: #f9fbfd;
        padding-bottom: 30px;

}

/* IMAGE FRAME */
.about-image {
    flex: 1;
    position: relative;
    overflow: visible;
    border-radius: 16px;
    min-height: 100%;
    display: flex;
    padding: 10px;
    border: 2px solid #0b2a4a;
    background: #fff;
    box-shadow: 0 12px 30px rgba(11, 42, 74, 0.15);
}

/* INNER IMAGE */
.about-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
    transition: all 0.5s ease;
    transform: scale(1);
}

/* PREMIUM INNER BORDER */
.about-image::before {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid rgba(210, 31, 38, 0.7);
    border-radius: 13px;
    z-index: 2;
    pointer-events: none;
}

/* HOVER */
.about-image:hover img {
    transform: scale(1.03);
}

/* OVERLAY */
.about-image::after {
    content: "";
    position: absolute;
    inset: 10px;
    background: linear-gradient(
        120deg,
        rgba(11, 42, 74, 0.15),
        rgba(210, 31, 38, 0.15)
    );
    border-radius: 10px;
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
    z-index: 1;
}

.about-image:hover::after {
    opacity: 1;
}
/* HOVER ZOOM */
.about-image:hover img {
    transform: scale(1.04);
}

/* SOFT OVERLAY GLOW */
.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(11,42,74,0.2),
        rgba(210,31,38,0.2)
    );
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

.about-image:hover::after {
    opacity: 1;
}

/* RIGHT CONTENT */
.about-content {
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* HEADING */
.about-content h2 {
    font-size: 36px;
    color: #0b2a4a;
    margin-bottom: 10px;
}

/* LINE */
.about-content .line {
    width: 60px;
    height: 3px;
    background: #D21F26;
    margin-bottom: 20px;
}

/* TEXT */
.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

/* HIGHLIGHTS */
.highlight {
    color: #0b2a4a;
    font-weight: 600;
}

.highlight-red {
    color: #D21F26;
    font-weight: 600;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    width: fit-content;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #0b2a4a, #D21F26);
    box-shadow: 0 6px 18px rgba(13, 42, 74, 0.3);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

/* SHINE */
.about-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transform: skewX(-25deg);
    transition: 0.5s;
}

/* BUTTON HOVER */
.about-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(210, 31, 38, 0.4);
}

.about-btn:hover::before {
    left: 130%;
}

/* MOBILE */
@media (max-width: 768px) {

    .about-section {
        flex-direction: column;
        padding: 50px 6%;
        gap: 35px;
        text-align: center;
    }

    .about-image {
        width: 100%;
        height: auto;
        min-height: auto;
    }

    .about-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .about-content {
        width: 100%;
        max-width: 100%;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content .line {
        margin-left: auto;
        margin-right: auto;
    }

    .about-btn {
        margin-left: auto;
        margin-right: auto;
    }
}
/* FOOTER MAIN */
.footer {
    background: linear-gradient(180deg, #0b2a4a 0%, #081f36 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.website-credit a {
    color: #d4af37 !important;
    font-weight: 600;
    text-decoration: none;
}

/* TOP STRIP */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 8%;
}

/* ITEM */
.footer-item {
    flex: 1;
    text-align: center;
    position: relative;
}

/* DIVIDER LINE */
.footer-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.2);
}

/* UCAS TEXT */
.ucas {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

/* ICON */
.footer-item .icon {
    font-size: 22px;
    margin-bottom: 6px;
}

/* TEXT */
.footer-item p {
    font-size: 13px;
    line-height: 1.5;
    color: #d0d8e5;
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
}

/* LINKS */
.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: #d0d8e5;
    text-decoration: none;
}

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






/* UCAS ITEM FIX */
.ucas-item {
    text-align: left;   /* 👈 IMPORTANT (center nahi hoga) */
}

/* SAME LINE LAYOUT */
.ucas-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ucas {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* CUSTOM A */
.custom-a {
    position: relative;
    color: #d32f2f;
    font-weight: 700;
}

/* HIDE MIDDLE LINE */
.custom-a::after {
    content: "";
    position: absolute;
    left: 15%;
    right: 15%;
    top: 52%;
    height: 2px;
    background: #0b2a4a; /* 👈 footer bg color */
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 25px;
    }

    .footer-item::after {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
@media(max-width: 768px) {

    .about-content {
        text-align: center;
    }

    .about-content .line {
        margin: 0 auto 20px;   /* 👈 THIS FIX */
    }

}

@media (max-width: 768px) {

    .about-image {
        width: 100%;
        min-height: auto;
        padding: 8px;
    }

    .about-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .about-image::before {
        inset: 4px;
    }

    .about-image::after {
        inset: 8px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    right: 25px;
    bottom: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20bd5a;
    color: #fff;
}

.whatsapp-float svg {
    width: 31px;
    height: 31px;
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #0b2a4a;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #0b2a4a;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Mobile */
@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}





/* about us pages */


/* =========================================
   ABOUT HERO
========================================= */

/* =========================================
   ABOUT HERO WITH UKHEC BACKGROUND
========================================= */

.about-hero {
    position: relative;

    min-height: 470px;

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

    padding: 80px 8%;

    text-align: center;

    background-image: url('https://89million.tech/ukhec/public/images/abouthero.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* Dark overlay for better text visibility */

.about-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(11, 42, 74, 0.55),
            rgba(11, 42, 74, 0.30)
        );

    z-index: 1;
}


/* Hero content */

.about-hero-content {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    color: #ffffff;
}


/* ABOUT UKHEC badge */

.about-hero-content > span {
    display: inline-block;

    margin-bottom: 22px;

    padding: 9px 20px;

    background: #ffffff;

    color: #D21F26;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* Main heading */

.about-hero-content h1 {
    margin: 0 auto 20px;

    max-width: 850px;

    color: #ffffff;

    font-size: 52px;

    line-height: 1.15;

    font-weight: 700;

    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.25);
}


/* Description */

.about-hero-content p {
    max-width: 700px;

    margin: 0 auto;

    color: #f4f4f4;

    font-size: 18px;

    line-height: 1.7;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.25);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .about-hero {
        min-height: 410px;

        padding: 65px 20px;

        background-position: center;
    }

    .about-hero-content > span {
        font-size: 11px;

        padding: 8px 15px;

        letter-spacing: 1.5px;
    }

    .about-hero-content h1 {
        font-size: 32px;

        line-height: 1.2;
    }

    .about-hero-content p {
        font-size: 15px;

        line-height: 1.6;
    }

}

/* =========================================
   MAIN ABOUT SECTION
========================================= */

.about-main-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-main-image {
    position: relative;
}

.about-main-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.about-main-content {
    padding: 10px 0;
}

.section-label {
    display: inline-block;
    color: #D21F26;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: 12px;
}

.about-main-content h2,
.why-content h2 {
    font-size: 40px;
    line-height: 1.2;
    color: #0b2a4a;
    margin: 0;
}

.about-main-content h2 span,
.why-content h2 span {
    color: #D21F26;
}

.about-line {
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, #0b2a4a, #D21F26);
    border-radius: 10px;
    margin: 22px 0;
}

.about-main-content p,
.why-content > p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-btn,
.cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #0b2a4a, #D21F26);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn:hover,
.cta-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 25px rgba(11, 42, 74, 0.25);
}


/* =========================================
   WHAT WE DO
========================================= */

.what-we-do {
    background: #f5f8fb;
    padding: 90px 8%;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading > span {
    color: #D21F26;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.section-heading h2 {
    margin: 12px 0;
    font-size: 40px;
    color: #0b2a4a;
}

.section-heading h2 strong {
    color: #D21F26;
}

.section-heading p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

.service-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(11, 42, 74, 0.07);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eef4f9;
    font-size: 28px;
}

.service-card h3 {
    color: #0b2a4a;
    font-size: 20px;
    margin-bottom: 14px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================
   WHY CHOOSE
========================================= */

.why-choose-section {
    max-width: 1200px;
    margin: auto;
    padding: 100px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
}

.experience-box {
    position: absolute;
    bottom: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-box strong {
    font-size: 38px;
    color: #D21F26;
}

.experience-box span {
    color: #0b2a4a;
    font-size: 14px;
    font-weight: 600;
}

.why-list {
    margin-top: 25px;
}

.why-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.why-icon {
    min-width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b2a4a;
    color: #fff;
    font-weight: bold;
}

.why-item h4 {
    margin: 0 0 5px;
    color: #0b2a4a;
    font-size: 17px;
}

.why-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   OUR APPROACH
========================================= */

.approach-section {
    background: #0b2a4a;
    padding: 90px 8%;
}

.approach-section .section-heading > span {
    color: #fff;
}

.approach-section .section-heading h2 {
    color: #fff;
}

.approach-section .section-heading h2 strong {
    color: #D21F26;
}

.approach-section .section-heading p {
    color: #d8e1e9;
}

.approach-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.approach-card {
    position: relative;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 15px;
    padding: 30px 25px;
    color: #fff;
}

.approach-card .number {
    font-size: 42px;
    font-weight: 700;
    color: #D21F26;
    margin-bottom: 15px;
}

.approach-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.approach-card p {
    color: #d8e1e9;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================
   CTA
========================================= */

.about-cta {
    padding: 90px 20px;
    background:
        linear-gradient(135deg, rgba(11,42,74,0.95), rgba(210,31,38,0.90)),
        url('https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?auto=format&fit=crop&w=1800&q=85');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: auto;
    color: #fff;
}

.about-cta-content > span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-cta h2 {
    font-size: 42px;
    line-height: 1.2;
    margin: 15px 0;
}

.about-cta h2 strong {
    color: #fff;
}

.about-cta p {
    max-width: 650px;
    margin: 0 auto 20px;
    font-size: 17px;
    line-height: 1.7;
    color: #f1f1f1;
}

.about-cta .cta-btn {
    background: #fff;
    color: #0b2a4a;
}

.about-cta .cta-btn:hover {
    color: #D21F26;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .about-hero-content h1 {
        font-size: 42px;
    }

    .about-main-section,
    .why-choose-section {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .about-hero {
        min-height: 400px;
        padding: 60px 20px;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

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

    .about-main-section,
    .why-choose-section {
        padding: 65px 20px;
    }

    .about-main-content h2,
    .why-content h2,
    .section-heading h2 {
        font-size: 30px;
    }

    .about-main-image img,
    .why-image img {
        height: 400px;
    }

    .service-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .what-we-do,
    .approach-section {
        padding: 65px 20px;
    }

    .about-cta {
        padding: 70px 20px;
    }

    .about-cta h2 {
        font-size: 32px;
    }

}



/* =========================================================
   UKHEC SERVICES PAGE
   Complete CSS for services.blade.php
========================================================= */


/* =========================================================
   GLOBAL SERVICES PAGE
========================================================= */

.services-hero,
.services-intro,
.service-detail-section,
.services-benefits,
.services-cta {
    box-sizing: border-box;
}

.services-hero *,
.services-intro *,
.service-detail-section *,
.services-benefits *,
.services-cta * {
    box-sizing: border-box;
}


/* =========================================================
   SERVICES HERO
========================================================= */

/* =========================================
   SERVICES HERO
========================================= */

.services-hero {
    position: relative;
    min-height: 500px;

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

    padding: 80px 8%;

    text-align: center;

    background-image: url('https://89million.tech/ukhec/public/images/abouthero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* Overlay */

.services-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(11, 42, 74, 0.35),
        rgba(11, 42, 74, 0.15)
    );

    z-index: 1;
}


/* Hero Content */

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

    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    color: #fff;
}


/* OUR SERVICES */

.services-hero-content > span {
    display: inline-block;

    margin-bottom: 20px;

    padding: 9px 20px;

    background: #fff;

    color: #D21F26;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* Heading */

.services-hero-content h1 {
    margin: 0 auto 20px;

    color: #fff;

    font-size: 50px;

    line-height: 1.15;

    font-weight: 700;

    text-shadow:
        0 3px 15px rgba(0, 0, 0, 0.25);
}


/* Red heading */

.services-hero-content h1 strong {
    color: #D21F26;

    font-weight: 700;
}


/* Description */

.services-hero-content p {
    max-width: 700px;

    margin: 0 auto;

    color: #f5f5f5;

    font-size: 18px;

    line-height: 1.7;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.25);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .services-hero {
        min-height: 450px;

        padding: 70px 30px;
    }

    .services-hero-content h1 {
        font-size: 42px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .services-hero {
        min-height: 420px;

        padding: 60px 20px;

        background-position: center;
    }

    .services-hero-content > span {
        padding: 8px 15px;

        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .services-hero-content h1 {
        font-size: 31px;

        line-height: 1.2;
    }

    .services-hero-content p {
        font-size: 15px;

        line-height: 1.6;
    }

}
/* =========================================================
   SERVICES INTRO
========================================================= */

.services-intro {
    width: 100%;

    padding: 90px 25px 65px;

    background: #ffffff;

    text-align: center;
}


.services-intro-content {
    width: 100%;

    max-width: 850px;

    margin: 0 auto;
}


/* Section label */

.section-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #D21F26;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


/* Intro heading */

.services-intro h2 {
    margin: 8px 0 12px;

    color: #0b2a4a;

    font-size: 40px;

    line-height: 1.2;

    font-weight: 700;
}


.services-intro h2 span {
    color: #D21F26;
}


/* Divider */

.services-line {
    width: 65px;

    height: 4px;

    margin: 20px 0;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #0b2a4a,
            #D21F26
        );
}


/* Center divider inside intro */

.services-intro .services-line {
    margin: 20px auto 25px;
}


/* Intro paragraphs */

.services-intro p {
    margin: 0 0 15px;

    color: #666666;

    font-size: 16px;

    line-height: 1.8;
}


.services-intro p strong {
    color: #0b2a4a;

    font-weight: 700;
}


/* =========================================================
   SERVICE DETAIL SECTION
========================================================= */

.service-detail-section {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 80px 30px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    align-items: center;
}


/* Alternate service section */

.service-detail-section.reverse {
    direction: rtl;
}


.service-detail-section.reverse
.service-detail-content,

.service-detail-section.reverse
.service-detail-image {
    direction: ltr;
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.service-detail-image {
    position: relative;

    width: 100%;

    overflow: visible;
}


.service-detail-image img {
    display: block;

    width: 100%;

    height: 470px;

    object-fit: cover;

    object-position: center;

    border-radius: 20px;

    box-shadow:
        0 15px 40px
        rgba(11, 42, 74, 0.13);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* Image hover */

.service-detail-image:hover img {
    transform: translateY(-4px);

    box-shadow:
        0 20px 45px
        rgba(11, 42, 74, 0.18);
}


/* =========================================================
   SERVICE NUMBER
========================================================= */

.service-number {
    position: absolute;

    left: 25px;

    bottom: 25px;

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #0b2a4a,
            #D21F26
        );

    color: #ffffff;

    font-size: 21px;

    font-weight: 700;

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.22);

    z-index: 2;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-detail-content {
    width: 100%;

    padding: 5px 0;
}


/* Service label */

.service-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #D21F26;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* Service title */

.service-detail-content h2 {
    margin: 5px 0 10px;

    color: #0b2a4a;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 700;
}


.service-detail-content h2 span {
    color: #D21F26;
}


/* Service paragraphs */

.service-detail-content p {
    margin: 0 0 16px;

    color: #666666;

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.service-list {
    list-style: none;

    margin: 25px 0 0;

    padding: 0;
}


.service-list li {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 14px;

    color: #444444;

    font-size: 14px;

    line-height: 1.65;
}


/* Check icon */

.service-list li span {
    flex-shrink: 0;

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 1px;

    border-radius: 50%;

    background: #0b2a4a;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;
}


/* =========================================================
   SERVICE PRICE
========================================================= */

.service-price {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 28px;

    padding-top: 5px;
}


/* Price label */

.service-price small {
    display: block;

    margin-bottom: 3px;

    color: #777777;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* Price */

.service-price > div:first-child strong {
    display: block;

    color: #0b2a4a;

    font-size: 30px;

    line-height: 1.1;

    font-weight: 700;
}


/* Introductory offer */

.intro-offer {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding: 11px 16px;

    border-radius: 8px;

    background: #fff1f1;

    color: #D21F26;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.5px;

    line-height: 1.4;
}


.intro-offer strong {
    display: inline !important;

    color: #D21F26 !important;

    font-size: 20px !important;

    line-height: 1 !important;

    margin: 0;
}


/* Price note */

.service-detail-content .price-note {
    margin-top: 9px;

    margin-bottom: 0;

    color: #777777;

    font-size: 13px;

    font-style: italic;

    line-height: 1.6;
}


/* =========================================================
   SERVICE SECTION BACKGROUND ALTERNATION
========================================================= */

.service-detail-section:nth-of-type(odd) {
    background: #ffffff;
}


/* Optional subtle separation */

.service-detail-section + .service-detail-section {
    border-top: 1px solid #eeeeee;
}


/* =========================================================
   SERVICES BENEFITS
========================================================= */

.services-benefits {
    width: 100%;

    padding: 95px 8%;

    background: #f5f8fb;
}


/* Section heading */

.section-heading {
    max-width: 760px;

    margin: 0 auto 50px;

    text-align: center;
}


.section-heading > span {
    display: inline-block;

    color: #D21F26;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.section-heading h2 {
    margin: 12px 0;

    color: #0b2a4a;

    font-size: 40px;

    line-height: 1.2;

    font-weight: 700;
}


.section-heading h2 strong {
    color: #D21F26;
}


.section-heading p {
    margin: 0;

    color: #666666;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   BENEFITS GRID
========================================================= */

.benefits-grid {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


/* Benefit card */

.benefit-card {
    padding: 35px 25px;

    background: #ffffff;

    border-radius: 16px;

    text-align: center;

    box-shadow:
        0 8px 30px
        rgba(11, 42, 74, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.benefit-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px
        rgba(11, 42, 74, 0.12);
}


/* Benefit icon */

.benefit-icon {
    width: 65px;

    height: 65px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eef4f9;

    color: #0b2a4a;

    font-size: 27px;
}


/* Benefit title */

.benefit-card h3 {
    margin: 0 0 12px;

    color: #0b2a4a;

    font-size: 19px;

    line-height: 1.3;
}


/* Benefit paragraph */

.benefit-card p {
    margin: 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   SERVICES CTA
========================================================= */

.services-cta {
    position: relative;

    width: 100%;

    padding: 95px 20px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(11, 42, 74, 0.96),
            rgba(210, 31, 38, 0.90)
        ),
        url('https://images.unsplash.com/photo-1498243691581-b145c3f54a5a?auto=format&fit=crop&w=1800&q=85');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}


.services-cta-content {
    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: 0 auto;

    color: #ffffff;
}


/* CTA label */

.services-cta-content > span {
    display: inline-block;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* CTA heading */

.services-cta h2 {
    margin: 15px 0;

    color: #ffffff;

    font-size: 43px;

    line-height: 1.2;

    font-weight: 700;
}


.services-cta h2 strong {
    color: #ffffff;
}


/* CTA paragraph */

.services-cta p {
    max-width: 680px;

    margin: 0 auto 27px;

    color: #f2f2f2;

    font-size: 17px;

    line-height: 1.7;
}


/* CTA button */

.services-cta-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 32px;

    border-radius: 50px;

    background: #ffffff;

    color: #0b2a4a;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease;
}


.services-cta-btn:hover {
    color: #D21F26;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.2);
}


/* =========================================================
   FOOTER COMPATIBILITY
========================================================= */

.footer {
    width: 100%;

    margin: 0;

    padding: 0;
}


/* =========================================================
   WHATSAPP FLOATING BUTTON
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #25D366;

    text-decoration: none;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.20);

    z-index: 9999;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.whatsapp-float:hover {
    transform: scale(1.08);

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.25);
}


.whatsapp-float svg {
    display: block;
}


/* WhatsApp tooltip */

.whatsapp-tooltip {
    position: absolute;

    right: 72px;

    top: 50%;

    transform:
        translateY(-50%)
        translateX(8px);

    padding: 8px 13px;

    background: #0b2a4a;

    color: #ffffff;

    border-radius: 6px;

    white-space: nowrap;

    font-size: 13px;

    font-weight: 500;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(-50%)
        translateX(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .services-hero {
        padding-left: 6%;
        padding-right: 6%;
    }


    .services-hero-content h1 {
        font-size: 46px;
    }


    .service-detail-section {
        max-width: 100%;

        padding-left: 35px;
        padding-right: 35px;

        gap: 50px;
    }


    .service-detail-image img {
        height: 430px;
    }


    .service-detail-content h2 {
        font-size: 34px;
    }


    .benefits-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        max-width: 800px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 900px) {

    .services-hero {
        min-height: 430px;
    }


    .services-hero-content h1 {
        font-size: 42px;
    }


    .services-intro {
        padding-top: 75px;
    }


    .service-detail-section {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-top: 70px;
        padding-bottom: 70px;
    }


    /*
       On tablet, keep image first for
       both normal and reverse sections.
    */

    .service-detail-section.reverse {
        direction: ltr;
    }


    .service-detail-section.reverse
    .service-detail-content,

    .service-detail-section.reverse
    .service-detail-image {
        direction: ltr;
    }


    .service-detail-image img {
        height: 450px;
    }


    .service-detail-content {
        max-width: 850px;

        margin: 0 auto;
    }


    .services-benefits {
        padding-left: 6%;
        padding-right: 6%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* -------------------------
       HERO
    ------------------------- */

    .services-hero {
        min-height: 410px;

        padding:
            65px
            20px;
    }


    .services-hero-content > span {
        margin-bottom: 17px;

        padding:
            8px
            15px;

        font-size: 11px;

        letter-spacing: 1.5px;
    }


    .services-hero-content h1 {
        font-size: 32px;

        line-height: 1.18;
    }


    .services-hero-content p {
        font-size: 15px;

        line-height: 1.6;
    }


    /* -------------------------
       INTRO
    ------------------------- */

    .services-intro {
        padding:
            65px
            20px
            40px;
    }


    .services-intro h2 {
        font-size: 30px;

        line-height: 1.25;
    }


    .services-intro p {
        font-size: 14px;

        line-height: 1.75;
    }


    /* -------------------------
       SERVICE
    ------------------------- */

    .service-detail-section {
        padding:
            55px
            20px;

        gap: 32px;
    }


    .service-detail-image img {
        height: 330px;

        border-radius: 15px;
    }


    .service-number {
        left: 18px;

        bottom: 18px;

        width: 58px;

        height: 58px;

        font-size: 17px;
    }


    .service-label {
        font-size: 11px;

        letter-spacing: 1.5px;
    }


    .service-detail-content h2 {
        font-size: 29px;

        line-height: 1.25;
    }


    .service-detail-content p {
        font-size: 14px;

        line-height: 1.75;
    }


    /* -------------------------
       LIST
    ------------------------- */

    .service-list {
        margin-top: 20px;
    }


    .service-list li {
        gap: 9px;

        margin-bottom: 12px;

        font-size: 13px;

        line-height: 1.6;
    }


    .service-list li span {
        width: 23px;

        height: 23px;

        font-size: 10px;
    }


    /* -------------------------
       PRICE
    ------------------------- */

    .service-price {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

        margin-top: 24px;
    }


    .service-price > div:first-child strong {
        font-size: 28px;
    }


    .intro-offer {
        width: fit-content;

        padding:
            10px
            13px;

        font-size: 11px;
    }


    .intro-offer strong {
        font-size: 18px !important;
    }


    .service-detail-content .price-note {
        font-size: 12px;

        line-height: 1.6;
    }


    /* -------------------------
       BENEFITS
    ------------------------- */

    .services-benefits {
        padding:
            65px
            20px;
    }


    .section-heading {
        margin-bottom: 35px;
    }


    .section-heading h2 {
        font-size: 30px;

        line-height: 1.25;
    }


    .section-heading p {
        font-size: 14px;

        line-height: 1.7;
    }


    .benefits-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .benefit-card {
        padding: 30px 22px;
    }


    /* -------------------------
       CTA
    ------------------------- */

    .services-cta {
        padding:
            70px
            20px;
    }


    .services-cta h2 {
        font-size: 31px;

        line-height: 1.25;
    }


    .services-cta p {
        font-size: 14px;

        line-height: 1.7;
    }


    .services-cta-btn {
        width: 100%;

        max-width: 280px;

        padding:
            14px
            25px;
    }


    /* -------------------------
       WHATSAPP
    ------------------------- */

    .whatsapp-float {
        right: 18px;

        bottom: 18px;

        width: 55px;

        height: 55px;
    }


    .whatsapp-tooltip {
        display: none;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .services-hero-content h1 {
        font-size: 28px;
    }


    .services-intro h2,
    .section-heading h2 {
        font-size: 27px;
    }


    .service-detail-content h2 {
        font-size: 26px;
    }


    .service-detail-image img {
        height: 290px;
    }


    .services-cta h2 {
        font-size: 28px;
    }

}



/*service/*


/* =========================================
   TRUSTED SECTION
========================================= */

.trusted-section {
    width: 100%;
    padding: 75px 0 80px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.trusted-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 45px;
    padding: 0 20px;
}

.trusted-heading > span {
    display: inline-block;

    margin-bottom: 10px;

    color: #D21F26;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.trusted-heading h2 {
    margin: 0;

    color: #0b2a4a;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 700;
}

.trusted-heading h2 strong {
    color: #D21F26;

    font-weight: 700;
}


/* Heading line */

.trusted-line {
    width: 65px;

    height: 4px;

    margin: 20px auto 0;

    border-radius: 10px;

    background: linear-gradient(
        90deg,
        #0b2a4a,
        #D21F26
    );
}


/* =========================================
   MARQUEE
========================================= */

.trusted-marquee {
    width: 100%;

    overflow: hidden;

    position: relative;
}


/* Moving track */

.trusted-track {
    display: flex;

    align-items: center;

    width: max-content;

    animation: trustedMarquee 20s linear infinite;
}


/* =========================================
   LOGO BOX
========================================= */

.trusted-logo {
    width: 280px;

    height: 130px;

    margin: 0 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px 30px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 14px;

    box-shadow:
        0 6px 25px
        rgba(11, 42, 74, 0.07);

    transition: 0.3s ease;
}


/* Logo */

.trusted-logo img {
    max-width: 100%;

    max-height: 85px;

    width: auto;

    height: auto;

    object-fit: contain;

    display: block;
}


/* Hover */

.trusted-logo:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px
        rgba(11, 42, 74, 0.12);
}


/* =========================================
   MARQUEE ANIMATION
========================================= */

@keyframes trustedMarquee {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* Pause when mouse over */

.trusted-marquee:hover .trusted-track {
    animation-play-state: paused;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .trusted-section {
        padding: 65px 0;
    }

    .trusted-heading h2 {
        font-size: 34px;
    }

    .trusted-logo {
        width: 240px;

        height: 115px;

        margin: 0 18px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .trusted-section {
        padding: 55px 0 60px;
    }

    .trusted-heading {
        margin-bottom: 30px;
    }

    .trusted-heading > span {
        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .trusted-heading h2 {
        font-size: 28px;
    }

    .trusted-logo {
        width: 200px;

        height: 100px;

        margin: 0 12px;

        padding: 15px 20px;
    }

    .trusted-logo img {
        max-height: 70px;
    }

}

.trusted-logo a {
    width: 100%;
    height: 100%;

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

    text-decoration: none;
}

.trusted-logo a img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.trusted-logo a:hover img {
    transform: scale(1.05);
}


/* =========================================================
   ACCREDITATIONS PAGE
   UKHEC - UK Higher Education Consulting
========================================================= */

.accreditation-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   ACCREDITATION HERO
========================================================= */

/* =========================================================
   ACCREDITATION HERO - MODERN UKHEC DESIGN
========================================================= */

.accreditation-hero {
    width: 100%;
    min-height: 480px;

    display: flex;
    align-items: stretch;

    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(11, 42, 74, 0.98) 0%,
            rgba(11, 42, 74, 0.96) 48%,
            rgba(11, 42, 74, 0.82) 100%
        ),
        url("../images/abouthero.png");

    background-size: cover;
    background-position: center;

    padding: 0 7%;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.accreditation-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -180px;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;

    pointer-events: none;
}

.accreditation-hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -100px;
    bottom: -180px;

    border: 1px solid rgba(210,31,38,0.25);
    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.accreditation-hero-content {
    width: 55%;
    max-width: 720px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 30px 70px 0;

    position: relative;
    z-index: 5;

    color: #fff;
}


/* =========================================================
   BADGE
========================================================= */

.accreditation-badge {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    padding: 9px 18px;

    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50px;

    background: rgba(255,255,255,0.06);

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.7px;

    margin-bottom: 24px;

    backdrop-filter: blur(5px);
}


/* =========================================================
   HEADING
========================================================= */

.accreditation-hero h1 {
    margin: 0;

    font-size: clamp(38px, 4.5vw, 58px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1px;

    color: #fff;
}

.accreditation-hero h1 span {
    color: #d21f26;
}


/* =========================================================
   RED LINE
========================================================= */

.accreditation-line {
    width: 75px;
    height: 4px;

    margin: 25px 0;

    background: #d21f26;

    border-radius: 10px;

    position: relative;
}

.accreditation-line::after {
    content: "";

    position: absolute;

    left: 85px;
    top: 0;

    width: 25px;
    height: 4px;

    background: rgba(255,255,255,0.35);

    border-radius: 10px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.accreditation-hero p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,0.88);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   RIGHT IMAGE AREA
========================================================= */

.accreditation-hero-image {
    width: 45%;

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

    position: relative;
    z-index: 5;

    padding: 45px 0 45px 30px;

    flex-shrink: 0;
}


/* =========================================================
   IMAGE FRAME
========================================================= */

.accreditation-hero-image::before {
    content: "";

    position: absolute;

    width: min(430px, 90%);
    height: calc(100% - 90px);

    border: 1px solid rgba(255,255,255,0.16);

    border-radius: 25px;

    transform: rotate(3deg);

    background: rgba(255,255,255,0.025);

    pointer-events: none;
}


/* =========================================================
   IMAGE
========================================================= */

.accreditation-hero-image img {
    display: block;

    position: relative;
    z-index: 3;

    width: auto;

    max-width: 90%;
    max-height: 100%;

    object-fit: contain;

    object-position: center;

    border-radius: 18px;

    filter:
        drop-shadow(0 20px 35px rgba(0,0,0,0.28));

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}


/* IMAGE HOVER */

.accreditation-hero-image:hover img {
    transform: translateY(-6px) scale(1.02);

    filter:
        drop-shadow(0 28px 45px rgba(0,0,0,0.35));
}


/* =========================================================
   DESKTOP - LARGE
========================================================= */

@media (min-width: 1200px) {

    .accreditation-hero {
        min-height: 520px;
    }

    .accreditation-hero-content {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .accreditation-hero-image {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .accreditation-hero-image img {
        max-width: 470px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .accreditation-hero {
        min-height: 450px;

        padding: 0 5%;

        gap: 20px;
    }

    .accreditation-hero-content {
        width: 55%;

        padding: 55px 15px 55px 0;
    }

    .accreditation-hero-image {
        width: 45%;

        padding: 35px 0 35px 15px;
    }

    .accreditation-hero-image::before {
        width: 90%;
        height: calc(100% - 70px);
    }

    .accreditation-hero h1 {
        font-size: 42px;
    }

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

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .accreditation-hero {
        min-height: auto;

        display: flex;
        flex-direction: column;

        padding: 0 7% 45px;

        text-align: center;
    }


    /* LEFT */

    .accreditation-hero-content {
        width: 100%;
        max-width: 100%;

        padding: 60px 0 20px;

        align-items: center;
    }


    .accreditation-badge {
        margin-bottom: 20px;
    }


    .accreditation-hero h1 {
        font-size: 36px;

        line-height: 1.12;

        letter-spacing: -0.5px;
    }


    .accreditation-line {
        margin: 22px auto;
    }


    .accreditation-line::after {
        display: none;
    }


    .accreditation-hero p {
        max-width: 600px;

        font-size: 15px;

        line-height: 1.75;
    }


    /* RIGHT */

    .accreditation-hero-image {
        width: 100%;

        height: auto;
        min-height: 0;

        padding: 25px 0 10px;
    }


    .accreditation-hero-image::before {
        width: 80%;
        height: 90%;

        border-radius: 20px;
    }


    .accreditation-hero-image img {
        width: auto;

        max-width: 85%;

        max-height: 280px;

        height: auto;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .accreditation-hero {
        padding-left: 6%;
        padding-right: 6%;
        padding-bottom: 35px;
    }

    .accreditation-hero-content {
        padding-top: 45px;
    }

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

    .accreditation-badge {
        font-size: 9px;

        padding: 8px 14px;

        letter-spacing: 1.3px;
    }

    .accreditation-hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    .accreditation-hero-image {
        padding-top: 20px;
    }

    .accreditation-hero-image img {
        max-width: 90%;
        max-height: 230px;
    }

}
/* =========================================================
   GENERAL TYPOGRAPHY
========================================================= */

.section-label {
    display: inline-block;
    color: #d21f26;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-line {
    width: 65px;
    height: 4px;
    background: #d21f26;
    border-radius: 10px;
    margin: 20px 0 25px;
}

.accreditation-intro h2,
.accreditation-content h2,
.provider-content h2,
.student-benefits-heading h2,
.development-content h2,
.recognition-heading h2,
.common-purpose-card h2 {
    color: #0b2a4a;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0;
}

.accreditation-content h2 span,
.provider-content h2 span,
.student-benefits-heading h2 span,
.development-content h2 span,
.common-purpose-card h2 span {
    color: #d21f26;
}


/* =========================================================
   INTRO SECTION
========================================================= */

.accreditation-intro {
    padding: 90px 0 75px;
    background: #fff;
}

.accreditation-intro-content {
    max-width: 900px;
}

.accreditation-intro p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.accreditation-intro strong {
    color: #0b2a4a;
}


/* =========================================================
   LEVEL 2 ACCREDITATION
========================================================= */

.level-accreditation {
    padding: 90px 0;
    background: #f6f8fb;
}

.accreditation-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}


/* Accreditation visual card */

.accreditation-image-card {
    min-height: 390px;
    border-radius: 25px;
    background:
        linear-gradient(
            145deg,
            #0b2a4a,
            #123e67
        );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(11,42,74,0.18);
}

.accreditation-image-card::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}

.accreditation-image-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}

.recognition-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.recognition-circle span {
    color: #0b2a4a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.recognition-circle strong {
    color: #d21f26;
    font-size: 65px;
    line-height: 0.95;
    font-weight: 800;
}

.recognition-circle small {
    color: #0b2a4a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.recognition-year {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.accreditation-content p,
.provider-content p,
.development-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.accreditation-content strong,
.provider-content strong,
.development-content strong {
    color: #0b2a4a;
}


/* =========================================================
   TIMES HIGHER EDUCATION
========================================================= */

.accreditation-provider {
    padding: 100px 0;
    background: #fff;
}

.provider-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.provider-card {
    min-height: 300px;
    border-radius: 25px;
    background: #f6f8fb;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #e7ebef;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(11,42,74,0.12);
}

.provider-icon {
    width: 80px;
    height: 80px;
    background: #0b2a4a;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-icon svg {
    width: 38px;
    height: 38px;
    fill: #fff;
}

.provider-card h3 {
    color: #0b2a4a;
    font-size: 22px;
    margin: 0 0 12px;
    font-weight: 700;
}

.provider-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================================
   COMMON PURPOSE
========================================================= */

.common-purpose-section {
    padding: 80px 0;
    background: #f6f8fb;
}

.common-purpose-card {
    background: #fff;
    border-radius: 25px;
    padding: 50px 60px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 35px;
    align-items: center;
    border-left: 5px solid #d21f26;
    box-shadow: 0 15px 45px rgba(11,42,74,0.08);
}

.common-purpose-icon {
    width: 90px;
    height: 90px;
    background: #0b2a4a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.common-purpose-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.common-purpose-card p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin: 20px 0 0;
}

.common-purpose-card strong {
    color: #0b2a4a;
}


/* =========================================================
   STUDENT BENEFITS
========================================================= */

.student-benefits {
    padding: 100px 0;
    background: #fff;
}

.student-benefits-heading {
    max-width: 850px;
    margin-bottom: 55px;
}

.student-benefits-heading p {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-top: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.benefit-card {
    padding: 35px 30px;
    border-radius: 18px;
    background: #f6f8fb;
    border: 1px solid #e8edf2;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.benefit-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: #d21f26;
    transition: height 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(11,42,74,0.10);
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-number {
    color: #d21f26;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #0b2a4a;
    font-size: 20px;
    margin: 0 0 12px;
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================================
   CONTINUOUS DEVELOPMENT
========================================================= */

.development-section {
    padding: 100px 0;
    background: #f6f8fb;
}

.development-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.development-image {
    min-height: 430px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(11,42,74,0.88),
            rgba(210,31,38,0.72)
        ),
        url("../images/about_us.png");

    background-size: cover;
    background-position: center;
}

.development-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    color: #fff;
}

.development-overlay span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.development-overlay h3 {
    max-width: 300px;
    font-size: 40px;
    line-height: 1.15;
    margin: 0;
}

.development-overlay strong {
    color: #fff;
    display: block;
}

.accreditation-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #0b2a4a, #d21f26);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accreditation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11,42,74,0.20);
    color: #fff;
}


/* =========================================================
   PROFESSIONAL RECOGNITION SUMMARY
========================================================= */

.recognition-summary {
    padding: 100px 0;
    background: #fff;
}

.recognition-heading {
    text-align: center;
    margin-bottom: 50px;
}

.recognition-heading .section-line {
    margin: 20px auto 0;
}

.recognition-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e3e8ed;
}

.recognition-detail {
    min-height: 150px;
    padding: 30px 25px;
    background: #f6f8fb;
    border-right: 1px solid #e3e8ed;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recognition-detail:last-child {
    border-right: none;
}

.detail-label {
    display: block;
    color: #d21f26;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.recognition-detail strong {
    color: #0b2a4a;
    font-size: 16px;
    line-height: 1.5;
}


/* =========================================================
   CTA
========================================================= */

.accreditation-cta {
    padding: 100px 20px;
    background:
        linear-gradient(
            135deg,
            rgba(11,42,74,0.97),
            rgba(11,42,74,0.90)
        ),
        url("../images/hero-bg1.png");

    background-size: cover;
    background-position: center;
    text-align: center;
}

.accreditation-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.accreditation-cta .section-label {
    color: #fff;
}

.accreditation-cta h2 {
    color: #fff;
    font-size: 42px;
    line-height: 1.25;
    margin: 10px 0 20px;
}

.accreditation-cta h2 span {
    color: #d21f26;
}

.accreditation-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #d21f26;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #fff;
    color: #0b2a4a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.20);
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .accreditation-hero {
        min-height: 430px;
        padding: 70px 6%;
    }

    .accreditation-hero h1 {
        font-size: 46px;
    }

    .accreditation-grid,
    .provider-grid,
    .development-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recognition-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .recognition-detail:nth-child(2) {
        border-right: none;
    }

    .recognition-detail:nth-child(-n+2) {
        border-bottom: 1px solid #e3e8ed;
    }

    .common-purpose-card {
        padding: 40px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .accreditation-container {
        width: 90%;
    }

    .accreditation-hero {
        min-height: 430px;
        padding: 60px 7%;
        background-position: center;
    }

    .accreditation-hero h1 {
        font-size: 36px;
    }

    .accreditation-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .accreditation-badge {
        font-size: 10px;
        padding: 8px 14px;
    }

    .accreditation-intro,
    .level-accreditation,
    .accreditation-provider,
    .student-benefits,
    .development-section,
    .recognition-summary {
        padding: 65px 0;
    }

    .accreditation-intro h2,
    .accreditation-content h2,
    .provider-content h2,
    .student-benefits-heading h2,
    .development-content h2,
    .recognition-heading h2,
    .common-purpose-card h2 {
        font-size: 29px;
    }

    .accreditation-intro p,
    .accreditation-content p,
    .provider-content p,
    .development-content p,
    .common-purpose-card p {
        font-size: 15px;
        line-height: 1.8;
    }

    .accreditation-image-card {
        min-height: 330px;
    }

    .recognition-circle {
        width: 160px;
        height: 160px;
    }

    .recognition-circle strong {
        font-size: 55px;
    }

    .provider-grid,
    .development-grid {
        gap: 35px;
    }

    .provider-card {
        min-height: 260px;
        padding: 40px 25px;
    }

    .common-purpose-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 35px 25px;
    }

    .common-purpose-icon {
        margin: 0 auto;
    }

    .common-purpose-card .section-line {
        margin-left: auto;
        margin-right: auto;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .benefit-card {
        padding: 30px 25px;
    }

    .development-image {
        min-height: 330px;
    }

    .development-overlay {
        padding: 35px;
    }

    .development-overlay h3 {
        font-size: 32px;
    }

    .recognition-details {
        grid-template-columns: 1fr;
    }

    .recognition-detail,
    .recognition-detail:nth-child(2) {
        border-right: none;
        border-bottom: 1px solid #e3e8ed;
    }

    .recognition-detail:last-child {
        border-bottom: none;
    }

    .accreditation-cta {
        padding: 70px 20px;
    }

    .accreditation-cta h2 {
        font-size: 30px;
    }

    .accreditation-cta p {
        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .accreditation-hero h1 {
        font-size: 31px;
    }

    .accreditation-hero {
        min-height: 400px;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .accreditation-intro h2,
    .accreditation-content h2,
    .provider-content h2,
    .student-benefits-heading h2,
    .development-content h2,
    .recognition-heading h2,
    .common-purpose-card h2 {
        font-size: 26px;
    }

    .accreditation-image-card {
        min-height: 300px;
    }

    .recognition-circle {
        width: 145px;
        height: 145px;
    }

    .recognition-circle strong {
        font-size: 48px;
    }

    .recognition-year {
        font-size: 16px;
    }

    .development-overlay h3 {
        font-size: 28px;
    }

}



/* =========================================================
   UKHEC - BOOKS PAGE
   Study Abroad Made Simple
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

.books-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.books-hero *,
.book-intro *,
.book-purchase *,
.book-author *,
.why-book *,
.book-credentials *,
.books-cta * {
    box-sizing: border-box;
}


/* =========================================================
   HERO
========================================================= */

.books-hero {
    width: 100%;
    min-height: 650px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(210, 31, 38, 0.18),
            transparent 32%
        ),
        linear-gradient(
            110deg,
            #071f38 0%,
            #0b2a4a 55%,
            #123d62 100%
        );
}

.books-hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: -220px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.books-hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -200px;
    bottom: -220px;

    border: 1px solid rgba(210, 31, 38, 0.16);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.books-hero-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);

    align-items: center;

    gap: 50px;

    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.books-hero-content {
    min-width: 0;

    padding: 70px 0;
}

.books-eyebrow {
    display: inline-flex;

    align-items: center;

    padding: 9px 17px;

    border: 1px solid rgba(255, 255, 255, 0.30);

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.04);

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;

    margin-bottom: 22px;
}

.books-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(44px, 5vw, 68px);

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -2px;
}

.books-hero h1 span {
    display: block;

    margin-top: 8px;

    color: #d21f26;
}

.books-hero-line {
    width: 80px;
    height: 4px;

    margin: 28px 0;

    border-radius: 10px;

    background: #d21f26;
}

.books-hero-content > p {
    max-width: 620px;

    margin: 0;

    color: rgba(255, 255, 255, 0.86);

    font-size: 17px;

    line-height: 1.85;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.books-hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-top: 32px;
}

.book-btn-primary,
.book-btn-outline {
    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 27px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.book-btn-primary {
    background: #d21f26;

    color: #ffffff;

    box-shadow: 0 10px 25px rgba(210, 31, 38, 0.25);
}

.book-btn-primary:hover {
    background: #ffffff;

    color: #0b2a4a;

    transform: translateY(-3px);
}

.book-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.45);

    background: rgba(255, 255, 255, 0.03);

    color: #ffffff;
}

.book-btn-outline:hover {
    background: #ffffff;

    color: #0b2a4a;

    transform: translateY(-3px);
}


/* =========================================================
   HERO TRUST
========================================================= */

.books-trust-row {
    display: flex;

    align-items: flex-start;

    gap: 35px;

    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.books-trust-item {
    display: flex;

    flex-direction: column;

    gap: 4px;

    min-width: 0;
}

.books-trust-item strong {
    color: #ffffff;

    font-size: 20px;

    font-weight: 700;
}

.books-trust-item span {
    color: rgba(255, 255, 255, 0.65);

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   HERO BOOK IMAGE
========================================================= */

.books-hero-image {
    width: 100%;
    min-width: 0;
    min-height: 590px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;
}

.book-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.14) 0%,
            rgba(210, 31, 38, 0.08) 45%,
            transparent 70%
        );

    filter: blur(5px);

    pointer-events: none;
}

.books-hero-image img {
    position: relative;

    z-index: 2;

    display: block;

    width: auto;

    max-width: 100%;

    height: 570px;

    object-fit: contain;

    filter: drop-shadow(
        0 30px 30px rgba(0, 0, 0, 0.35)
    );

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.books-hero-image:hover img {
    transform: translateY(-8px) rotate(1deg);

    filter: drop-shadow(
        0 40px 45px rgba(0, 0, 0, 0.42)
    );
}


/* =========================================================
   BOOK INTRO
========================================================= */

.book-intro {
    padding: 100px 0;

    background: #ffffff;
}

.book-intro-heading {
    max-width: 850px;

    margin-bottom: 65px;
}

.book-section-label {
    display: inline-block;

    margin-bottom: 13px;

    color: #d21f26;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.book-intro-heading h2,
.why-book-heading h2,
.credentials-heading h2 {
    margin: 0;

    color: #0b2a4a;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 700;
}

.book-intro-heading h2 span,
.why-book-heading h2 span,
.credentials-heading h2 span {
    color: #d21f26;
}

.book-red-line {
    width: 70px;
    height: 4px;

    margin: 22px 0;

    border-radius: 10px;

    background: #d21f26;
}

.book-intro-heading > p {
    margin: 0;

    color: #555555;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   BOOK MAIN
========================================================= */

.book-main-grid {
    display: grid;

    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);

    gap: 70px;

    align-items: center;
}


/* =========================================================
   BOOK IMAGE CARD
========================================================= */

.book-product-image {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}

.book-image-card {
    width: 100%;
    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

    padding: 30px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #f7f9fb,
            #edf1f5
        );

    box-shadow:
        0 20px 55px rgba(11, 42, 74, 0.10);
}

.book-image-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

    background: rgba(210, 31, 38, 0.06);

    pointer-events: none;
}

.book-image-card img {
    position: relative;

    z-index: 2;

    display: block;

    width: auto;

    max-width: 90%;

    height: 480px;

    object-fit: contain;

    filter: drop-shadow(
        0 25px 25px rgba(0, 0, 0, 0.20)
    );
}


/* =========================================================
   BOOK CONTENT
========================================================= */

.book-product-content {
    min-width: 0;
}

.book-product-content h3 {
    margin: 0 0 20px;

    color: #0b2a4a;

    font-size: 31px;

    line-height: 1.3;
}

.book-product-content > p {
    margin: 0 0 35px;

    color: #666666;

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================================
   BENEFITS
========================================================= */

.book-benefits {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.book-benefit {
    min-width: 0;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 20px;

    border: 1px solid #e7ebef;

    border-radius: 15px;

    background: #f7f9fb;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.book-benefit:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 30px rgba(11, 42, 74, 0.08);
}

.book-benefit-icon {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #d21f26;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;
}

.book-benefit h4 {
    margin: 0 0 5px;

    color: #0b2a4a;

    font-size: 16px;
}

.book-benefit p {
    margin: 0;

    color: #666666;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   BOOK PURCHASE
========================================================= */

.book-purchase {
    padding: 90px 0;

    background: #f5f7fa;
}

.book-purchase-card {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 330px;

    gap: 50px;

    align-items: center;

    padding: 55px 60px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #0b2a4a,
            #123e65
        );

    box-shadow:
        0 25px 60px rgba(11, 42, 74, 0.15);
}

.purchase-info {
    min-width: 0;
}

.purchase-info h2 {
    margin: 0;

    color: #ffffff;

    font-size: 36px;

    line-height: 1.25;
}

.purchase-info h2 span {
    color: #d21f26;
}

.purchase-info .book-section-label {
    color: #ffffff;
}

.purchase-info .book-red-line {
    margin-bottom: 30px;
}


/* =========================================================
   BOOK SPECIFICATIONS
========================================================= */

.book-specifications {
    display: flex;

    align-items: flex-start;

    flex-wrap: wrap;

    gap: 30px;
}

.book-spec {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.book-spec span {
    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.book-spec strong {
    color: #ffffff;

    font-size: 15px;
}


/* =========================================================
   PRICE
========================================================= */

.purchase-price {
    width: 100%;

    padding: 30px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.08);
}

.price-label {
    display: block;

    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 13px;
}

.book-price {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 46px;

    font-weight: 800;
}

.buy-book-btn {
    width: 100%;
    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    padding: 0 25px;

    border-radius: 50px;

    background: #d21f26;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.buy-book-btn:hover {
    background: #ffffff;

    color: #0b2a4a;

    transform: translateY(-3px);
}

.buy-book-btn span {
    font-size: 20px;
}

.purchase-price small {
    display: block;

    margin-top: 15px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
}


/* =========================================================
   AUTHOR
========================================================= */

.book-author {
    padding: 110px 0;

    background: #ffffff;
}

.author-grid {
    display: grid;

    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);

    gap: 80px;

    align-items: center;
}

.author-visual {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}

.author-card {
    width: 100%;
    max-width: 390px;
    min-height: 420px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;

    padding: 40px;

    border-radius: 25px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #0b2a4a,
            #123e65
        );

    box-shadow:
        0 25px 55px rgba(11, 42, 74, 0.18);
}

.author-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -150px;
    right: -100px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.author-card > span {
    position: relative;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.60);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}

.author-avatar {
    width: 220px;
    height: 220px;

    flex: 0 0 220px;

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

    margin-bottom: 28px;

    border-radius: 50%;

    overflow: hidden;

    background: #ffffff;

    border: 6px solid rgba(255, 255, 255, 0.30);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.30);

    position: relative;
    z-index: 3;
}

.author-avatar img {
    width: 100%;
    height: 100%;

    display: block;

    border-radius: 50%;

    object-fit: cover;

    object-position: center top;
}
.author-card h3 {
    position: relative;

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 28px;
}

.author-card p {
    position: relative;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   AUTHOR CONTENT
========================================================= */

.author-content {
    min-width: 0;
}

.author-content h2 {
    margin: 0;

    color: #0b2a4a;

    font-size: 42px;

    line-height: 1.2;
}

.author-content h2 span {
    color: #d21f26;
}

.author-content h4 {
    margin: 10px 0 0;

    color: #777777;

    font-size: 15px;

    font-weight: 500;
}

.author-content > p {
    margin: 0 0 18px;

    color: #666666;

    font-size: 16px;

    line-height: 1.9;
}

.author-content strong {
    color: #0b2a4a;
}


/* =========================================================
   AUTHOR HIGHLIGHTS
========================================================= */

.author-highlights {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 15px;

    margin-top: 35px;
}

.author-highlight {
    min-width: 0;

    padding: 20px;

    border: 1px solid #e5e9ed;

    border-radius: 15px;

    background: #f5f7fa;
}

.author-highlight strong {
    display: block;

    margin-bottom: 6px;

    color: #d21f26;

    font-size: 22px;
}

.author-highlight span {
    color: #555555;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   WHY THIS BOOK
========================================================= */

.why-book {
    padding: 105px 0;

    background: #f5f7fa;
}

.why-book-heading {
    max-width: 850px;

    margin-bottom: 55px;
}

.why-book-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.why-book-card {
    min-width: 0;

    position: relative;

    overflow: hidden;

    padding: 35px 30px;

    border: 1px solid #e5e9ed;

    border-radius: 18px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.why-book-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #d21f26;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;
}

.why-book-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(11, 42, 74, 0.10);
}

.why-book-card:hover::before {
    transform: scaleX(1);
}

.why-number {
    margin-bottom: 20px;

    color: #d21f26;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}

.why-book-card h3 {
    margin: 0 0 12px;

    color: #0b2a4a;

    font-size: 20px;

    line-height: 1.3;
}

.why-book-card p {
    margin: 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   TRUST & CREDENTIALS
========================================================= */

.book-credentials {
    padding: 100px 0;

    background: #ffffff;
}

.credentials-heading {
    margin-bottom: 55px;

    text-align: center;
}

.credentials-heading .book-red-line {
    margin-left: auto;
    margin-right: auto;
}

.credentials-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.credential-item {
    min-width: 0;
    min-height: 190px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 30px 20px;

    border: 1px solid #e5e9ed;

    border-radius: 18px;

    background: #f5f7fa;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(11, 42, 74, 0.08);
}

.credential-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #0b2a4a;

    color: #ffffff;

    font-size: 20px;
}

.credential-item h3 {
    margin: 0;

    color: #0b2a4a;

    font-size: 15px;

    line-height: 1.5;
}


/* =========================================================
   FINAL CTA
========================================================= */

.books-cta {
    position: relative;

    overflow: hidden;

    padding: 105px 20px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(210, 31, 38, 0.18),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071f38,
            #0b2a4a
        );

    text-align: center;
}

.books-cta-content {
    max-width: 800px;

    margin: 0 auto;

    position: relative;

    z-index: 2;
}

.books-cta .book-section-label {
    color: #ffffff;
}

.books-cta h2 {
    margin: 10px 0 20px;

    color: #ffffff;

    font-size: 46px;

    line-height: 1.2;
}

.books-cta h2 span {
    color: #d21f26;
}

.books-cta p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;

    line-height: 1.8;
}

.books-cta .buy-book-btn {
    width: auto;

    padding: 0 35px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .books-hero {
        min-height: auto;
    }

    .books-hero-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.8fr);

        gap: 30px;
    }

    .books-hero-content {
        padding: 60px 0;
    }

    .books-hero h1 {
        font-size: 48px;
    }

    .books-hero-image {
        min-height: 500px;
    }

    .books-hero-image img {
        height: 480px;
    }

    .book-main-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        gap: 40px;
    }

    .book-image-card {
        min-height: 450px;
    }

    .book-image-card img {
        height: 410px;
    }

    .book-purchase-card {
        grid-template-columns:
            minmax(0, 1fr)
            280px;

        padding: 45px;
    }

    .author-grid {
        gap: 50px;
    }

    .why-book-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .credentials-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .books-container {
        width: 90%;
    }

    /* HERO */

    .books-hero {
        min-height: auto;

        padding-bottom: 30px;
    }

    .books-hero-container {
        width: 90%;

        display: flex;

        flex-direction: column;

        gap: 20px;

        text-align: center;
    }

    .books-hero-content {
        padding: 55px 0 10px;
    }

    .books-eyebrow {
        font-size: 9px;

        letter-spacing: 1.4px;
    }

    .books-hero h1 {
        font-size: 38px;

        letter-spacing: -1px;
    }

    .books-hero-line {
        margin: 22px auto;
    }

    .books-hero-content > p {
        font-size: 15px;

        line-height: 1.75;
    }

    .books-hero-buttons {
        justify-content: center;
    }

    .book-btn-primary,
    .book-btn-outline {
        min-height: 48px;

        padding: 0 22px;
    }

    .books-trust-row {
        justify-content: center;

        gap: 20px;

        margin-top: 30px;
    }

    .books-trust-item strong {
        font-size: 17px;
    }

    .books-trust-item span {
        font-size: 9px;
    }

    .books-hero-image {
        width: 100%;

        min-height: 390px;
    }

    .books-hero-image img {
        height: 390px;

        max-width: 90%;
    }

    .book-glow {
        width: 300px;
        height: 300px;
    }


    /* SECTIONS */

    .book-intro,
    .book-purchase,
    .book-author,
    .why-book,
    .book-credentials {
        padding: 70px 0;
    }

    .book-intro-heading h2,
    .why-book-heading h2,
    .credentials-heading h2 {
        font-size: 31px;
    }


    /* BOOK */

    .book-main-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .book-image-card {
        min-height: 430px;

        padding: 25px;
    }

    .book-image-card img {
        height: 400px;

        max-width: 85%;
    }

    .book-product-content h3 {
        font-size: 26px;
    }

    .book-benefits {
        grid-template-columns: 1fr;
    }


    /* PURCHASE */

    .book-purchase-card {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 35px 25px;

        text-align: center;
    }

    .purchase-info .book-red-line {
        margin-left: auto;
        margin-right: auto;
    }

    .book-specifications {
        justify-content: center;
    }


    /* AUTHOR */

    .author-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .author-card {
        min-height: 360px;
    }

    .author-content h2 {
        font-size: 34px;
    }

    .author-highlights {
        grid-template-columns: 1fr;
    }


    /* WHY BOOK */

    .why-book-grid {
        grid-template-columns: 1fr;
    }


    /* CREDENTIALS */

    .credentials-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 15px;
    }

    .credential-item {
        min-height: 170px;

        padding: 25px 15px;
    }


    /* CTA */

    .books-cta {
        padding: 75px 20px;
    }

    .books-cta h2 {
        font-size: 34px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .books-container {
        width: 90%;
    }

    .books-hero-container {
        width: 90%;
    }

    .books-hero-content {
        padding-top: 45px;
    }

    .books-hero h1 {
        font-size: 32px;
    }

    .books-hero-content > p {
        font-size: 14px;
    }

    .books-trust-row {
        gap: 13px;
    }

    .books-trust-item strong {
        font-size: 15px;
    }

    .books-trust-item span {
        font-size: 8px;
    }

    .books-hero-image {
        min-height: 330px;
    }

    .books-hero-image img {
        height: 330px;
    }

    .book-intro-heading h2,
    .why-book-heading h2,
    .credentials-heading h2 {
        font-size: 27px;
    }

    .book-image-card {
        min-height: 360px;
    }

    .book-image-card img {
        height: 340px;
    }

    .book-product-content h3 {
        font-size: 24px;
    }

    .book-price {
        font-size: 40px;
    }


    /* CREDENTIALS - ONE COLUMN */

    .credentials-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .credential-item {
        min-height: 150px;
    }

    .books-cta h2 {
        font-size: 29px;
    }
}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .books-hero h1 {
        font-size: 28px;
    }

    .books-hero-buttons {
        flex-direction: column;
    }

    .book-btn-primary,
    .book-btn-outline {
        width: 100%;
    }

    .books-trust-row {
        flex-wrap: wrap;
    }

    .books-hero-image {
        min-height: 290px;
    }

    .books-hero-image img {
        height: 290px;
    }

    .book-intro-heading h2,
    .why-book-heading h2,
    .credentials-heading h2 {
        font-size: 25px;
    }

    .book-image-card {
        min-height: 320px;

        padding: 15px;
    }

    .book-image-card img {
        height: 300px;
    }

    .purchase-price {
        padding: 25px 18px;
    }

    .author-card {
        min-height: 330px;

        padding: 25px;
    }

    .author-avatar {
        width: 105px;
        height: 105px;

        font-size: 34px;
    }
}








/* =========================================================
   CONSULTATION MODAL — PREMIUM + FULLY RESPONSIVE
========================================================= */

.consultation-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;

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

    width: 100%;
    height: 100%;

    padding: 25px;

    opacity: 0;

    transition: opacity 0.3s ease;
}

.consultation-modal.active {
    display: flex;
    opacity: 1;
}

/* Overlay */

.consultation-overlay {
    position: absolute;
    inset: 0;

    background: rgba(4, 18, 34, 0.78);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Modal box */

.consultation-box {
    position: relative;
    z-index: 2;

    width: min(850px, 100%);

    max-height: calc(100vh - 50px);

    overflow-x: hidden;
    overflow-y: auto;

    background: #fff;

    border-radius: 20px;

    padding: 38px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.30);

    transform: translateY(30px) scale(0.97);

    transition: all 0.3s ease;

    scrollbar-width: thin;
    scrollbar-color: #cfd7df transparent;
}

.consultation-modal.active .consultation-box {
    transform: translateY(0) scale(1);
}

/* Close */

.modal-close {
    position: absolute;

    top: 16px;
    right: 18px;

    width: 40px;
    height: 40px;

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

    border: none;
    border-radius: 50%;

    background: #f2f4f7;
    color: #0b2a4a;

    font-size: 27px;
    line-height: 1;

    cursor: pointer;

    transition: 0.3s;

    z-index: 5;
}

.modal-close:hover {
    background: #0b2a4a;
    color: #fff;

    transform: rotate(90deg);
}

/* Header */

.consultation-header {
    text-align: center;

    margin: 0 auto 28px;

    padding: 0 45px;
}

.consultation-header span {
    display: inline-block;

    color: #d21f26;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

.consultation-header h2 {
    margin: 0;

    color: #0b2a4a;

    font-size: 30px;
    line-height: 1.25;

    font-weight: 700;
}

.consultation-header p {
    max-width: 600px;

    margin: 8px auto 0;

    color: #666;

    font-size: 14px;
    line-height: 1.6;
}

/* Form */

#consultationForm {
    width: 100%;
    max-width: 100%;
}

.form-row {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.form-group {
    width: 100%;

    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #172b3a;

    font-size: 14px;
    line-height: 1.4;

    font-weight: 600;
}

.form-group label span {
    color: #d21f26;
}

/* Inputs */

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    display: block;

    width: 100%;
    max-width: 100%;

    min-width: 0;

    box-sizing: border-box;

    padding: 13px 15px;

    border: 1px solid #dfe4ea;
    border-radius: 8px;

    background: #fafbfc;
    color: #222;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.5;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.form-group textarea {
    width: 100%;
    min-height: 120px;

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0b2a4a;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(11, 42, 74, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa4ae;
    opacity: 1;
}

/* Radio options */

.radio-options {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.radio-label {
    display: inline-flex !important;

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

    gap: 8px;

    width: auto !important;

    margin: 0 !important;

    padding: 10px 14px;

    border: 1px solid #e0e4e8;
    border-radius: 8px;

    background: #fafbfc;

    cursor: pointer;

    font-size: 13px !important;
    font-weight: 500 !important;

    line-height: 1.3 !important;

    transition: all 0.25s ease;
}

.radio-label:hover {
    border-color: #0b2a4a;
    background: #f4f7fa;
}

.radio-label input {
    flex: 0 0 auto;

    margin: 0;

    accent-color: #0b2a4a;
}

/* Destination */

.destination-options {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.check-label {
    display: inline-flex !important;

    align-items: center;

    gap: 8px;

    width: auto !important;

    margin: 0 !important;

    padding: 10px 13px;

    border: 1px solid #e0e4e8;
    border-radius: 8px;

    background: #fafbfc;

    cursor: pointer;

    font-size: 13px !important;
    font-weight: 500 !important;

    line-height: 1.3 !important;

    transition: all 0.25s ease;
}

.check-label:hover {
    border-color: #d21f26;
    background: #fff8f8;
}

.check-label input {
    flex: 0 0 auto;

    margin: 0;

    accent-color: #d21f26;
}

/* Consent */

.consent-box {
    width: 100%;

    margin: 5px 0 22px;

    padding: 14px;

    background: #f7f9fb;

    border-radius: 8px;
}

.consent-box label {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    width: 100%;

    margin: 0;

    color: #555;

    font-size: 12px;
    line-height: 1.6;

    cursor: pointer;
}

.consent-box input {
    flex: 0 0 auto;

    width: 15px;
    height: 15px;

    margin: 3px 0 0;

    accent-color: #0b2a4a;
}

/* Submit */

.consultation-submit {
    display: block;

    width: 100%;

    min-height: 50px;

    border: none;
    border-radius: 8px;

    padding: 14px 25px;

    background:
        linear-gradient(
            135deg,
            #0b2a4a,
            #153f68
        );

    color: #fff;

    font-family: 'Poppins', sans-serif;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.consultation-submit:hover {
    background:
        linear-gradient(
            135deg,
            #d21f26,
            #a9151b
        );

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(210, 31, 38, 0.22);
}

.consultation-submit:disabled {
    opacity: 0.65;

    cursor: not-allowed;

    transform: none;

    box-shadow: none;
}

/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.consultation-success {
    display: none;

    width: 100%;

    text-align: center;

    padding: 35px 20px 15px;
}

.consultation-success.active {
    display: block;
}

.success-icon {
    width: 70px;
    height: 70px;

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

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #0b2a4a;

    color: #fff;

    font-size: 34px;
    font-weight: 600;
}

.consultation-success h2 {
    margin: 0 0 15px;

    color: #0b2a4a;

    font-size: 28px;
    line-height: 1.25;
}

.consultation-success p {
    max-width: 650px;

    margin: 10px auto;

    color: #666;

    font-size: 14px;
    line-height: 1.8;
}

.success-last {
    color: #0b2a4a !important;

    font-weight: 600;
}

.success-close {
    margin-top: 20px;

    padding: 12px 30px;

    border: none;
    border-radius: 7px;

    background: #d21f26;

    color: #fff;

    font-family: 'Poppins', sans-serif;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

.success-close:hover {
    background: #0b2a4a;
}

/* =========================================================
   CONSULTATION — TABLET
========================================================= */

@media (max-width: 900px) {

    .consultation-modal {
        padding: 20px;
    }

    .consultation-box {
        width: 100%;
        max-width: 720px;

        max-height: calc(100vh - 40px);

        padding: 32px 28px;

        border-radius: 17px;
    }

    .consultation-header {
        padding: 0 35px;

        margin-bottom: 24px;
    }

    .consultation-header h2 {
        font-size: 27px;
    }

    .form-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 15px;
    }

    .form-group {
        margin-bottom: 17px;
    }
}

/* =========================================================
   CONSULTATION — MOBILE
========================================================= */

@media (max-width: 700px) {

    .consultation-modal {
        align-items: flex-start;
        justify-content: center;

        padding: 12px;
    }

    .consultation-box {
        width: 100%;
        max-width: 100%;

        max-height: calc(100vh - 24px);

        padding: 28px 18px 22px;

        border-radius: 15px;
    }

    .modal-close {
        top: 10px;
        right: 10px;

        width: 36px;
        height: 36px;

        font-size: 24px;
    }

    .consultation-header {
        padding: 0 32px 0 15px;

        margin-bottom: 22px;
    }

    .consultation-header span {
        font-size: 11px;

        letter-spacing: 1.6px;
    }

    .consultation-header h2 {
        font-size: 24px;

        line-height: 1.25;
    }

    .consultation-header p {
        font-size: 13px;

        line-height: 1.6;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-group {
        margin-bottom: 17px;
    }

    .form-group label {
        margin-bottom: 7px;

        font-size: 13px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        padding: 12px 13px;

        font-size: 13px;

        border-radius: 7px;
    }

    .form-group textarea {
        min-height: 105px;
    }

    .radio-options,
    .destination-options {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .radio-label,
    .check-label {
        width: 100% !important;

        min-height: 42px;

        box-sizing: border-box;

        padding: 9px 10px;

        font-size: 12px !important;
    }

    .consent-box {
        margin-bottom: 18px;

        padding: 12px;
    }

    .consent-box label {
        gap: 8px;

        font-size: 11px;

        line-height: 1.55;
    }

    .consultation-submit {
        min-height: 48px;

        padding: 13px 18px;

        font-size: 13px;
    }

    .consultation-success {
        padding: 25px 8px 10px;
    }

    .success-icon {
        width: 60px;
        height: 60px;

        font-size: 29px;
    }

    .consultation-success h2 {
        font-size: 24px;
    }

    .consultation-success p {
        font-size: 13px;

        line-height: 1.7;
    }
}

/* =========================================================
   CONSULTATION — SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .consultation-modal {
        padding: 8px;
    }

    .consultation-box {
        max-height: calc(100vh - 16px);

        padding: 25px 14px 18px;

        border-radius: 13px;
    }

    .modal-close {
        top: 8px;
        right: 8px;

        width: 34px;
        height: 34px;

        font-size: 22px;
    }

    .consultation-header {
        padding: 0 30px 0 8px;

        margin-bottom: 19px;
    }

    .consultation-header span {
        font-size: 10px;

        letter-spacing: 1.4px;
    }

    .consultation-header h2 {
        font-size: 21px;
    }

    .consultation-header p {
        font-size: 12px;
    }

    .radio-options,
    .destination-options {
        grid-template-columns: 1fr 1fr;

        gap: 7px;
    }

    .radio-label,
    .check-label {
        min-height: 40px;

        padding: 8px;

        font-size: 11px !important;
    }

    .consent-box {
        padding: 10px;
    }

    .consent-box label {
        font-size: 10.5px;
    }

    .consultation-submit {
        min-height: 46px;

        font-size: 12px;
    }
}

/* =========================================================
   CONSULTATION — EXTRA SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .consultation-modal {
        padding: 5px;
    }

    .consultation-box {
        max-height: calc(100vh - 10px);

        padding: 23px 11px 15px;

        border-radius: 11px;
    }

    .consultation-header {
        padding-right: 28px;
    }

    .consultation-header h2 {
        font-size: 19px;
    }

    .consultation-header p {
        font-size: 11px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        padding: 11px 10px;

        font-size: 12px;
    }

    .radio-label,
    .check-label {
        padding: 7px;

        font-size: 10px !important;
    }

    .consent-box label {
        font-size: 10px;
    }
}

/* =====================================================
   SUCCESS MESSAGE
===================================================== */

.consultation-success {
    display: none;

    text-align: center;

    padding: 35px 20px 15px;
}

.consultation-success.active {
    display: block;
}

.success-icon {
    width: 70px;
    height: 70px;

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

    margin: 0 auto 18px;

    border-radius: 50%;

    background: #0b2a4a;

    color: #ffffff;

    font-size: 34px;
    font-weight: 600;
}

.consultation-success h2 {
    margin: 0 0 15px;

    color: #0b2a4a;

    font-size: 28px;
}

.consultation-success p {
    max-width: 650px;

    margin: 10px auto;

    color: #666;

    font-size: 14px;

    line-height: 1.8;
}

.success-last {
    color: #0b2a4a !important;

    font-weight: 600;
}

.success-close {
    margin-top: 20px;

    padding: 12px 30px;

    border: none;

    border-radius: 7px;

    background: #d21f26;

    color: #ffffff;

    font-family: 'Poppins', sans-serif;

    font-weight: 600;

    cursor: pointer;

    transition: 0.3s;
}

.success-close:hover {
    background: #0b2a4a;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .consultation-modal {
        padding: 15px;
    }

    .consultation-box {
        max-height: 94vh;

        padding: 28px 20px;
    }

    .consultation-header h2 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .radio-options,
    .destination-options {
        flex-direction: column;
        align-items: stretch;
    }

    .radio-label,
    .check-label {
        width: 100%;

        box-sizing: border-box;
    }

}



/* =========================================
   LEGAL NOTICE PAGE
========================================= */

.legal-page {
    background: #f7f9fc;
    padding: 80px 20px 100px;
    font-family: 'Poppins', sans-serif;
}

.legal-container {
    max-width: 1050px;
    margin: 0 auto;
}

/* Header */

.legal-header {
    text-align: center;
    margin-bottom: 55px;
}

.legal-label {
    display: inline-block;
    color: #c49a45;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.legal-header h1 {
    margin: 0 0 18px;
    color: #0b2a4a;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
}

.legal-header p {
    max-width: 750px;
    margin: 0 auto;
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
}

/* Main Content */

.legal-content {
    background: #ffffff;
    border-radius: 18px;
    padding: 50px 60px;
    box-shadow: 0 10px 40px rgba(11, 42, 74, 0.08);
}

.legal-section {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e8edf3;
}

.legal-section:last-of-type {
    border-bottom: none;
    margin-bottom: 35px;
}

.legal-section h2 {
    color: #0b2a4a;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 14px;
}

.legal-section p {
    color: #596579;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

/* Commitment */

.legal-commitment {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f3f7fb;
    border-left: 4px solid #c49a45;
    border-radius: 12px;
    padding: 28px 30px;
}

.commitment-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #c49a45;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 700;
}

.legal-commitment h2 {
    margin: 0 0 10px;
    color: #0b2a4a;
    font-size: 21px;
}

.legal-commitment p {
    margin: 0;
    color: #596579;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .legal-page {
        padding: 55px 15px 70px;
    }

    .legal-header {
        margin-bottom: 35px;
    }

    .legal-header h1 {
        font-size: 32px;
    }

    .legal-header p {
        font-size: 14px;
    }

    .legal-content {
        padding: 35px 25px;
        border-radius: 14px;
    }

    .legal-section h2 {
        font-size: 19px;
    }

    .legal-section p {
        font-size: 14px;
        line-height: 1.8;
    }

    .legal-commitment {
        padding: 22px;
        gap: 14px;
    }

    .commitment-icon {
        flex: 0 0 36px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .legal-commitment h2 {
        font-size: 19px;
    }
}


@media (max-width: 480px) {

    .legal-header h1 {
        font-size: 28px;
    }

    .legal-content {
        padding: 28px 20px;
    }

    .legal-commitment {
        flex-direction: column;
    }
}



/* =========================================================
   UKHEC FINAL RESPONSIVE SYSTEM
   Append-only override layer
   Covers shared header, home, about, services, and footer.
   ========================================================= */

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img, svg, video, iframe {
    max-width: 100%;
}

button, input, textarea, select {
    max-width: 100%;
}

/* -------------------------
   SHARED CONTAINERS
------------------------- */
.hero,
.about-section,
.about-main-section,
.what-we-do,
.why-choose-section,
.approach-section,
.about-cta,
.services-hero,
.services-intro,
.service-detail-section,
.services-benefits,
.services-cta,
.footer,
.steps,
.universities {
    width: 100%;
    max-width: 100%;
}

/* -------------------------
   HEADER / NAV
------------------------- */
.mobile-menu-toggle,
.mobile-menu-label {
    display: none;
}

.mobile-consultation-btn {
    display: none;
}

.navbar {
    width: 100%;
    min-width: 0;
    position: relative;
    z-index: 10000;
    overflow: visible;
}

.navbar .logo {
    flex-shrink: 1;
    min-width: 0;
}

.navbar .logo img {
    max-width: 100%;
}

/* -------------------------
   HOME HERO
------------------------- */
.hero-content,
.hero-image {
    min-width: 0;
}

.hero-content h1,
.hero-content p {
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-buttons a,
.hero-buttons button,
.btn-primary,
.btn-outline,
.about-btn,
.cta-btn,
.services-cta-btn {
    min-height: 44px;
}

/* -------------------------
   ABOUT
------------------------- */
.about-main-section,
.why-choose-section {
    width: 100%;
}

.about-main-content,
.why-content {
    min-width: 0;
}

.about-main-content h2,
.why-content h2,
.section-heading h2,
.about-cta h2,
.services-cta h2 {
    overflow-wrap: break-word;
}

.about-image,
.about-main-image,
.why-image {
    min-width: 0;
    width: 100%;
}

.about-image img,
.about-main-image img,
.why-image img {
    max-width: 100%;
}

/* -------------------------
   SERVICES
------------------------- */
.service-detail-section {
    min-width: 0;
}

.service-detail-content,
.service-detail-image {
    min-width: 0;
}

.service-detail-content h2,
.service-detail-content p,
.service-detail-content li {
    overflow-wrap: break-word;
}

.service-detail-image img {
    max-width: 100%;
}

.service-list li {
    min-width: 0;
}

.service-list li span {
    flex: 0 0 25px;
}

.service-price {
    min-width: 0;
}

/* -------------------------
   FOOTER
------------------------- */
.footer-top,
.footer-bottom {
    width: 100%;
    min-width: 0;
}

.footer-item,
.footer-links {
    min-width: 0;
}

/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 1024px) {

    .navbar {
        padding-left: 30px;
        padding-right: 30px;
    }

    .navbar nav a {
        margin-left: 9px;
        margin-right: 9px;
        font-size: 14px;
    }

    .navbar .btn-primary {
        padding: 10px 14px;
        font-size: 13px;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
        background-position: center right;
    }

    .features {
        gap: 18px;
    }

    .about-main-section,
    .why-choose-section {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .about-main-image img,
    .why-image img {
        height: 460px;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .approach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-section {
        gap: 40px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* =========================================================
   MOBILE NAV + ALL PAGE SECTIONS
   ========================================================= */
@media (max-width: 768px) {

    /* HEADER */
    .navbar {
        height: 72px;
        padding: 0 16px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        background: #fff;
        overflow: visible;
    }

    .navbar .logo {
        width: 205px;
        max-width: calc(100% - 58px);
        height: auto;
    }

    .navbar .logo img {
        display: block;
        width: 100%;
        height: auto;
        max-height: 65px;
        object-fit: contain;
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-menu-label {
        display: flex;
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 1px solid #0b2a4a;
        border-radius: 7px;
        background: #fff;
        cursor: pointer;
        box-shadow: 0 5px 16px rgba(11,42,74,.12);
        z-index: 10002;
    }

    .mobile-menu-label span {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 2px;
        background: #0b2a4a;
        transition: transform .25s ease, opacity .25s ease;
    }

    .navbar nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        padding: 10px 16px 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-top: 1px solid #e9edf2;
        border-bottom: 1px solid #dfe5eb;
        box-shadow: 0 16px 35px rgba(11,42,74,.16);
        z-index: 10001;
    }

    .mobile-menu-toggle:checked ~ nav {
        display: flex;
    }

    .navbar nav .nav-link {
        display: block;
        width: 100%;
        margin: 0;
        padding: 14px 9px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.3;
        text-align: left;
        border-bottom: 1px solid #edf0f3;
    }

    .navbar nav .nav-link:hover,
    .navbar nav .nav-link.active {
        color: #0b2a4a;
        background: #f7f9fc;
    }

    .desktop-consultation {
        display: none !important;
    }

    .mobile-consultation-btn {
        display: block;
        width: 100%;
        margin-top: 13px;
        padding: 13px 15px;
        border-radius: 6px;
        background: #0b2a4a;
        color: #fff !important;
        text-align: center !important;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
    }

    .mobile-consultation-btn:hover {
        background: #D21F26;
    }

    .mobile-menu-toggle:checked + .mobile-menu-label span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle:checked + .mobile-menu-label span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle:checked + .mobile-menu-label span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* TOPBAR */
    .topbar {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding: 9px 12px;
    }

    .topbar .right {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* HERO */
    .hero {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 55px 20px 45px;
        gap: 30px;
        background-position: center;
        background-size: cover;
    }

    .hero-content {
        width: 100%;
        padding: 0;
    }

    .hero-content h1 {
        font-size: clamp(30px, 8vw, 40px);
        line-height: 1.2;
    }

    .hero-content p {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a,
    .hero-buttons button {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .features {
        width: 100%;
        justify-content: center;
        gap: 20px 12px;
        margin-top: 30px;
    }

    .feature-item {
        width: calc(50% - 10px);
        max-width: 170px;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        width: auto;
        max-width: 100%;
        max-height: 320px;
    }

    /* STEPS */
    .steps {
        width: calc(100% - 30px);
        margin: 20px auto 35px;
        padding: 25px 18px;
        flex-direction: column;
        gap: 20px;
    }

    /* UNIVERSITIES */
    .universities {
        padding: 45px 20px;
    }

    .logos {
        padding: 20px 10px;
    }

    .logos img {
        max-width: 120px;
        height: auto;
        max-height: 45px;
        margin: 10px;
    }

    /* ABOUT HOME */
    .about-section {
        flex-direction: column;
        padding: 55px 20px 40px;
        gap: 30px;
        text-align: center;
    }

    .about-image {
        width: 100%;
        min-height: 0;
        padding: 7px;
    }

    .about-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .about-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .about-content h2 {
        font-size: 29px;
        line-height: 1.25;
    }

    .about-content .line {
        margin: 0 auto 20px;
    }

    .about-btn {
        width: 100%;
        max-width: 320px;
        margin: 10px auto 0;
        text-align: center;
    }

    /* ABOUT PAGE */
    .about-hero {
        min-height: 400px;
        padding: 65px 20px;
        background-position: center;
    }

    .about-hero-content h1 {
        font-size: clamp(31px, 8vw, 40px);
        line-height: 1.2;
    }

    .about-hero-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .about-main-section,
    .why-choose-section {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 60px 20px;
    }

    .about-main-image img,
    .why-image img {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: 460px;
        object-fit: cover;
    }

    .about-main-content h2,
    .why-content h2,
    .section-heading h2 {
        font-size: clamp(28px, 7vw, 34px);
    }

    .about-main-content,
    .why-content {
        text-align: center;
    }

    .about-line {
        margin: 18px auto 22px;
    }

    .about-main-content p,
    .why-content > p {
        font-size: 15px;
        line-height: 1.75;
    }

    .about-main-content .about-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .experience-box {
        left: 12px;
        bottom: 12px;
        padding: 12px 15px;
        gap: 10px;
    }

    .experience-box strong {
        font-size: 28px;
    }

    .experience-box span {
        font-size: 12px;
    }

    .what-we-do,
    .approach-section {
        padding: 60px 20px;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .service-grid,
    .approach-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card,
    .approach-card,
    .benefit-card {
        width: 100%;
        padding: 28px 20px;
    }

    .why-list {
        text-align: left;
    }

    .about-cta {
        padding: 65px 20px;
    }

    .about-cta h2 {
        font-size: clamp(29px, 7vw, 36px);
    }

    .about-cta p {
        font-size: 15px;
    }

    .about-cta .cta-btn {
        width: 100%;
        max-width: 320px;
    }

    /* SERVICES PAGE */
    .services-hero {
        min-height: 400px;
        padding: 60px 20px;
        background-position: center;
    }

    .services-hero-content h1 {
        font-size: clamp(30px, 8vw, 38px);
        line-height: 1.2;
    }

    .services-hero-content p {
        font-size: 15px;
        line-height: 1.65;
    }

    .services-intro {
        padding: 65px 20px 45px;
    }

    .services-intro h2 {
        font-size: clamp(29px, 7vw, 35px);
    }

    .services-intro p {
        font-size: 15px;
    }

    .service-detail-section,
    .service-detail-section.reverse {
        width: 100%;
        display: flex;
        flex-direction: column;
        direction: ltr;
        gap: 30px;
        padding: 55px 20px;
    }

    .service-detail-section.reverse .service-detail-content,
    .service-detail-section.reverse .service-detail-image {
        direction: ltr;
    }

    .service-detail-image {
        width: 100%;
    }

    .service-detail-image img {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: 430px;
        object-fit: cover;
        border-radius: 16px;
    }

    .service-number {
        left: 15px;
        bottom: 15px;
        width: 58px;
        height: 58px;
        font-size: 17px;
    }

    .service-detail-content {
        width: 100%;
        text-align: left;
    }

    .service-detail-content h2 {
        font-size: clamp(28px, 7vw, 35px);
        line-height: 1.2;
    }

    .service-detail-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .service-list li {
        font-size: 14px;
        line-height: 1.6;
    }

    .service-price {
        gap: 12px;
        align-items: flex-start;
    }

    .services-benefits {
        padding: 60px 20px;
    }

    .services-cta {
        padding: 65px 20px;
    }

    .services-cta h2 {
        font-size: clamp(29px, 7vw, 36px);
    }

    .services-cta p {
        font-size: 15px;
    }

    .services-cta-btn {
        width: 100%;
        max-width: 320px;
        padding-left: 18px;
        padding-right: 18px;
    }

    /* FOOTER */
    .footer-top {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        padding: 35px 20px;
    }

    .footer-item {
        width: 100%;
        text-align: center;
    }

    .footer-item::after {
        display: none !important;
    }

    .ucas-item {
        text-align: center;
    }

    .ucas-row {
        justify-content: center;
    }

    .footer-item p {
        text-align: center;
    }

    .footer-bottom {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 18px 15px 22px;
        text-align: center;
    }

    .footer-bottom > p {
        width: 100%;
        text-align: center;
        line-height: 1.6;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        text-align: center;
    }

    /* FLOATING WHATSAPP */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-float svg {
        width: 27px;
        height: 27px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* FORM / MODAL */
    .consultation-modal,
    .consultation-box {
        max-width: 100%;
    }

    .consultation-box {
        width: calc(100% - 24px);
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        margin: 12px auto;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }

    .radio-options,
    .destination-options {
        flex-wrap: wrap;
    }

    .consultation-submit,
    .success-close {
        width: 100%;
    }
}

/* =========================================================
   SMALL PHONES
   ========================================================= */
@media (max-width: 480px) {

    .navbar {
        height: 68px;
        padding: 0 13px;
    }

    .navbar .logo {
        width: 185px;
    }

    .navbar .logo img {
        max-height: 60px;
    }

    .mobile-menu-label {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .navbar nav {
        top: 68px;
        padding-left: 13px;
        padding-right: 13px;
    }

    .navbar nav .nav-link {
        font-size: 14px;
        padding: 13px 8px;
    }

    .mobile-consultation-btn {
        font-size: 12px;
    }

    .hero {
        padding: 45px 15px 35px;
    }

    .feature-item {
        width: 100%;
        max-width: 220px;
    }

    .hero-image img {
        max-height: 280px;
    }

    .steps {
        width: calc(100% - 24px);
        padding: 22px 14px;
    }

    .about-section,
    .about-main-section,
    .why-choose-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-hero,
    .services-hero {
        min-height: 380px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .service-detail-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .what-we-do,
    .approach-section,
    .services-intro,
    .services-benefits {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-cta,
    .services-cta {
        padding-left: 15px;
        padding-right: 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        min-width: 0;
    }
}

/* =========================================================
   VERY SMALL PHONES
   ========================================================= */
@media (max-width: 360px) {

    .navbar .logo {
        width: 170px;
    }

    .mobile-menu-label {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .navbar nav .nav-link {
        font-size: 13px;
        padding: 12px 7px;
    }

    .hero-content h1 {
        font-size: 29px;
    }

    .about-hero-content h1,
    .services-hero-content h1 {
        font-size: 29px;
    }

    .about-main-content h2,
    .why-content h2,
    .section-heading h2,
    .services-intro h2 {
        font-size: 27px;
    }

    .service-detail-content h2 {
        font-size: 27px;
    }

    .footer-bottom {
        font-size: 11px;
    }
}
/* =========================================================
   UKHEC HOME HERO / STEPS — FINAL RESPONSIVE OVERRIDE
   This block intentionally comes last so older responsive
   rules in this stylesheet cannot break the home page.
========================================================= */

.hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-content {
    min-width: 0;
    max-width: 720px;
}

.hero-content h1,
.hero-content p,
.feature-item p,
.step p {
    overflow-wrap: anywhere;
}

.features {
    min-width: 0;
}

.feature-item {
    min-width: 0;
}

.steps {
    position: relative;
    z-index: 10;
    max-width: 1400px;
}

@media (max-width: 992px) {

    .hero {
        background-position: 130% center !important;
        background-size: 700px auto !important;
    }

    .hero-content {
        width: 65% !important;
    }

    .features {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .steps {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        margin-top: -40px !important;
    }
}

@media (max-width: 768px) {

    .hero {
        min-height: auto !important;
        display: block !important;

        padding: 55px 20px 70px !important;

        text-align: center !important;

        background-position: center bottom !important;
        background-size: 650px auto !important;
    }

    .hero::before {
        content: "" !important;

        position: absolute !important;
        inset: 0 !important;

        background: rgba(255, 255, 255, 0.78) !important;

        z-index: 1 !important;
    }

    .hero-content {
        position: relative !important;
        z-index: 5 !important;

        width: 100% !important;
        max-width: 600px !important;

        margin: 0 auto !important;
        padding: 0 !important;
    }

    .hero-content h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .hero-content .line {
        margin: 18px auto !important;
    }

    .hero-content > p {
        max-width: 100% !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .features {
        width: 100% !important;
        max-width: 500px !important;

        margin: 30px auto 0 !important;

        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 22px 15px !important;
    }

    .feature-item {
        width: auto !important;
        max-width: none !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;

        text-align: center !important;
    }

    .feature-item .icon {
        margin: 0 auto 9px !important;
    }

    .hero-buttons {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: stretch !important;

        gap: 12px !important;

        margin-top: 30px !important;
    }

    .hero-buttons a,
    .hero-buttons button {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .steps {
        width: calc(100% - 30px) !important;

        margin: -30px auto 30px !important;

        padding: 25px 18px !important;

        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 0 !important;
    }

    .step {
        padding: 14px 10px !important;
    }

    .step:not(:last-child)::after {
        top: auto !important;
        right: 10% !important;
        bottom: 0 !important;

        width: 80% !important;
        height: 1px !important;
    }

    .step:nth-child(3)::after {
        display: block !important;
    }
}

@media (max-width: 480px) {

    .hero {
        padding: 45px 16px 60px !important;

        background-size: 570px auto !important;
        background-position: center bottom !important;
    }

    .hero::before {
        background: rgba(255, 255, 255, 0.84) !important;
    }

    .hero-content h1 {
        font-size: 28px !important;
    }

    .hero-content > p {
        font-size: 14px !important;
        line-height: 1.65 !important;
    }

    .features {
        gap: 20px 8px !important;
    }

    .feature-item {
        width: auto !important;
    }

    .feature-item .icon {
        width: 52px !important;
        height: 52px !important;
    }

    .feature-item p {
        font-size: 11px !important;
    }

    .steps {
        width: calc(100% - 24px) !important;
        margin-top: -25px !important;
        padding: 18px 15px !important;
    }
}

@media (max-width: 360px) {

    .hero {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .hero-content h1 {
        font-size: 25px !important;
    }

    .hero-content > p {
        font-size: 13px !important;
    }

    .feature-item p {
        font-size: 10.5px !important;
    }

    .hero-buttons button {
        font-size: 13px !important;
    }
}

/* =========================================================
   FINAL MOBILE CONSULTATION FORM FIX
   Clean single-column mobile layout
========================================================= */

@media (max-width: 700px) {
    .consultation-modal {
        padding: 6px !important;
        align-items: center !important;
        overflow: hidden !important;
    }

    .consultation-box {
        width: 100% !important;
        max-width: 520px !important;
        height: auto !important;
        max-height: 96vh !important;
        padding: 24px 16px 18px !important;
        border-radius: 14px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .modal-close {
        top: 9px !important;
        right: 9px !important;
        width: 34px !important;
        height: 34px !important;
        font-size: 23px !important;
    }

    .consultation-header {
        padding: 0 36px 0 6px !important;
        margin: 0 0 20px !important;
    }

    .consultation-header span {
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 4px !important;
    }

    .consultation-header h2 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }

    .consultation-header p {
        margin-top: 6px !important;
        font-size: 11.5px !important;
        line-height: 1.55 !important;
    }

    .form-row {
        display: block !important;
        width: 100% !important;
    }

    .form-group {
        width: 100% !important;
        margin-bottom: 15px !important;
    }

    .form-group label {
        margin-bottom: 6px !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        width: 100% !important;
        min-height: 44px !important;
        padding: 11px 12px !important;
        font-size: 12px !important;
        border-radius: 7px !important;
    }

    .form-group textarea {
        min-height: 92px !important;
        resize: vertical !important;
    }

    /* Student / Parent / Other */
    .radio-options {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 7px !important;
        width: 100% !important;
    }

    .radio-label {
        display: flex !important;
        width: 100% !important;
        min-height: 42px !important;
        padding: 9px 11px !important;
        box-sizing: border-box !important;
        font-size: 12px !important;
        border-radius: 7px !important;
    }

    /* Study destination */
    .destination-options {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 7px !important;
        width: 100% !important;
    }

    .check-label {
        display: flex !important;
        width: 100% !important;
        min-height: 40px !important;
        padding: 8px 9px !important;
        box-sizing: border-box !important;
        font-size: 11px !important;
        border-radius: 7px !important;
    }

    .radio-label input,
    .check-label input {
        flex: 0 0 auto !important;
        margin: 0 !important;
    }

    .consent-box {
        margin: 2px 0 15px !important;
        padding: 10px !important;
        border-radius: 7px !important;
    }

    .consent-box label {
        display: flex !important;
        align-items: flex-start !important;
        gap: 8px !important;
        font-size: 10.5px !important;
        line-height: 1.5 !important;
    }

    .consent-box input {
        width: 15px !important;
        height: 15px !important;
        margin-top: 2px !important;
    }

    .consultation-submit {
        width: 100% !important;
        min-height: 46px !important;
        padding: 12px 16px !important;
        border-radius: 7px !important;
        font-size: 12.5px !important;
    }

    .consultation-success {
        padding: 25px 5px 10px !important;
    }

    .success-icon {
        width: 58px !important;
        height: 58px !important;
        margin-bottom: 14px !important;
        font-size: 28px !important;
    }

    .consultation-success h2 {
        font-size: 22px !important;
        margin-bottom: 10px !important;
    }

    .consultation-success p {
        font-size: 12px !important;
        line-height: 1.65 !important;
    }

    .success-close {
        width: 100% !important;
        max-width: 220px !important;
        padding: 11px 20px !important;
    }
}

@media (max-width: 380px) {
    .consultation-modal {
        padding: 4px !important;
    }

    .consultation-box {
        max-height: 97vh !important;
        padding: 21px 12px 14px !important;
        border-radius: 12px !important;
    }

    .consultation-header {
        padding-right: 32px !important;
        margin-bottom: 16px !important;
    }

    .consultation-header h2 {
        font-size: 20px !important;
    }

    .consultation-header p {
        font-size: 11px !important;
    }

    .form-group {
        margin-bottom: 13px !important;
    }

    .form-group label {
        font-size: 11.5px !important;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group textarea {
        min-height: 42px !important;
        padding: 10px !important;
        font-size: 11.5px !important;
    }

    .form-group textarea {
        min-height: 82px !important;
    }

    .radio-label,
    .check-label {
        min-height: 38px !important;
        padding: 7px 8px !important;
        font-size: 10.5px !important;
    }

    .consent-box label {
        font-size: 10px !important;
    }

    .consultation-submit {
        min-height: 44px !important;
        font-size: 12px !important;
    }
}
