/* ==========================================================================
   University Landing Page - Hero Section Styles
   ========================================================================== */

/* Header stacking fix */
header,
.header,
.h_sticky,
header .h_sticky {
    z-index: 99999 !important;
}

.university-hero-section {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #F8FAFD 0%, #FFFFFF 100%);
    padding: 60px 0 70px 0;
    overflow: hidden;
    font-family: "robotomedium", sans-serif;
    color: #0F172A;
}

.uni-hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Grid Layout */
.uni-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

/* Left Content Column */
.uni-hero-left {
    max-width: 640px;
}

.uni-hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: #EBF3FF;
    color: #1D4ED8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 2px 6px rgba(29, 78, 216, 0.06);
}

.uni-hero-title {
    font-family: "robotomedium", sans-serif;
    font-size: 52px;
    /* font-weight: 800; */
    line-height: 1.15;
    color: #0F172A;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.uni-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #64748B;
    margin: 0 0 36px 0;
    font-weight: 400;
}

/* Search Box Container */
.uni-search-container {
    position: relative;
    width: 100%;
    max-width: 580px;
}

.uni-search-form {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    padding: 7px 7px 7px 22px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
    transition: all 0.3s ease;
}

.uni-search-form:focus-within {
    border-color: #3B82F6;
    box-shadow: 0 14px 36px rgba(37, 99, 235, 0.14);
}

.uni-search-input-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 12px;
}

.uni-search-input-wrap .search-icon {
    flex-shrink: 0;
}

.uni-search-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: #0F172A;
    font-family: inherit;
}

.uni-search-input::placeholder {
    color: #94A3B8;
    font-weight: 400;
}

.uni-search-btn {
    background-color: #1D4ED8;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.uni-search-btn:hover {
    background-color: #0F2342;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(27, 54, 93, 0.25);
}

/* Search Autocomplete / Live Results Dropdown Box */
.uni-search-results-box {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    width: 100%;
    background: #F8F9FA;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
    z-index: 9999;
    max-height: 380px;
    overflow-y: auto;
    display: none;
}

.uni-search-results-box.active {
    display: block;
}

.uni-search-result-item {
    display: block;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #8A94A6;
    text-decoration: none;
    border-bottom: 1px solid #E2E8F0;
    transition: background-color 0.15s ease, color 0.15s ease, font-weight 0.15s ease;
    line-height: 1.45;
    background: #F8F9FA;
}

.uni-search-result-item:last-child {
    border-bottom: none;
}

.uni-search-result-item:hover,
.uni-search-result-item:focus {
    background-color: #FFFFFF;
    color: #1E3A8A;
    font-weight: 700;
    text-decoration: none;
}

.uni-search-result-empty,
.uni-search-result-loading {
    padding: 18px 24px;
    font-size: 14.5px;
    color: #8A94A6;
    text-align: center;
    background: #F8F9FA;
}

/* Right Visual Column */
.uni-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uni-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Concentric Rings */
.circle-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    pointer-events: none;
    z-index: 1;
}

.circle-backdrop .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px solid rgba(59, 130, 246, 0.12);
}

.circle-backdrop .ring-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(224, 237, 255, 0.4) 0%, rgba(248, 250, 253, 0) 70%);
}

.circle-backdrop .ring-2 {
    width: 380px;
    height: 380px;
    border-color: rgba(59, 130, 246, 0.15);
}

.circle-backdrop .ring-3 {
    width: 280px;
    height: 280px;
    border-color: rgba(59, 130, 246, 0.2);
}

/* Orange Accent Blobs */
.orange-accent-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.orange-blob-1 {
    width: 80px;
    height: 80px;
    top: 25%;
    left: 12%;
    background: linear-gradient(135deg, #FF7E36 0%, #FF9E66 100%);
    opacity: 0.85;
    filter: blur(2px);
    box-shadow: 0 8px 24px rgba(255, 126, 54, 0.3);
}

.orange-blob-2 {
    width: 14px;
    height: 14px;
    top: 8%;
    right: 22%;
    background-color: #FF6B00;
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
}

/* Student Image */
.student-graphic-container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.student-img {
    max-width: 380px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(15, 23, 42, 0.08));
    transform: translateY(10px);
}

