/* About Us Page Specific Styles Only */

/* Breadcrumb Styles */
.breadcrumb-section {
    background: #f5f6fa;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: inline;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 0.5rem;
    color: #666;
}

.breadcrumb a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #f9a825 !important;
}

/* Unified Hero Section Styles for About Us, Other Services, and Residential Mortgage */
.about-hero,
.about-hero.other-services-hero,
.about-hero.residential-hero {
    position: relative;
    width: 100vw;
    min-height: 480px;
    height: 60vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* Modern, responsive hero video background - full width */
.about-hero__bg,
.about-hero__video-bg {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100%;
    z-index: 1;
    overflow: hidden;
    aspect-ratio: 16/7;
    min-height: 320px;
    max-height: 80vh;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.about-hero__video-bg iframe {
    width: 100vw !important;
    height: 100%;
    min-width: 100vw;
    min-height: 100%;
    object-fit: cover;
    pointer-events: auto !important;
    border: none;
    z-index: 10 !important;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.about-hero__bg:hover .about-hero__video-bg iframe {
    transform: scale(1.03);
}

.about-hero__overlay {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100%;
    background: linear-gradient(135deg, rgba(23,23,73,0.4) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    pointer-events: none;
}

.about-hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Remove container restrictions for hero section */
.about-hero.other-services-hero,
.about-hero.residential-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .about-hero,
    .about-hero.other-services-hero,
    .about-hero.residential-hero {
        min-height: 600px !important;
        height: 600px !important;
        max-height: 600px !important;
    }
    .about-hero__bg {
        min-height: 600px !important;
        height: 600px !important;
        max-height: 600px !important;
    }
    .about-hero__bg img {
        width: 100%;
        height: 100%;
        min-height: 600px !important;
        max-height: 600px !important;
        object-fit: cover;
        display: block;
    }
}
@media (max-width: 1023px) {
    .about-hero,
    .about-hero.other-services-hero,
    .about-hero.residential-hero {
        min-height: 340px !important;
        height: 38vw !important;
        max-height: 400px !important;
    }
    .about-hero__bg,
    .about-hero__video-bg {
        min-height: 220px !important;
        height: 38vw !important;
        max-height: 340px !important;
        aspect-ratio: 16/9;
    }
    .about-hero__video-bg iframe {
        min-height: 220px;
        max-height: 340px;
    }
}
@media (max-width: 767px) {
    .about-hero,
    .about-hero.other-services-hero,
    .about-hero.residential-hero {
        min-height: 320px !important;
        height: 90vw !important;
        max-height: 480px !important;
        width: 100vw;
    }
    .about-hero__bg,
    .about-hero__video-bg {
        min-height: 240px !important;
        height: 90vw !important;
        max-height: 480px !important;
        aspect-ratio: 16/9;
        width: 100vw;
    }
    .about-hero__video-bg iframe {
        min-height: 240px;
        max-height: 480px;
        width: 100vw !important;
        z-index: 10 !important;
        pointer-events: auto !important;
    }
    .about-hero__overlay {
        background: linear-gradient(120deg, rgba(23,23,73,0.32) 60%, rgba(0,0,0,0.28) 100%);
        width: 100vw;
        pointer-events: none;
    }
}

@media (min-width: 768px) {
    .about-hero,
    .about-hero.other-services-hero,
    .about-hero.residential-hero {
        min-height: 400px !important;
        height: 60vw !important;
        max-height: 700px !important;
        width: 100vw;
    }
    .about-hero__bg,
    .about-hero__video-bg {
        min-height: 400px !important;
        height: 60vw !important;
        max-height: 700px !important;
        width: 100vw;
    }
    .about-hero__video-bg iframe {
        min-height: 400px;
        max-height: 700px;
        width: 100vw !important;
        z-index: 10 !important;
        pointer-events: auto !important;
    }
    .about-hero__overlay {
        width: 100vw;
        pointer-events: none;
    }
}

.about-hero__bg {
    position: relative;
}

/* Lighter overlay for Residential Mortgage hero section only */
.about-hero.other-services-hero .about-hero__overlay,
.about-hero.residential-hero .about-hero__overlay {
    background: rgba(23,23,73,0.08) !important;
}

.about-hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.about-hero__desc {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.why-wis {
    background: #fff;
    padding: 4rem 0;
}

.why-wis__container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    max-width: 90% !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
}

.why-wis__image img {
    max-width: 340px;
    width: 100%;
    height: auto;
    display: block;
}

.why-wis__content {
    max-width: 700px;
    width: 100%;
}

.why-wis__title {
    color: #1a1a4b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.why-wis__content p {
    color: #222;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .why-wis__container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .why-wis__content {
        max-width: 100%;
    }
}

.why-wis__stats {
    display: flex;
    gap: 2em;
    list-style: none;
    padding: 0;
    margin: 1em 0 0 0;
}
.why-wis__stats li {
    text-align: center;
}

.leadership__grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.leader-card {
    background: #f5f6fa;
    border-radius: 12px;
    padding: 2rem;
    flex: 1 1 250px;
    max-width: 32%;
    box-sizing: border-box;
    text-align: center;
}

.leader-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1em;
}

.leader-card__links a {
    color: #1a1a4b;
    text-decoration: none;
    transition: color 0.2s ease;
}
.leader-card__links a:hover {
    color: #f9a825;
}

.awards__grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.award-card {
    background: #f5f6fa;
    border-radius: 12px;
    padding: 2rem;
    flex: 1 1 200px;
    max-width: 23%;
    box-sizing: border-box;
    text-align: center;
}

.award-card__icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 1em;
}

