/* Welcome Section */
.welcome-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(240, 244, 248, 1) 100%);
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(1, 174, 239, 0.3) 50%,
            transparent 100%);
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.welcome-content {
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.welcome-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 32px;
    letter-spacing: -0.3px;
}

.welcome-title .highlight-blue {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.welcome-title .highlight-blue::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--accent-cyan) 0%,
            var(--primary-blue) 100%);
    border-radius: 2px;
    animation: expandWidth 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

@keyframes expandWidth {
    from {
        width: 0;
        left: 50%;
    }

    to {
        width: 100%;
        left: 0;
    }
}

.welcome-description {
    font-size: 16px;
    font-weight: 400;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-description:last-of-type {
    margin-bottom: 40px;
}

.iso-certified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 3px 10px;
    background: rgba(1, 174, 239, 0.08);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.iso-certified:hover {
    background: rgba(1, 174, 239, 0.12);
    transform: translateY(-1px);
}

.iso-badge {
    /* width: 20px; */
    height: 20px;
    object-fit: contain;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 72, 118, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-learn-more:hover {
    background: #005a94;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 72, 118, 0.35);
    gap: 14px;
}

.btn-learn-more:hover::before {
    left: 100%;
}

.btn-learn-more i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 13px;
}

.btn-learn-more:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .welcome-section {
        padding: 80px 0;
    }

    .welcome-title {
        font-size: 32px;
    }

    .welcome-description {
        font-size: 15px;
    }

    .welcome-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 70px 0;
    }

    .welcome-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .welcome-description {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .welcome-description:last-of-type {
        margin-bottom: 36px;
    }

    .welcome-container {
        padding: 0 20px;
    }

    .btn-learn-more {
        width: 100%;
        justify-content: center;
        padding: 13px 28px;
        font-size: 14px;
    }

    .iso-badge {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .welcome-title {
        font-size: 24px;
    }

    .welcome-description {
        font-size: 14px;
    }

    .iso-certified {
        font-size: 13px;
        padding: 2px 8px;
    }
}


/* Verticals Section */
.verticals-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 1) 10%,
            rgba(248, 250, 252, 1) 100%);
    overflow: hidden;
}

.verticals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 72, 118, 0.1) 50%,
            transparent 100%);
}

.verticals-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.highlight-gold {
    color: var(--accent-gold);
    position: relative;
}

.section-description {
    font-size: 17px;
    font-weight: 400;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Verticals Grid - Updated for 5 cards in one row */
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 60px;
}

/* Vertical Card - Adjusted for narrower width */
.vertical-card {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.vertical-card:nth-child(1) {
    animation-delay: 0.1s;
}

.vertical-card:nth-child(2) {
    animation-delay: 0.2s;
}

.vertical-card:nth-child(3) {
    animation-delay: 0.3s;
}

.vertical-card:nth-child(4) {
    animation-delay: 0.4s;
}

.vertical-card:nth-child(5) {
    animation-delay: 0.5s;
}

.vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Image Wrapper - Adjusted height */
.vertical-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.vertical-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-card:hover .vertical-image {
    transform: scale(1.05);
}

.vertical-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-card:hover .vertical-overlay {
    opacity: 1;
}

/* Content - Adjusted padding */
.vertical-content {
    padding: 20px;
}

.vertical-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-card:hover .vertical-title {
    color: var(--primary-blue);
}

.vertical-text {
    font-size: 13px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 60px;
}

/* Link */
.vertical-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.vertical-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-link:hover {
    gap: 10px;
    color: var(--accent-gold);
}

.vertical-link:hover::before {
    width: calc(100% - 16px);
}

.vertical-link i {
    font-size: 11px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vertical-link:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .verticals-grid {
        gap: 20px;
    }

    .vertical-title {
        font-size: 17px;
    }

    .vertical-text {
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    .verticals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .vertical-image-wrapper {
        height: 200px;
    }

    .vertical-content {
        padding: 24px;
    }

    .vertical-title {
        font-size: 20px;
    }

    .vertical-text {
        font-size: 14px;
        min-height: auto;
    }
}

@media (max-width: 992px) {
    .verticals-section {
        padding: 100px 0;
    }

    .verticals-container {
        padding: 0 30px;
    }

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

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 38px;
    }

    .section-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .verticals-section {
        padding: 80px 0;
    }

    .verticals-container {
        padding: 0 20px;
    }

    .verticals-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 15px;
    }

    .vertical-image-wrapper {
        height: 200px;
    }

    .vertical-content {
        padding: 24px;
    }

    .vertical-title {
        font-size: 20px;
    }

    .vertical-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .vertical-image-wrapper {
        height: 180px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .verticals-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
    }

    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .verticals-section {
        padding: 100px 0;
    }

    .verticals-container {
        padding: 0 30px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 38px;
    }

    .section-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .verticals-section {
        padding: 80px 0;
    }

    .verticals-container {
        padding: 0 20px;
    }

    .verticals-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 15px;
    }

    .vertical-image-wrapper {
        height: 200px;
    }

    .vertical-content {
        padding: 24px;
    }

    .vertical-title {
        font-size: 20px;
    }

    .vertical-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .vertical-image-wrapper {
        height: 180px;
    }
}