/* Floating Cards Common */
.floating-badge,
.floating-card {
    position: absolute;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.1);
    z-index: 3;
    transition: transform 0.3s ease;
}

.floating-badge:hover,
.floating-card:hover {
    transform: translateY(-4px);
}

/* Top Right Badge */
.top-right-badge {
    top: 12%;
    right: -10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    max-width: 240px;
}

.badge-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #EBF3FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    line-height: 1.35;
}

/* Bottom Left Card (University of Manchester) */
.bottom-left-card {
    bottom: 5%;
    left: -15px;
    width: 210px;
    padding: 8px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
}

.card-img-wrap {
    width: 100%;
    height: 105px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    padding: 4px 6px 6px 6px;
}

.card-title {
    font-size: 13px;
    color: #0F172A;
    margin: 0 0 4px 0;
    line-height: 1.25;
}

.card-location {
    font-size: 12px;
    font-weight: 500;
    color: #64748B;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Middle Right Card (Campus Photo) */
.middle-right-card {
    top: 38%;
    right: -25px;
    width: 155px;
    height: 105px;
    padding: 6px;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
}

.card-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Stats Counter Strip */
.uni-hero-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
    padding-top: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background-color: #EBF3FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.stat-card:hover .stat-icon-box {
    background-color: #DCEBFF;
}

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: "robotomedium", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1B365D;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.stat-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #64748B;
    margin-top: 4px;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .uni-hero-title {
        font-size: 44px;
    }

    .top-right-badge {
        right: 0;
    }

    .bottom-left-card {
        left: 0;
    }

    .middle-right-card {
        right: 0;
    }
}

@media (max-width: 991px) {
    .university-hero-section {
        padding: 40px 0 17px 0;
    }

    .uni-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .uni-hero-left {
        max-width: 100%;
        margin: 0 auto;
    }

    .uni-search-container {
        margin: 0 auto;
    }

    .uni-hero-stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        margin-top: 40px;
    }

    .stat-card {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .uni-hero-badge {
        display: inline-block;
        margin: 0 auto 16px auto;
        background-color: #EBF3FF;
        color: #1D4ED8;
        font-size: 11px;
        font-weight: 700;
        padding: 6px 16px;
        border-radius: 50px;
        letter-spacing: 0.5px;
    }

    .uni-hero-title {
        font-size: 26px;
        font-weight: 800 !important;
        line-height: 1.25;
        color: #0F172A;
        margin-bottom: 12px;
        text-align: center;
    }

    .uni-hero-subtitle {
        font-size: 14px;
        line-height: 1.5;
        color: #64748B;
        margin-bottom: 22px;
        text-align: center;
    }

    .uni-search-container {
        max-width: 100%;
        margin: 0 auto;
    }

    .uni-search-form {
        flex-direction: row;
        border-radius: 12px;
        padding: 6px 6px 6px 14px;
        gap: 8px;
        align-items: center;
        background: #FFFFFF;
        border: 1px solid #E2E8F0;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    }

    .uni-search-input-wrap {
        width: 100%;
        padding: 0;
        flex: 1;
    }

    .uni-search-input {
        font-size: 13.5px;
        padding: 6px 0;
    }

    .uni-search-input::placeholder {
        font-size: 13px;
        color: #94A3B8;
    }

    .uni-search-btn {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 8px;
        padding: 0;
        background-color: #1D4ED8;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .uni-search-btn-text {
        display: none;
    }

    .uni-visual-wrapper {
        max-width: 320px;
        min-height: 340px;
        margin: 0 auto;
    }

    .circle-backdrop {
        width: 320px;
        height: 320px;
    }

    .circle-backdrop .ring-1 {
        width: 320px;
        height: 320px;
    }

    .top-right-badge {
        top: 4%;
        right: -10px;
        padding: 8px 12px;
        max-width: 175px;
    }

    .badge-text {
        font-size: 11px;
    }

    .bottom-left-card {
        bottom: 2%;
        left: -10px;
        width: 160px;
        padding: 6px;
    }

    .card-img-wrap {
        height: 75px;
    }

    .card-title {
        font-size: 11.5px;
    }

    .middle-right-card {
        top: 36%;
        right: -15px;
        width: 120px;
        height: 80px;
    }

    .uni-hero-stats-strip {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 6px;
        padding-left: 2px;
        padding-right: 2px;
        margin-top: 25px;
        -webkit-overflow-scrolling: touch;
    }

    .uni-hero-stats-strip::-webkit-scrollbar {
        display: none;
    }

    .stat-card {
        flex: 0 0 auto;
        min-width: 175px;
        scroll-snap-align: start;
        background: #F8FAFC;
        border: 1px solid #F1F5F9;
        border-radius: 16px;
        padding: 12px 16px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 12px;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    }

    .stat-icon-box {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background-color: #EBF3FF;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .stat-icon-box svg {
        width: 18px;
        height: 18px;
        stroke: #1D528E;
    }

    .stat-details {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .stat-num {
        font-family: "robotomedium", sans-serif;
        font-size: 19px;
        font-weight: 800;
        color: #1D528E;
        line-height: 1.15;
    }

    .stat-name {
        font-size: 12px;
        font-weight: 500;
        color: #64748B;
        margin-top: 2px;
        white-space: nowrap;
    }
}

/* ==========================================================================
   University Card Grid Section
   ========================================================================== */

.university-listing-section {
    background-color: #F8FAFC;
    padding: 70px 0 80px 0;
}

.uni-listing-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.uni-listing-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px auto;
}

.uni-listing-title {
    font-family: "robotomedium", sans-serif;
    font-size: 32px;
    color: #0F172A;
    margin: 0;
    line-height: 1.25;
}

.uni-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.uni-grid-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.uni-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    border-color: #CBD5E1;
}