.our-process__content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.our-process__image img {
    width: 200px;
    max-width: 100%;
    border-radius: 12px;
}

.our-process__text {
    flex: 1 1 300px;
}

.meet-team__diagram img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

.testimonials__grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.testimonial-card {
    background: #f5f6fa;
    border-radius: 12px;
    padding: 2rem;
    flex: 1 1 250px;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 2rem;
}

.contact-cta__actions {
    display: flex;
    gap: 2em;
    margin-bottom: 1em;
    flex-wrap: wrap;
}

.contact-cta__phone,
.contact-cta__email {
    background: linear-gradient(to right, #f7a825, #f58220);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    display: inline-block;
}
.contact-cta__phone:hover,
.contact-cta__email:hover {
    background: linear-gradient(to right, #f58220, #f7a825);
    transform: translateY(-2px);
}

.contact-cta__form {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    align-items: flex-end;
}
.contact-cta__form label {
    flex: 1 1 100%;
    font-weight: 600;
    margin-top: 0.5em;
}
.contact-cta__form input,
.contact-cta__form select {
    flex: 1 1 200px;
    padding: 0.5em;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
}
.contact-cta__form select {
    cursor: pointer;
}
.contact-cta__form input:focus,
.contact-cta__form select:focus {
    outline: none;
    border-color: #f9a825;
    box-shadow: 0 0 0 2px rgba(249, 168, 37, 0.2);
}
.contact-cta__form button {
    background: linear-gradient(to right, #f7a825, #f58220);
    color: #fff;
    border: 2px solid transparent;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}
.contact-cta__form button:hover {
    background: linear-gradient(to right, #f58220, #f7a825);
    transform: translateY(-2px);
}

/* Form success/error messages */
.contact-cta__form .form-message {
    flex: 1 1 100%;
    padding: 1em;
    border-radius: 12px;
    margin-top: 1em;
    text-align: center;
    font-weight: 600;
}
.contact-cta__form .form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.contact-cta__form .form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 1023px) {
    .leadership__grid,
    .awards__grid,
    .testimonials__grid {
        flex-direction: column;
        gap: 1.5em;
    }
    .leader-card,
    .award-card,
    .testimonial-card {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .about-hero,
    .why-wis__content,
    .our-process__content {
        flex-direction: column;
        gap: 1em;
        padding: 1em;
    }
    .why-wis__stats {
        flex-direction: column;
        gap: 0.5em;
    }
    .contact-cta__form {
        flex-direction: column;
        gap: 0.5em;
    }
    .contact-cta__actions {
        flex-direction: column;
        gap: 0.5em;
    }
}

.about-hero__breadcrumb {
    margin-bottom: 1.5rem;
}

.about-hero__breadcrumb .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.95;
}

.about-hero__breadcrumb .breadcrumb li {
    color: #fff;
}

.about-hero__breadcrumb .breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.about-hero__breadcrumb .breadcrumb a:hover {
    color: #f9a825;
}

.about-counters {
    background: #fff;
    padding: 2.5rem 0 2rem 0;
}

.about-counters__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-counters__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 0;
}

.about-counters__number {
    color: #f9a825;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.about-counters__label {
    font-size: 1rem;
    color: var(--color-text-dark);
}

@media (max-width: 900px) {
    .about-counters__container {
        gap: 1rem;
    }
    .about-counters__number {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .about-counters__container {
        flex-direction: column;
        gap: 2rem;
    }
    .about-counters__item {
        align-items: center;
    }
}

.about-leadership-cards {
    background-color: var(--color-primary-dark-blue);
    padding-top: 64px;
    padding-bottom: 64px;
}

.about-leadership-cards .section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.about-leadership-cards__card {
    background-color: transparent;
    color: var(--color-white);
    max-width: 370px;
    padding: 0;
    flex: 1;
    min-width: 300px;
}

.about-leadership-cards__card-image-wrapper {
    background-color: var(--color-white);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.about-leadership-cards__card h3 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.about-leadership-cards__card p {
    margin-bottom: 1rem;
}

.about-leadership-cards__card .social-links a {
    color: var(--color-white);
}

.about-leadership-cards__card .social-links a:hover {
    color: var(--color-accent-orange);
}

/* About Awards Section Styles (Grid version, imported from section-awards-carousel.css) */
.about-awards__title {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    color: #23215F;
    margin-bottom: 3rem;
    margin-top: 2rem;
    letter-spacing: -1px;
}

.about-awards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 1200px) {
    .about-awards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media (max-width: 700px) {
    .about-awards__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
.about-awards__card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: transparent;
    border: none;
    box-shadow: none;
}
.about-awards__gradient-box {
    width: 100%;
    height: 240px;
    border-radius: 20px;
    background: linear-gradient(120deg, #FF8008 0%, #FFC837 100%);
    margin-bottom: 1.5rem;
}
.about-awards__text {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.about-awards__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #23215F;
    margin-bottom: 0.5rem;
}
.about-awards__card-description {
    color: #23215F;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
    font-weight: 400;
}

/* === About Awards Section (New Layout) === */
.about-awards__flex {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: center;
}
.about-awards__visual {
    flex: 0 0 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-awards__visual-box {
    background: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(255,152,0,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 320px;
    max-width: 400px;
}
.about-awards__visual-img {
    width: 240px;
    max-width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
}
@media (max-width: 600px) {
    .about-awards__visual-img {
        width: 160px;
    }
}
.about-awards__visual-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}
.about-awards__list-wrapper {
    flex: 1 1 0%;
    max-width: 600px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(23,23,73,0.06);
    padding: 2rem 2.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.about-awards__list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 420px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ff9800 #f5f6fa;
}
.about-awards__list::-webkit-scrollbar {
    width: 8px;
    background: #f5f6fa;
    border-radius: 8px;
}
.about-awards__list::-webkit-scrollbar-thumb {
    background: #ff9800;
    border-radius: 8px;
}
.about-awards__item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}
.about-awards__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.about-awards__item-title {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a4b;
    margin-bottom: 0.3rem;
}
.about-awards__item-desc {
    display: block;
    font-size: 1rem;
    color: #222;
    line-height: 1.5;
}
@media (max-width: 1023px) {
    .about-awards__flex {
        flex-direction: column;
        align-items: stretch;
    }
    .about-awards__visual {
        justify-content: flex-start;
        margin-bottom: 2rem;
    }
    .about-awards__list-wrapper {
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
}
@media (max-width: 600px) {
    .about-awards__visual-box {
        min-width: 0;
        max-width: 100%;
        padding: 1.5rem 0.5rem 1rem 0.5rem;
    }
    .about-awards__visual-img {
        width: 110px;
    }
    .about-awards__list-wrapper {
        padding: 1rem 0.5rem;
    }
    .about-awards__list {
        max-height: 260px;
    }
}

body {
    overflow-x: hidden;
}

/* Why Choose Us Section - Modern Flex Layout */
.why-choose-us {
    background: var(--section-bg, #fff);
    padding: 4rem 0;
}
.why-choose-us__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--primary-dark-blue, #181c4a);
    letter-spacing: -0.01em;
}
.why-choose-us__row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}
.why-choose-us__row--top {
    margin-bottom: 0;
}
.why-choose-us__row--bottom {
    margin-top: 0;
}
.why-choose-us__center-image {
    margin: -3.5rem auto 2.5rem auto;
    z-index: 2;
    position: relative;
}
.why-choose-us__center-image img {
    width: 210px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}
.why-choose-us__card {
    background: var(--card-bg, #fff);
    color: var(--primary-dark-blue, #181c4a);
    border-radius: 20px;
    box-shadow: 0 6px 24px 0 rgba(24,28,74,0.18);
    padding: 2rem 2rem 1.5rem 2rem;
    min-width: 320px;
    max-width: 370px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: box-shadow 0.2s;
}
.why-choose-us__card:hover {
    box-shadow: 0 12px 32px 0 rgba(24,28,74,0.22);
}
.why-choose-us__card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
}
.why-choose-us__card .why-choose-us__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
}
.why-choose-us__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}
.why-choose-us__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark-blue, #181c4a);
    margin-bottom: 0;
}
.why-choose-us__card-desc {
    font-size: 1.08rem;
    color: var(--primary-dark-blue, #181c4a);
    line-height: 1.6;
    margin-top: 0.2rem;
}
@media (max-width: 1023px) {
    .why-choose-us__row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .why-choose-us__center-image {
        margin: 2rem 0;
    }
    .why-choose-us__card {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    .why-choose-us {
        padding: 2rem 0;
    }
    .why-choose-us__title {
        font-size: 2rem;
    }
    .why-choose-us__center-image img {
        width: 140px;
    }
}

.why-choose-us--diamond {
    background: #181c4a;
    padding: 4rem 0;
}
.why-choose-us__container--diamond {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.why-choose-us__row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2.5rem;
}
.why-choose-us__row--top,
.why-choose-us__row--bottom {
    max-width: 900px;
}
.why-choose-us__row--middle {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin-bottom: 2.5rem;
}
.why-choose-us__spacer {
    flex: 1 1 120px;
    min-width: 60px;
    max-width: 180px;
    height: 1px;
}
.why-choose-us__center-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2.5rem;
    z-index: 2;
}
.why-choose-us__center-image img {
    width: 220px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}
.why-choose-us__title {
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}
@media (max-width: 1023px) {
    .why-choose-us__row {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .why-choose-us__center-image {
        margin: 2rem 0;
    }
    .why-choose-us__card {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    .why-choose-us__spacer {
        display: none;
    }
}
@media (max-width: 767px) {
    .why-choose-us--diamond {
        padding: 2rem 0;
    }
    .why-choose-us__title {
        font-size: 2rem;
    }
    .why-choose-us__center-image img {
        width: 140px;
    }
}

.why-choose-us--lightbg {
    background: #f5f6fa;
    padding: 4rem 0;
}
.why-choose-us__center-icon {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: 100%;
    margin: 0 2.5rem;
    z-index: 2;
}
.why-choose-us__center-icon .why-choose-us__icon {
    width: 240px;
    height: 240px;
    min-width: 240px;
    min-height: 240px;
    max-width: 100%;
}
.why-choose-us__center-icon .why-choose-us__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.why-choose-us__title {
    color: var(--primary-dark-blue, #181c4a);
    text-align: center;
    margin-bottom: 3rem;
}

@media (max-width: 1023px) {
    .why-choose-us__row--middle {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .why-choose-us__center-icon {
        width: 100%;
        margin: 2rem 0;
    }
    .why-choose-us__center-icon .why-choose-us__icon {
        width: 160px;
        height: 160px;
        min-width: 120px;
        min-height: 120px;
    }
}
@media (max-width: 767px) {
    .why-choose-us__center-icon .why-choose-us__icon {
        width: 100px;
        height: 100px;
        min-width: 80px;
        min-height: 80px;
    }
}

.why-choose-us__card .why-choose-us__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
}

.why-choose-us__center-icon .why-choose-us__icon {
    width: 240px;
    height: 240px;
    min-width: 240px;
    min-height: 240px;
    max-width: 100%;
}

@media (max-width: 1023px) {
    .why-choose-us__center-icon .why-choose-us__icon {
        width: 160px;
        height: 160px;
        min-width: 120px;
        min-height: 120px;
    }
    .why-choose-us__card .why-choose-us__icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
}

@media (max-width: 767px) {
    .why-choose-us__center-icon .why-choose-us__icon {
        width: 100px;
        height: 100px;
        min-width: 80px;
        min-height: 80px;
    }
    .why-choose-us__card .why-choose-us__icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }
}

.leadership-slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.leadership-slider {
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease-in-out;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.leadership-slider .about-leadership-cards__card {
    flex: 0 0 280px;
    max-width: 280px;
    min-width: 240px;
    scroll-snap-align: center;
}

/* Navigation Arrows */
.leadership-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid #171749;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.leadership-slider-nav:hover {
    background: #171749;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.leadership-slider-nav:hover svg {
    color: #fff;
}

.leadership-slider-nav svg {
    color: #171749;
    width: 24px;
    height: 24px;
    transition: color 0.3s ease;
}

.leadership-slider-prev {
    left: 10px;
}

.leadership-slider-next {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .leadership-slider {
        gap: 1rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .leadership-slider .about-leadership-cards__card {
        flex: 0 0 280px;
        max-width: 280px;
        min-width: 240px;
    }
    
    .leadership-slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .leadership-slider-nav svg {
        width: 16px;
        height: 16px;
    }
    
    .leadership-slider-prev {
        left: 5px;
    }
    
    .leadership-slider-next {
        right: 5px;
    }
}

@media (max-width: 767px) {
    .leadership-slider {
        gap: 0.5rem;
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .leadership-slider .about-leadership-cards__card {
        flex: 0 0 200px;
        max-width: 200px;
        min-width: 180px;
    }
    
    .leadership-slider-nav {
        width: 36px;
        height: 36px;
    }
    
    .leadership-slider-nav svg {
        width: 14px;
        height: 14px;
    }
    
    .leadership-slider-prev {
        left: 5px;
    }
    
    .leadership-slider-next {
        right: 5px;
    }
}

@media (min-width: 1024px) {
    .leadership-slider {
        justify-content: flex-start;
        gap: 2rem;
    }
    
    .leadership-slider .about-leadership-cards__card {
        flex: 0 0 280px;
        max-width: 280px;
        min-width: 240px;
    }
} 

.why-choose-us__card .why-choose-us__icon, .why-choose-us__card .why-choose-us__icon i {
    color: var(--color-accent-orange) !important;
} 

.about-awards {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
@media (max-width: 600px) {
    .about-awards {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
} 