/* Managing Director Section */
.md-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.md-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.md-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: start;
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Left Side */
.md-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
}

.md-number {
    position: absolute;
    top: -10px;
    right: -20px;
    font-size: 200px;
    font-weight: 800;
    color: #f5f0e8;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -5px;
    z-index: 0;
}

.md-image-card {
    position: relative;
    z-index: 1;
    background: #f5f0e8;
    border-radius: 30px;
    padding: 25px;
    transform: rotate(6deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.md-image-card:hover {
    transform: rotate(-3deg) translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.md-quote-icon {
    position: absolute;
    top: 15px;
    right: -7%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.md-quote-icon i {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
}

.md-image-wrapper {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transform: rotate(-6deg);
    max-height: 400px;
}

.md-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.md-image-wrapper:hover .md-image {
    transform: scale(1.05);
}

.md-info {
    text-align: center;
    position: relative;
    z-index: 1;
}

.md-name {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.md-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--accent-gold);
    margin: 0 0 6px 0;
    letter-spacing: 0.3px;
}

.md-company {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0;
    letter-spacing: 0.2px;
}

/* Right Side */
.md-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
}

.md-content {
    position: relative;
}

.md-greeting {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 28px 0;
    letter-spacing: -0.3px;
    line-height: 1.4;
}

.md-message p {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    line-height: 1.75;
    margin: 0 0 20px 0;
    letter-spacing: 0.1px;
}

.md-message p:last-child {
    margin-bottom: 0;
}

.md-signature {
    margin-top: 40px;
}

.md-regards {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    margin: 0 0 20px 0;
}

.md-sign-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    letter-spacing: -0.3px;
}

.md-sign-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-gold);
    margin: 0;
    letter-spacing: 0.2px;
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .md-card {
        grid-template-columns: 380px 1fr;
        gap: 60px;
    }

    .md-number {
        font-size: 180px;
        right: -15px;
    }

    .md-greeting {
        font-size: 24px;
    }
}