/* Card Media Header */
.uni-card-media {
    position: relative;
    width: 100%;
    height: 190px;
    overflow: hidden;
    background-color: #E2E8F0;
}

.uni-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.uni-grid-card:hover .uni-card-img {
    transform: scale(1.04);
}

/* Country Pill Badge (Top Left) */
.uni-country-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(4px);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #0F172A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.uni-country-badge .flag-icon {
    font-size: 14px;
    line-height: 1;
}

/* Rank Pill Badge (Top Right) */
.uni-rank-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #00C897;
    color: #FFFFFF;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 8px rgba(0, 200, 151, 0.3);
    z-index: 2;
}

/* Card Content Area */
.uni-card-content {
    padding: 22px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.uni-card-name {
    font-family: "robotomedium", sans-serif;
    font-size: 18px;
    color: #0F172A;
    margin: 0 0 8px 0;
    line-height: 1.35;
}

.uni-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    color: #64748B;
    margin: 0 0 16px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #E2E8F0;
    font-weight: 500;
}

.uni-card-location svg {
    flex-shrink: 0;
}

/* View University Button */
.uni-card-btn {
    margin-top: auto;
    display: block;
    width: 100%;
    padding: 10px 20px;
    border: 1.5px solid #2B4C7E;
    background: #FFFFFF;
    color: #2B4C7E;
    font-family: "robotomedium", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.uni-card-btn:hover {
    background: #2B4C7E;
    color: #FFFFFF;
    border-color: #2B4C7E;
    box-shadow: 0 4px 12px rgba(43, 76, 126, 0.2);
}

/* Load More Container & Button (Hidden on Desktop by default) */
.uni-load-more-wrap {
    text-align: center;
    margin-top: 45px;
    display: block;
}

.uni-load-more-btn {
    background-color: #FF5A5A;
    color: #FFFFFF;
    font-family: "robotomedium", sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 90, 90, 0.25);
    display: inline-block;
}

.uni-load-more-btn:hover {
    background-color: #E04B4B;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 90, 90, 0.35);
}

/* Responsive Media Queries for Card Grid */
@media (max-width: 991px) {
    .uni-listing-title {
        font-size: 26px;
    }

    .uni-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .university-listing-section {
        padding: 50px 0 31px 0;
    }
}

@media (max-width: 768px) {

    /* Show Load More on mobile / tablet screens */
    .uni-load-more-wrap {
        text-align: center;
        margin-top: 26px;
        display: block;
    }
}

