.expertise-overview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-overview .hero-slide {
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-overview .container {
    position: relative;
    z-index: 2;
}

.expertise-overview .section-header {
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}

.expertise-overview .overview-content {
    position: relative;
    z-index: 2;
}

.expertise-overview .overview-text {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.expertise-overview .overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #222222;
    margin-bottom: 1.5rem;
}

@media screen and (max-width: 1000px) {
    .expertise-overview {
        min-height: 500px;
    }
}

@media screen and (max-width: 920px) {

    .expertise-overview .overview-text {
        padding: 2rem;
    }
}

@media screen and (max-width: 700px) {
    .expertise-overview {
        min-height: 550px;
    }
}

@media screen and (max-width: 600px) {
    .expertise-overview {
        min-height: 500px;
    }

    .expertise-overview .overview-text {
        padding: 1.5rem;
    }

    .expertise-overview .overview-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media screen and (max-width: 500px) {
    .expertise-overview {
        width: 100%;
        min-height: 550px;
    }

    .expertise-overview .overview-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media screen and (max-width: 450px) {
    .expertise-overview {
        width: 100%;
        min-height: 600px;
    }
}

@media screen and (max-width: 400px) {
    .expertise-overview {
        width: 100%;
        min-height: 650px;
    }
}

.news-ticker {
    position: relative;
    top: var(--relative-top);
    background: #fff;
    padding: 2rem 0;
    overflow: hidden;
}

.news-ticker .ticker-content {
    display: flex;
    width: max-content;
    animation: ticker 30s linear infinite;
    gap: 4rem;
}

.news-ticker .ticker-item a {
    color: var(--primary-color-2);
    font-size: var(--section-main-content);
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.news-ticker .ticker-item a:hover {
    color: var(--primary-color-1-hover);
}

@keyframes ticker {
    0% {
        transform: translateX(0%);
    }

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

.news-ticker .ticker-controls {
    display: none;
}

.what-sets-apart {
    position: relative;
    top: var(--relative-top);
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 50px 0 0 0;
    overflow: hidden;
}

.what-sets-apart .bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.what-sets-apart .bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.what-sets-apart .bg-circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1B365D, #4A90E2);
    top: 10%;
    right: -150px;
    animation: float 6s ease-in-out infinite;
}

.what-sets-apart .bg-circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4A90E2, #1B365D);
    bottom: 20%;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.what-sets-apart .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.what-sets-apart .intro-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 70px;
}

.what-sets-apart .intro-content {
    padding: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.25, 0.25, 0.25, 1);
}

.what-sets-apart .intro-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.what-sets-apart .title-section {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.25, 0.25, 1);
}

.what-sets-apart .title-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.what-sets-apart .titles {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
    color: #1B365D;
    position: relative;
    text-align: left;
    max-width: 900px;
}

.what-sets-apart .titles::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 320px;
    height: 4px;
    background: linear-gradient(90deg, #1B365D, #4A90E2);
    border-radius: 2px;
}

.what-sets-apart .intro-text {
    font-size: var(--section-content);
    color: #121212;
    line-height: 1.7;
}

.what-sets-apart .image-section {
    position: relative;
    top: 0px;
    height: 350px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s cubic-bezier(0.25, 0.25, 0.25, 1);
}

.what-sets-apart .image-section.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.what-sets-apart .image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 100%;
    transform: translateZ(0);
}

.what-sets-apart .images {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.25, 0.25, 1);
}

.what-sets-apart .images:nth-child(1) {
    transform: translateY(0);
}

.what-sets-apart .images:nth-child(2) {
    transform: translateY(0px);
}

.what-sets-apart .images:nth-child(3) {
    transform: translateY(0px);
}

.what-sets-apart .images:nth-child(4) {
    transform: translateY(0);
}

.what-sets-apart .images:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.what-sets-apart .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.what-sets-apart .images:hover img {
    transform: scale(1.1);
}

.what-sets-apart .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(27, 54, 93, 0.7), rgba(74, 144, 226, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.what-sets-apart .images:hover .image-overlay {
    opacity: 1;
}

.what-sets-apart .subheading-section {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.25, 0.25, 1);
}

.what-sets-apart .subheading-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.what-sets-apart .subheading {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color-2);
    font-style: italic;
}

.what-sets-apart .features-section {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.25, 0.25, 1);
}

.what-sets-apart .features-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.what-sets-apart .feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.what-sets-apart .feature-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: #F5F7FA;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color-2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.what-sets-apart .feature-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.what-sets-apart .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 54, 93, 0.15);
}

.what-sets-apart .feature-icon {
    background: linear-gradient(135deg, var(--primary-color-2-hover), var(--primary-color-2));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    font-size: 1.4rem;
}