@media (max-width: 992px) {
    .md-card {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .md-left {
        max-width: 420px;
        margin: 0 auto;
        padding-top: 20px;
    }

    .md-number {
        font-size: 150px;
        top: -5px;
        right: -10px;
    }

    .md-right {
        padding-top: 0;
    }

    .md-greeting {
        font-size: 23px;
    }
}

@media (max-width: 768px) {
    .md-section {
        padding: 60px 0;
    }

    .md-container {
        padding: 0 20px;
    }

    .md-card {
        gap: 40px;
    }

    .md-left {
        max-width: 100%;
        padding-top: 15px;
    }

    .md-number {
        font-size: 120px;
        top: 0;
        right: -10px;
    }

    .md-image-card {
        padding: 20px;
        border-radius: 25px;
        transform: rotate(-2deg);
    }

    .md-image-card:hover {
        transform: rotate(-2deg) translateY(-6px);
    }

    .md-quote-icon {
        width: 45px;
        height: 45px;
        top: 12px;
        right: 12px;
    }

    .md-quote-icon i {
        font-size: 20px;
    }

    .md-name {
        font-size: 26px;
    }

    .md-title {
        font-size: 16px;
    }

    .md-company {
        font-size: 13px;
    }

    .md-greeting {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .md-message p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .md-signature {
        margin-top: 35px;
    }

    .md-regards {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .md-sign-name {
        font-size: 18px;
    }

    .md-sign-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .md-number {
        font-size: 100px;
        right: -8px;
    }

    .md-image-card {
        padding: 18px;
        border-radius: 22px;
    }

    .md-quote-icon {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }

    .md-quote-icon i {
        font-size: 18px;
    }

    .md-greeting {
        font-size: 20px;
    }

    .md-message p {
        font-size: 13px;
    }
}


/* Clients Section */
.clients-section {
    position: relative;
    padding: 30px 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(240, 245, 250, 0.95) 100%);
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(1, 174, 239, 0.3) 50%,
            transparent);
}

.clients-container {
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(1, 174, 239, 0.1);
    border: 1px solid rgba(1, 174, 239, 0.2);
    border-radius: 50px;
    color: var(--accent-cyan);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    color: rgba(0, 72, 118, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Clients Slider */
.clients-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
    padding: 40px 0;
}

.clients-slider-wrapper::before,
.clients-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.clients-slider-wrapper::before {
    left: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 100%);
}

.clients-slider-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 100%);
}

.clients-slider {
    display: flex;
    gap: 60px;
    animation: slideClients 40s linear infinite;
    will-change: transform;
}

.clients-slider:hover {
    animation-play-state: paused;
}

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

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

.client-logo {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 72, 118, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(1, 174, 239, 0.05) 0%,
            rgba(244, 185, 66, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 72, 118, 0.15);
}

.client-logo:hover::before {
    opacity: 1;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Stats Section */
.clients-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 72, 118, 0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg,
            transparent,
            rgba(1, 174, 239, 0.3) 50%,
            transparent);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 42px;
    }

    .clients-slider {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .clients-section {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 38px;
    }

    .clients-slider-wrapper {
        margin-bottom: 60px;
    }

    .clients-stats {
        gap: 40px;
    }

    .stat-number {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 80px 0;
    }

    .clients-container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .clients-slider {
        gap: 40px;
    }

    .client-logo {
        width: 160px;
        height: 80px;
    }

    .clients-slider-wrapper::before,
    .clients-slider-wrapper::after {
        width: 80px;
    }

    .clients-stats {
        gap: 30px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 15px;
    }

    .client-logo {
        width: 140px;
        height: 70px;
    }

    .clients-stats {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 32px;
    }
}


/* Why Choose KDS Section */
.why-choose-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, #ffffff 100%);
    overflow: hidden;
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.highlight-gold {
    color: var(--accent-gold);
    position: relative;
    display: inline-block;
}

.section-description {
    font-size: 18px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Feature Card */
.feature-card {
    position: relative;
    padding: 40px 32px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(208, 210, 212, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(1, 174, 239, 0.03) 0%,
            rgba(244, 185, 66, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 72, 118, 0.12);
    border-color: rgba(1, 174, 239, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card>* {
    position: relative;
    z-index: 1;
}

/* Icon Wrapper */
.icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(208, 210, 212, 0.2) 0%,
            rgba(208, 210, 212, 0.1) 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .icon-background {
    background: linear-gradient(135deg,
            rgba(1, 174, 239, 0.15) 0%,
            rgba(244, 185, 66, 0.15) 100%);
    transform: rotate(5deg) scale(1.1);
}

.feature-icon {
    font-size: 32px;
    color: var(--primary-blue);
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    color: var(--accent-cyan);
    transform: scale(1.15);
}

/* Feature Content */
.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-title {
    color: var(--primary-blue);
}

.feature-description {
    font-size: 15px;
    font-weight: 400;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Scroll Animation */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 25px;
    }

    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .why-choose-section {
        padding: 100px 0;
    }

    .why-choose-container {
        padding: 0 30px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 38px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 80px 0;
    }

    .why-choose-container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

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

    .feature-card {
        padding: 32px 24px;
    }

    .icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 15px;
    }
}