@media (max-width: 640px) {
    .uni-listing-header {
        margin-bottom: 24px;
        text-align: left !important;
    }

    .uni-listing-title {
        font-size: 22px;
        font-weight: 800 !important;
        text-align: left !important;
    }

    .uni-listing-subtitle {
        text-align: left !important;
    }

    .uni-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .uni-card-name {
        font-size: 17px;
    }

    .uni-card-content {
        padding: 18px 20px 20px 20px;
    }

    .uni-load-more-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   Why Choose Us / Journey Simplified Section
   ========================================================================== */

.university-why-section {
    background-color: #FFFFFF;
    padding: 85px 0;
}

.uni-why-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.uni-why-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 52px auto;
}

.uni-why-badge {
    display: inline-block;
    background-color: #E6F4EA;
    color: #059669;
    font-family: "robotomedium", sans-serif;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.uni-why-title {
    font-family: "robotomedium", sans-serif;
    font-size: 36px;
    color: #0F172A;
    margin: 0;
    line-height: 1.25;
}

.uni-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.uni-why-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.uni-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
    border-color: #CBD5E1;
    background: #FFFFFF;
}

.uni-why-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.uni-why-icon-box {
    width: 44px;
    height: 44px;
    background-color: #EFF6FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uni-why-step-num {
    font-family: "robotomedium", sans-serif;
    font-size: 20px;
    color: #DBEAFE;
    line-height: 1;
}

.uni-why-card-title {
    font-family: "robotomedium", sans-serif;
    font-size: 18px;
    color: #0F172A;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.uni-why-card-desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.55;
    margin: 0;
}

/* Responsive Media Queries for Why Choose Us Section */
@media (max-width: 1024px) {
    .uni-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .uni-why-title {
        font-size: 30px;
    }
}