.what-sets-apart .feature-text {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .what-sets-apart .container {
        padding: 0 30px;
    }

    .what-sets-apart .titles {
        font-size: 3rem;
    }

    .what-sets-apart .intro-images-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .what-sets-apart {
        padding: 60px 0;
    }

    .what-sets-apart .container {
        padding: 0 20px;
    }

    .what-sets-apart .titles {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .what-sets-apart .titles::after {
        width: 100%;
    }

    .what-sets-apart .intro-images-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .what-sets-apart .intro-content {
        order: 1;
    }

    .what-sets-apart .image-section {
        order: 2;
        height: 400px;
    }

    .what-sets-apart .intro-text {
        font-size: 1.1rem;
        text-align: center;
    }

    .what-sets-apart .subheading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .what-sets-apart .feature-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .what-sets-apart .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .what-sets-apart .feature-icon {
        margin: 0 0 1rem 0;
    }

    .what-sets-apart .image-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .what-sets-apart .bg-circle-1,
    .what-sets-apart .bg-circle-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .what-sets-apart .titles {
        font-size: 1.5rem;
    }

    .what-sets-apart .intro-text {
        font-size: 1rem;
    }

    .what-sets-apart .subheading {
        font-size: 1.3rem;
    }

    .what-sets-apart .image-section {
        height: 300px;
    }

    .what-sets-apart .image-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

    .what-sets-apart .images:nth-child(n) {
        transform: translateY(0) !important;
    }

    .what-sets-apart .feature-item {
        padding: 1.5rem;
    }

    .what-sets-apart .feature-text {
        font-size: 1rem;
    }
}

.video-section {
    position: relative;
    top: var(--relative-top);
    background: var(--primary-color-2);
    padding: 4rem 0;
    text-align: center;
}

.video-section .container {
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
    max-width: 1200px;
}

.video-header {
    margin-bottom: 3rem;
}

.video-badge {
    display: inline-block;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 1.125rem;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1);
}

.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #0F172A;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.video-section.video-in-expertise {
    background-color: #fff;
}

.video-section.video-in-expertise .video-header {
    margin-bottom: 0;
}

.video-badge.expertise-heading {
    color: var(--primary-color-2);
}

@media screen and (max-width: 420px) {
    .video-section .video-badge.video-badge.expertise-heading {
        font-size: 32px;
    }
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(12, 123, 192, .9);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all .3s ease-in-out;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: #0C7BC0;
    transform: translate(-50%, -50%) scale(1.1);
}

@media screen and (max-width: 920px) {
    .video-section .video-badge {
        font-size: 32px;
    }
}

@media screen and (max-width: 640px) {
    .video-section .video-badge {
        font-size: 24px;
    }
}

@media screen and (max-width: 420px) {
    .video-section .video-badge {
        font-size: 22px;
    }
}

.call-to-action {
    position: relative;
    top: var(--relative-top);
    padding: 50px;
}

.call-to-action .call-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(200px, 1fr));
    gap: 15px;
    padding: 10px 50px 20px 50px;
}

.call-to-action .call-cards {
    position: relative;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.call-to-action .call-cards.visible {
    transform: translateY(0);
    opacity: 1;
}

.call-to-action .call-cards.slide-left {
    transform: translateX(-50px) translateY(50px);
}

.call-to-action .call-cards.slide-left.visible {
    transform: translateX(0) translateY(0);
}

.call-to-action .call-cards.slide-right {
    transform: translateX(50px) translateY(50px);
}

.call-to-action .call-cards.slide-right.visible {
    transform: translateX(0) translateY(0);
}

.call-to-action .call-cards::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #1B365D, #0ea5e9, #06b6d4, #1B365D);
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    border-radius: 22px;
    z-index: -1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.call-to-action .call-cards:hover::before {
    opacity: 1;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.call-to-action .call-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
    z-index: 1;
}

.call-to-action .call-cards:hover .call-backgrounds {
    transform: scale(1.08);
}

.call-to-action .call-overlays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(93, 30, 27, 0.85) 0%, rgba(93, 30, 27, 0.4) 60%, transparent 100%);
    z-index: 2;
    transition: background 0.3s ease;
}

.call-to-action .call-cards:hover .call-overlays {
    background: linear-gradient(135deg,
            rgba(27, 54, 93, 0.9) 0%,
            rgba(27, 54, 93, 0.6) 60%,
            rgba(27, 54, 93, 0.1) 100%);
}

.call-to-action .call-contents {
    position: relative;
    height: 100%;
    display: flex;
    padding: 10px 10px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
}

.call-to-action .call-headline {
    font-size: 20px;
    padding: 20px 20px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.call-to-action .call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    max-width: 100%;
    padding: 12px 24px;
    height: auto;
    background: linear-gradient(135deg, var(--primary-color-2-hover) 0%, var(--primary-color-2) 100%);
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(27, 54, 93, 0.3);
    text-align: center;
    word-wrap: break-word;
}

.call-to-action .call-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.call-to-action .call-button:hover::before {
    left: 100%;
}

.call-to-action .call-button:hover {
    background: #fff;
    color: var(--primary-color-2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(6, 182, 212, 0.3);
}

.call-to-action .call-button:active {
    transform: translateY(-1px);
}

@media (max-width: 1200px) {
    .call-to-action .call-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .call-to-action .call-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .call-to-action .call-button {
        font-size: 14px;
        padding: 10px 18px;
        min-width: 130px;
    }
}

@media screen and (max-width: 620px) {
    .call-to-action .call-grid {
        padding: 10px 0px 20px;
    }
}

@media (max-width: 500px) {
    .call-to-action .call-grid {
        padding: 10px 50px 20px;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .call-to-action .call-contents {
        height: 85%;
    }

    .call-to-action .call-headline {
        font-size: 24px;
    }
}

@media (max-width: 480px) {

    .call-to-action .call-grid {
        padding: 10px 30px 20px;
    }

    .call-to-action .call-contents {
        height: 85%;
    }

    .call-to-action .call-headline {
        font-size: 20px;
    }

    .call-to-action .call-button {
        font-size: 13px;
        padding: 8px 16px;
        width: 100%;
    }
}

@media screen and (max-width: 400px) {
    .call-to-action {
        padding: 20px;
    }
}

.footer {
    position: relative;
    top: var(--relative-top);
}