@media (max-width: 640px) {
    .university-why-section {
        padding-top: 45px;
        padding-right: 0px;
        padding-bottom: 5px;
        padding-left: 0px;

    }

    .uni-why-header {
        margin-bottom: 24px;
        text-align: left !important;
    }

    .uni-why-title {
        font-size: 24px;
        font-weight: 800 !important;
        text-align: left !important;
    }

    .uni-why-subtitle {
        text-align: left !important;
    }

    .uni-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .uni-why-card {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   Testimonial Slider (Ported directly from university-pages.css)
   ========================================================================== */
.home_testimonial {
    text-align: center;
    background: transparent;
    padding: 60px 0;
    margin-top: 50px;
}

.home_testimonial .heading {
    font-family: "robotomedium", sans-serif;
    font-size: 32px;
    color: #071E57;
    margin: 0 0 12px 0;
    line-height: 1.25;
}

.home_testimonial .sub-heading {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
    margin: 0 auto 30px auto;
    max-width: 760px;
}

.home_testimonial .testimonial_slider_home {
    margin-top: 40px;
}

.home_testimonial .testimonial_slider_home .client-says {
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    background: #3F6CB0;
    padding: 34px 30px 28px 30px;
    text-align: left;
    transform: none !important;
    position: relative;
    margin: 0 12px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}

.home_testimonial .testimonial_slider_home .client-says .msg {
    cursor: pointer;
    font-size: 14px;
    line-height: 22px;
    font-family: "robotomedium", sans-serif;
    color: #ffffff;
    text-align: left;
    height: 96px;
    overflow-y: auto;
    padding-right: 6px;
    margin: 0 0 16px;
}

.home_testimonial .testimonial_slider_home .client-says .msg::-webkit-scrollbar {
    width: 4px;
}

.home_testimonial .testimonial_slider_home .client-says .msg::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.home_testimonial .testimonial_slider_home .client-says .msg::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.home_testimonial .testimonial_slider_home .client-says .name {
    font-size: 17px;
    line-height: 24px;
    color: #ffffff;
    margin: 0 0 4px 0;
    font-family: "robotomedium", sans-serif;
}

.home_testimonial .testimonial_slider_home .client-says .cityname {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 20px;
    display: block;
    margin: 0 0 16px 0;
}

.home_testimonial .testimonial_slider_home .client-says .rating {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-star {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block;
    line-height: 1;
}

.rating-star:before {
    content: "★";
    color: #FF9E00;
    font-size: 16px;
    display: inline-block;
}

@media (max-width: 991px) {
    .home_testimonial .testimonial_slider_home .client-says {
        padding: 20px 15px;
    }
}

@media (max-width: 767px) {
    .home_testimonial .sub-heading {
        margin: 15px 0 20px;
    }

    .home_testimonial .testimonial_slider_home .client-says.slick-center .msg {
        font-size: 16px;
        line-height: 24px;
    }

    .home_testimonial .testimonial_slider_home .client-says .msg {
        font-size: 14px;
        line-height: 20px;
        height: 100px;
        margin: 0px 0 12px;
    }

    .home_testimonial .testimonial_slider_home .client-says .name {
        font-size: 16px;
        line-height: 22px;
    }

    .home_testimonial .testimonial_slider_home .client-says .cityname {
        font-size: 14px;
        line-height: 20px;
    }

    .home_testimonial .testimonial_slider_home .client-says .rating {
        margin: 5px 0 0;
    }
}

@media (max-width: 575px) {
    .home_testimonial .testimonial_slider_home .client-says.slick-center .msg {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 479px) {

    .home_testimonial .sub-heading .more-text-mobile,
    .index-order-process .sub-heading .more-text-mobile {
        display: none;
    }

    .home_testimonial .sub-heading.show-more .more-text-mobile,
    .index-order-process .sub-heading.show-more .more-text-mobile {
        display: inline;
    }

    .home_testimonial .sub-heading .read-more,
    .index-order-process .sub-heading .read-more {
        display: inline-block !important;
        cursor: pointer;
        font-family: "robotomedium", sans-serif;
        color: #FE4C49;
        text-decoration: underline;
    }

    .home_testimonial .testimonial_slider_home .client-says {
        -webkit-transform: scale(1);
        transform: scale(1);
        margin: 0 10px;
    }

    .home_testimonial .testimonial_slider_home .client-says .msg {
        margin: 0px 0 8px;
    }

    .home_testimonial .testimonial_slider_home .client-says .name {
        font-size: 14px;
        line-height: 18px;
    }

    .home_testimonial .testimonial_slider_home .client-says .cityname {
        font-size: 13px;
        line-height: 16px;
    }

    .home_testimonial .testimonial_slider_home .client-says .rating .rating-star:before {
        width: 12px;
        height: 12px;
        background-size: contain;
    }
}

@media (max-width: 991px) {
    .home_testimonial .testimonial_slider_home .client-says {
        padding: 24px 20px;
    }

    .home_testimonial .heading {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .home_testimonial {
        padding: 45px 0;
    }

    .home_testimonial .sub-heading {
        margin: 10px auto 20px;
        padding: 0 15px;
    }

    .home_testimonial .testimonial_slider_home .client-says.slick-center .msg {
        font-size: 15px;
        line-height: 22px;
    }

    .home_testimonial .testimonial_slider_home .client-says .msg {
        font-size: 14px;
        line-height: 20px;
        height: 100px;
        margin: 0 0 12px;
    }

    .home_testimonial .testimonial_slider_home .client-says .name {
        font-size: 16px;
        line-height: 22px;
    }

    .home_testimonial .testimonial_slider_home .client-says .cityname {
        font-size: 14px;
        line-height: 20px;
    }

    .home_testimonial .testimonial_slider_home .client-says .rating {
        margin: 8px 0 0;
    }
}

/* Slick Dots Styling for Testimonials */
.home_testimonial .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
    position: relative;
    bottom: auto;
    width: 100%;
}

.home_testimonial .slick-dots li {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
}

.home_testimonial .slick-dots li:before,
.home_testimonial .slick-dots li:after,
.home_testimonial .slick-dots li button:before,
.home_testimonial .slick-dots li button:after {
    display: none !important;
    content: "" !important;
}

.home_testimonial .slick-dots li button {
    font-size: 0 !important;
    line-height: 0 !important;
    display: block !important;
    width: 10px !important;
    height: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer;
    border: none !important;
    outline: none !important;
    background: #CBD5E1 !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    box-shadow: none !important;
}

.home_testimonial .slick-dots li.slick-active button {
    background: #1D4ED8 !important;
    width: 24px !important;
    border-radius: 12px !important;
}

@media (max-width: 640px) {
    .home_testimonial .slick-dots {
        display: none !important;
    }

    .home_testimonial {
        background: #FDFBF2 !important;
        padding: 20px 20px;
        margin-top: 30px;
    }

    .home_testimonial .heading {
        font-size: 26px;
        font-weight: 800 !important;
        color: #0F172A;
        margin-bottom: 8px;
        text-align: left !important;
    }

    .home_testimonial .sub-heading {
        font-size: 14px;
        color: #64748B;
        line-height: 1.5;
        margin-bottom: 24px;
        padding: 0;
        text-align: left;
        max-width: 100%;
    }

    .home_testimonial .testimonial_slider_home {
        margin-top: 20px;
    }

    .home_testimonial .testimonial_slider_home .client-says {
        background: #3C6CB5;
        border-radius: 20px;
        padding: 26px 22px 22px 22px;
        margin: 0 4px;
        box-shadow: 0 4px 16px rgba(60, 108, 181, 0.15);
        transform: none !important;
        text-align: left;
    }

    .home_testimonial .testimonial_slider_home .client-says .msg {
        font-size: 14px;
        line-height: 22px;
        height: auto;
        max-height: 140px;
        margin-bottom: 18px;
        color: #FFFFFF;
        font-weight: 400;
    }

    .home_testimonial .testimonial_slider_home .client-says .name {
        font-size: 16px;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 2px;
    }

    .home_testimonial .testimonial_slider_home .client-says .cityname {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 14px;
    }

    .home_testimonial .testimonial_slider_home .client-says .rating {
        display: flex;
        gap: 4px;
        margin-top: 0;
    }

    .home_testimonial .testimonial_slider_home .client-says .rating .rating-star:before {
        font-size: 16px;
        color: #FF5A1F;
    }
}

/* FAQ Block Styles from another-service-detail.css */
.faq-block {
    background: #F5F5F5;
    padding: 60px 0 80px;
    overflow: hidden
}

.faq-block .container {
    position: relative
}

.faq-block h2 {
    text-align: center;
}

.faq-block .container:after,
.faq-block .container:before {
    content: "";
    background: url(../images/faq-que.png) no-repeat;
    width: 391px;
    height: 387px;
    position: absolute;
    opacity: 0.25;
    top: -50px
}

.faq-block .container:after {
    right: -17%
}

.faq-block .container:before {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    left: -17%
}

.faq-block .faq-list {
    width: 78%;
    margin: 70px auto 0
}

.faq-block .faq-list li {
    margin: 0 0 30px;
    position: relative;
    -webkit-box-shadow: 0px 0px 12.66px 2.53px #78A7E4;
    box-shadow: 0px 0px 12.66px 2.53px #78A7E4;
    background: #fff;
    border-radius: 13px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
    overflow: hidden
}

.faq-block .faq-list li:last-of-type {
    margin: 0
}

.faq-block .faq-list li .faq-head {
    font-size: 20px;
    line-height: 24px;
    color: #343434;
    padding: 30px 60px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1
}

.faq-block .faq-list li .faq-head span {
    position: relative;
    z-index: 1
}

.faq-block .faq-list li .faq-head:before {
    content: "";
    background: url(../images/down-arrow.svg) no-repeat;
    background-size: contain;
    width: 17px;
    height: 8px;
    display: block;
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease
}

.faq-block .faq-list li .faq-head:after {
    content: "";
    background: url(../images/faq-li-blue.png) no-repeat;
    height: 130px;
    width: 125px;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out
}

.faq-block .faq-list li .faq-head.active:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease
}

.faq-block .faq-list li .faq-head.active:after {
    opacity: 1
}

.faq-block .faq-list li .faq-detail {
    display: none;
    font-size: 18px;
    line-height: 22px;
    color: #6F6F6F;
    padding: 0px 60px 30px;
    margin: -15px 0 0;
    position: relative;
    z-index: 1
}

.faq-block .faq-list li .faq-detail ul li {
    margin: 10px 0;
    padding: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    overflow: unset;
    background: unset
}

.faq-block .faq-list li .faq-detail ul li:before {
    content: unset
}

.faq-block .faq-list li .faq-detail ul li:last-of-type {
    margin: 0
}

.faq-block.master-faq-block .container:after,
.faq-block.master-faq-block .container:before {
    width: 227px;
    height: 225px;
    background-size: cover;
    opacity: 1;
    top: -60px
}

.faq-block.master-faq-block .container:before {
    left: -15%
}

.faq-block.master-faq-block .container:after {
    right: -15%
}

.faq-block.master-faq-block .faqs-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 30px auto 0
}

.faq-block.master-faq-block .faqs-div .faq-list {
    width: 48%;
    margin: 0
}

.faq-block.master-faq-block .faqs-div .faq-list li {
    border-radius: 5px;
    margin: 0 0 15px;
    -webkit-box-shadow: 0px 0px 2.53px 2.53px rgba(120, 167, 228, 0.5019607843);
    box-shadow: 0px 0px 2.53px 2.53px rgba(120, 167, 228, 0.5019607843)
}

.faq-block.master-faq-block .faqs-div .faq-list li:last-of-type {
    margin: 0
}

.faq-block.master-faq-block .faqs-div .faq-list li .faq-head {
    font-size: 16px;
    line-height: 20px;
    padding: 15px 50px 15px 15px
}

.faq-block.master-faq-block .faqs-div .faq-list li .faq-head:after {
    height: 60px;
    width: 70px
}

.faq-block.master-faq-block .faqs-div .faq-list li .faq-detail {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 50px 15px 15px
}

@media (max-width:768px) {
    .faq-block {
        padding: 30px 0 50px;
        background: #f5f5f5;
    }

    .faq-block .container:before,
    .faq-block .container:after {
        display: none;
    }

    .faq-block h2,
    .faq-block .heading,
    .faq-block .section-title,
    .faq-block h3 {
        text-align: left !important;
        font-weight: 800 !important;
    }

    .faq-block .sub-heading {
        text-align: left !important;
    }

    .faq-block .faq-list {
        width: 95%;
        margin: 30px auto 0;
    }

    /* Restyle FAQ items for mobile */
    .faq-block .faq-list li {
        margin: 0 0 15px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
        /* Match screenshot softer shadow */
        border-radius: 8px;
        /* Slightly less rounded */
        border: none;
    }

    .faq-block .faq-list li .faq-head {
        font-size: 15px;
        line-height: 22px;
        padding: 15px 40px 15px 15px;
        /* Tighter padding, space for arrow */
        color: #334155;
    }



    .faq-block .faq-list li .faq-detail {
        font-size: 14px;
        line-height: 22px;
        padding: 0 15px 15px 15px;
        color: #64748b;
        margin: 0;
    }

    .faq-block.master-faq-block .faqs-div {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 90%;
        gap: 15px;
    }

    .faq-block.master-faq-block .faqs-div .faq-list {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .faq-block.master-faq-block .faqs-div .faq-list li .faq-head {
        font-size: 14px;
        line-height: 20px;
        padding: 10px 40px 10px 25px;
        text-align: left !important;
    }

    .faq-block.master-faq-block .faqs-div .faq-list li {
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 13px;
    }

    .faq-block.master-faq-block .faqs-div {
        width: 100%
    }
}

/* CTA Banner Box */
.uni-cta-banner-section {
    background: #F5F5F5;
    padding: 40px 0 80px 0;
}

.uni-cta-banner-box {
    background: #1D528E;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0px 10px 30px rgba(29, 82, 142, 0.25);
}

.uni-cta-title {
    font-family: "robotomedium", sans-serif;
    font-size: 32px;
    line-height: 40px;
    color: #ffffff;
    margin: 0 0 14px 0;
}

.uni-cta-desc {
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 28px auto;
    max-width: 680px;
}

.uni-cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #1D528E;
    font-family: "robotomedium", sans-serif;
    font-size: 15px;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.uni-cta-btn:hover {
    background: #f8fafc;
    color: #153e6d;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .uni-cta-banner-section {
        padding: 40px 0 33px 0;
        background: transparent;
    }

    .uni-cta-banner-box {
        padding: 35px 20px;
        border-radius: 16px;
    }

    .uni-cta-title {
        font-size: 24px;
        line-height: 32px;
    }

    .uni-cta-desc {
        font-size: 14px;
        line-height: 20px;
    }
}