
/* Hero Section */
.home-hero {
    /*     background: linear-gradient(135deg, #fef3c7 0%, #e9d5ff 50%, #dbeafe 100%); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: none;
}

.home-hero .video-iframe-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}
.home-hero .hero-bg-video-iframe {
    border: 0;
    pointer-events: none;
}

.home-hero .hero-bg-video {
    position: absolute;
    top: 50%;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translateY(-50%);
    z-index: 0;
}

.home-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.home-hero .container,
.home-hero .hero-content {
    position: relative;
    z-index: 2;
}

.home-hero .hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 10;
    margin: auto;
}

.home-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    border: 1px solid rgba(220, 53, 69, 0.2);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.home-hero .hero-badge .uae-company {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0;
}

.home-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--bg-light);
}

.home-hero .hero-subtitle {
    font-size: 1.25rem;
    color: var(--bg-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.home-hero .hero-trust {
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

.home-hero .hero-trust-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.home-hero .hero-trust-desc {
    color: var(--bg-light);
    font-size: 0.95rem;
}

.home-hero .hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.home-hero .hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid transparent;
}

.home-hero .metric {
    text-align: center;
}

.home-hero .metric-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.home-hero .metric-label {
    font-size: 0.9rem;
    color: var(--bg-light);
    font-weight: 500;
}

/* trusted section css */
.trusted-section {
    width: 100%;
    padding: 60px 0 50px;
    background: #f7f7f7;
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trusted-section .trusted-heading {
    text-align: center;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8b8b8b;
    margin-bottom: 38px;
    font-weight: 500;
}

.trusted-section .marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.trusted-section .marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 24s linear infinite;
    align-items: center;
    gap: 80px;
}

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

.trusted-section .marquee-item {
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b6b6b6;
    min-width: 120px;
    text-align: center;
}

.trusted-section .marquee-item:hover {
    color: #333;
}

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

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

@media (max-width: 768px) {
    .trusted-section {
        padding: 40px 0 35px;
    }

    .trusted-section .trusted-heading {
        font-size: 12px;
        line-height: 1.6;
        padding: 0 20px;
    }

    .trusted-section .marquee-track {
        gap: 45px;
    }

    .trusted-section .marquee-item {
        font-size: 14px;
        letter-spacing: 2px;
        min-width: 90px;
    }
}

/* Services Section Css */
.services-section {
    background: #f7f7f7;
    padding: 80px 0;
}

.services-section .container {
    width: 1400px;
    max-width: 95%;
    margin: auto;
}

.services-section .eyebrow {
    color: #ff3b3b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.services-section .section-title {
    margin-bottom: 20px;
    color: #111;
}

.services-section .section-desc {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.6;
}

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.services-section .service-card {
    background: transparent;
    border: 1px solid #e6e6e6;
    padding: 30px;
    border-radius: 6px;
    transition: 0.35s;
    min-height: 220px;
    position: relative;
    overflow: hidden;
}

/* top border line */

.services-section .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff3b3b;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s;
}

.services-section .service-card:hover::before {
    transform: scaleX(1);
}

/* learn more button */

.services-section .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #ff3b3b;
    text-decoration: none;
    transition: 0.3s;
    opacity: 0;
}

.services-section .learn-more .arrow {
    transition: 0.3s;
}

/* arrow move effect */

.services-section .service-card:hover .arrow {
    transform: translateX(6px);
}

.services-section .service-card:hover .learn-more {
    opacity: 1;
}

.services-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.services-section .icon-box {
    width: 40px;
    height: 40px;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 18px;
}

.services-section .service-card:hover .icon-box {
    background: #fef2f2;
}

.services-section .service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

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

/* responsive */

@media (max-width: 1100px) {
    .services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-section .services-grid {
        grid-template-columns: 1fr;
    }
}

/* AI Innovation Section css */
.ai-innovation-section {
    background: #0d0f14;
    padding: 120px 0;
    position: relative;
    color: white;
}

.ai-innovation-section .container {
    width: 1400px;
    max-width: 95%;
    margin: auto;
}

.ai-innovation-section .ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.ai-innovation-section .ai-label {
    color: #ff3b3b;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.ai-innovation-section .ai-title {
    margin-bottom: 25px;
}

.ai-innovation-section .ai-description {
    color: #aaa;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
}

.ai-innovation-section .ai-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e73343;
    padding: 15px 28px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: 0.3s;
}

.ai-innovation-section .ai-btn span {
    transition: 0.3s;
}

.ai-innovation-section .ai-btn:hover {
    background: #ff3b3b;
}

.ai-innovation-section .ai-btn:hover span {
    transform: translateX(6px);
}

.ai-innovation-section .ai-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ai-innovation-section .ai-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 6px;
    transition: 0.35s;
}

.ai-innovation-section .ai-card:hover {
    transform: translateY(-6px);
    border-color: #ff3b3b;
    background: rgba(255, 255, 255, 0.08);
}

.ai-innovation-section .ai-card .icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 59, 59, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 15px;
    color: #ff3b3b;
    font-size: 18px;
}

.ai-innovation-section .ai-card h3 {
    font-size: 14px;
    margin-bottom: 10px;
}

.ai-innovation-section .ai-card p {
    font-size: 13px;
    color: #bdbdbd;
    line-height: 18px;
}

.ai-innovation-section .ai-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 59, 59, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-bottom: 15px;
    color: #ff3b3b;
    font-size: 18px;
}

.ai-innovation-section .ai-card:hover .ai-card-icon {
    background: #dc354533;
}

/* responsive */

@media (max-width: 992px) {
    .ai-innovation-section .ai-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .ai-innovation-section .ai-cards {
        grid-template-columns: 1fr;
    }
}

/* Deep Technical Expertise Section css */
.deep-expertise-section {
    position: relative;
    padding: 30px 0 24px;
    background: #0d0f14;
    overflow: hidden;
}

.deep-expertise-section .deep-expertise-container {
    width: 1400px;
    max-width: 95%;
    margin: auto;
}

.deep-expertise-section .deep-expertise-heading {
    text-align: center;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 48px;
    letter-spacing: -0.4px;
}

.deep-expertise-section .deep-expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 32px;
}

.deep-expertise-section .deep-expertise-card {
    background: #ffffff05;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 25px 24px 24px;
    min-height: 215px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.deep-expertise-section .deep-expertise-card:hover {
    transform: translateY(-5px);
    border-color: rgba(226, 52, 69, 0.35);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.deep-expertise-section .deep-expertise-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.deep-expertise-section .deep-expertise-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 4px;
    background: rgba(226, 52, 69, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.deep-expertise-section .deep-expertise-card:hover .deep-expertise-icon {
    background: rgba(226, 52, 69, 0.18);
    transform: scale(1.05);
}

.deep-expertise-section .deep-expertise-icon svg {
    width: 18px;
    height: 18px;
    stroke: #e73445;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.deep-expertise-section .deep-expertise-title-wrap h3 {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.2px;
}

.deep-expertise-section .deep-expertise-title-wrap span {
    display: inline-block;
    color: #ff3347;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
}

.deep-expertise-section .deep-expertise-stack {
    color: rgba(255, 255, 255, 0.67);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
    margin: 0 0 18px;
}

.deep-expertise-section .deep-expertise-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 0 16px;
}

.deep-expertise-section .deep-expertise-bottom h4 {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.9px;
    margin: 0 0 12px;
}

.deep-expertise-section .deep-expertise-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 400;
    margin: 0;
}

/* laptop */
@media (max-width: 1400px) {
    .deep-expertise-section .deep-expertise-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }
}

/* tablet */
@media (max-width: 991px) {
    .deep-expertise-section {
        padding: 64px 0 20px;
    }

    .deep-expertise-section .deep-expertise-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }

    .deep-expertise-section .deep-expertise-heading {
        font-size: 22px;
        margin-bottom: 34px;
    }

    .deep-expertise-section .deep-expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .deep-expertise-section .deep-expertise-card {
        min-height: auto;
    }
}

/* mobile */
@media (max-width: 575px) {
    .deep-expertise-section {
        padding: 54px 0 16px;
    }

    .deep-expertise-section .deep-expertise-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }

    .deep-expertise-section .deep-expertise-heading {
        font-size: 20px;
        margin-bottom: 26px;
    }

    .deep-expertise-section .deep-expertise-card {
        padding: 20px 16px 18px;
    }

    .deep-expertise-section .deep-expertise-top {
        gap: 12px;
        margin-bottom: 18px;
    }

    .deep-expertise-section .deep-expertise-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .deep-expertise-section .deep-expertise-title-wrap h3 {
        font-size: 16px;
    }

    .deep-expertise-section .deep-expertise-title-wrap span {
        font-size: 14px;
    }

    .deep-expertise-section .deep-expertise-stack,
    .deep-expertise-section .deep-expertise-bottom p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Production-Grade Technology Stack Section Css */
.tech-stack {
    background: #fff;
}

.tech-stack .top-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.tech-stack .top-content .right {
    width: 50%;
    color: #555;
}

/* Tabs */
.tech-stack .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

.tech-stack .tab {
    background: none;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    position: relative;
}

.tech-stack .tab.active {
    color: #e63946;
    font-weight: bold;
}

.tech-stack .tab.active::after {
    content: "";
    height: 2px;
    width: 100%;
    background: #e63946;
    position: absolute;
    bottom: -1px;
    left: 0;
}

/* Content */
.tech-stack .tab-content {
    display: none;
}

.tech-stack .tab-content.active {
    display: block;
}

.tech-stack .tech-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tech-stack .tech-item {
    text-align: center;
}

.tech-stack .tech-item img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.tech-stack .tech-item p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 767px) {
    .tech-stack .top-content {
        display: block;
        text-align: center;
    }

    .tech-stack .top-content .right {
        width: 100%;
    }

    .tech-stack .tabs {
        flex-wrap: wrap;
    }
}

/* Industries section css */
.industries-section {
    background: #f6f6f6;
    padding: 70px 0 102px;
}

.industries-section .industries-container {
    width: 1400px;
    max-width: 95%;
    margin: auto;
}

.industries-section .industries-header {
    max-width: 760px;
    margin-bottom: 66px;
}

.industries-section .industries-label {
    display: inline-block;
    color: #e53945;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.industries-section .industries-title {
    color: #171923;
    letter-spacing: -1.8px;
    margin: 0 0 24px;
}

.industries-section .industries-desc {
    color: #6d7380;
    font-size: 19px;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    max-width: 760px;
}

.industries-section .industries-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.industries-section .industries-card {
    grid-column: span 3;
    background: transparent;
    border: 1px solid #efefef;
    border-radius: 4px;
    min-height: 184px;
    padding: 24px 24px 24px;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

/* top red line */

.industries-section .industries-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e53945;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s;
}

/* hover effect */

.industries-section .industries-card:hover::before {
    transform: scaleX(1);
}

.industries-section .industries-card:hover {
    background: #ffffff;
    border-color: #eaeaea;
}

.industries-section .industries-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: #e9e9e9;
    box-shadow: 0 16px 32px rgba(22, 26, 34, 0.08);
}

.industries-section .industries-card-wide {
    grid-column: span 4;
}

.industries-section .industries-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 44px;
    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.industries-section .industries-card:hover .industries-icon {
    transform: scale(1.05);
    background: #f7f7f7;
}

.industries-section .industries-icon svg {
    stroke: #777;
    transition: 0.35s;
}

.industries-section .industries-card:hover .industries-icon {
    background: #fdecee;
}

.industries-section .industries-card:hover .industries-icon svg {
    stroke: #e53945;
}

.industries-section .industries-icon svg {
    width: 21px;
    height: 21px;
    stroke: #666666;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.industries-section .industries-card h3 {
    color: #161922;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.2px;
}

.industries-section .industries-card p {
    color: #757b87;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    max-width: 95%;
}

/* large laptop */
@media (max-width: 1400px) {
    .industries-section .industries-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }
}

/* tablet */
@media (max-width: 991px) {
    .industries-section {
        padding: 18px 0 72px;
    }

    .industries-section .industries-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }

    .industries-section .industries-header {
        margin-bottom: 42px;
    }

    .industries-section .industries-title {
        margin-bottom: 18px;
    }

    .industries-section .industries-desc {
        font-size: 17px;
        line-height: 1.65;
    }

    .industries-section .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .industries-section .industries-card,
    .industries-section .industries-card-wide {
        grid-column: span 1;
        min-height: 170px;
    }

    .industries-section .industries-icon {
        margin-bottom: 30px;
    }
}

/* mobile */
@media (max-width: 575px) {
    .industries-section {
        padding: 14px 0 52px;
    }

    .industries-section .industries-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }

    .industries-section .industries-header {
        margin-bottom: 30px;
    }

    .industries-section .industries-label {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .industries-section .industries-title {
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .industries-section .industries-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .industries-section .industries-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .industries-section .industries-card,
    .industries-section .industries-card-wide {
        min-height: auto;
        padding: 20px 18px;
    }

    .industries-section .industries-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 22px;
    }

    .industries-section .industries-card h3 {
        font-size: 17px;
    }

    .industries-section .industries-card p {
        font-size: 15px;
        max-width: 100%;
    }
}

/* Our Process Section Css */
.process-section {
    background: #fff;
    padding: 54px 0 110px;
}

.process-section .process-container {
    width: 1400px;
    max-width: 95%;
    margin: auto;
}

.process-section .process-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 86px;
}

.process-section .process-label {
    display: inline-block;
    color: #e53945;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.process-section .process-title {
    color: #171923;
    letter-spacing: -1.8px;
    margin: 0;
}

.process-section .process-timeline {
    position: relative;
}

.process-section .process-line {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 52px;
    height: 1px;
    background: #efb4ba;
}

.process-section .process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 26px;
    position: relative;
    z-index: 1;
}

.process-section .process-step {
    text-align: center;
}

.process-section .process-icon-wrap {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    border: 2px solid #e8e8e8;
    background: #f7f7f7;
    margin: 0 auto 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.process-section .process-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #222327;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.process-section .process-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.process-section .process-step-no {
    display: inline-block;
    color: #e53945;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.6px;
    margin-bottom: 16px;
}

.process-section .process-step h3 {
    color: #171923;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.2px;
}

.process-section .process-step p {
    color: #757b87;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    margin: 0 auto;
    max-width: 250px;
}

/* laptop */
@media (max-width: 1400px) {
    .process-section .process-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }
}

/* tablet */
@media (max-width: 991px) {
    .process-section {
        padding: 40px 0 80px;
    }

    .process-section .process-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }

    .process-section .process-header {
        margin-bottom: 56px;
    }

    .process-section .process-line {
        display: none;
    }

    .process-section .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 22px;
    }

    .process-section .process-step p {
        max-width: 100%;
    }
}

/* mobile */
@media (max-width: 575px) {
    .process-section {
        padding: 24px 0 56px;
    }

    .process-section .process-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }

    .process-section .process-header {
        margin-bottom: 36px;
    }

    .process-section .process-label {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .process-section .process-title {
        letter-spacing: -1px;
    }

    .process-section .process-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .process-section .process-icon-wrap {
        width: 92px;
        height: 92px;
        margin-bottom: 20px;
    }

    .process-section .process-icon {
        width: 50px;
        height: 50px;
    }

    .process-section .process-step-no {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .process-section .process-step h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .process-section .process-step p {
        font-size: 15px;
        line-height: 1.75;
    }
}

/* Our Portfolio Section Css */
.portfolio-section {
    background: #05081c;
    padding: 54px 0 84px;
    overflow: hidden;
}

.portfolio-section .portfolio-container {
    width: 1400px;
    max-width: 95%;
    margin: auto;
}

.portfolio-section .portfolio-header {
    max-width: 640px;
    margin-bottom: 48px;
}

.portfolio-section .portfolio-label {
    display: inline-block;
    color: #ff3a4b;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: 16px;
}

.portfolio-section .portfolio-title {
    color: #ffffff;
    letter-spacing: -1.8px;
    margin: 0 0 18px;
}

.portfolio-section .portfolio-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    max-width: 620px;
}

.portfolio-section .portfolio-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 550px);
    gap: 36px;
    align-items: center;
    margin-bottom: 44px;
}

.portfolio-section .portfolio-content {
    max-width: 100%;
}

.portfolio-section .portfolio-category {
    display: inline-block;
    color: #ff3a4b;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
}

.portfolio-section .portfolio-case-title {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 18px;
    letter-spacing: -0.4px;
}

.portfolio-section .portfolio-block {
    margin-bottom: 18px;
}

.portfolio-section .portfolio-block h4,
.portfolio-section .portfolio-tech-wrap h4 {
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin: 0 0 14px;
}

.portfolio-section .portfolio-block p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.portfolio-section .portfolio-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 30px;
    margin: 26px 0 26px;
    padding: 22px 18px;
    border: 1px solid rgba(255, 58, 75, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.portfolio-section .portfolio-stat strong {
    display: block;
    color: #ff3a4b;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 6px;
}

.portfolio-section .portfolio-stat span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.4;
}

.portfolio-section .portfolio-tech-wrap {
    margin-bottom: 22px;
}

.portfolio-section .portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-section .portfolio-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 58, 75, 0.3);
    background: rgba(255, 58, 75, 0.08);
    color: #ff6270;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
}

.portfolio-section .portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff3a4b;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s ease;
}

.portfolio-section .portfolio-link span {
    transition: transform 0.3s ease;
}

.portfolio-section .portfolio-link:hover span {
    transform: translateX(6px);
}

.portfolio-section .portfolio-visual {
    display: flex;
    justify-content: flex-end;
}

.portfolio-section .portfolio-image-card {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
    background: #11152a;
}

.portfolio-section .portfolio-image-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.portfolio-section .portfolio-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.portfolio-section .portfolio-tab {
    text-align: left;
    padding: 16px 14px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: 0.3s ease;
}

.portfolio-section .portfolio-tab:hover,
.portfolio-section .portfolio-tab.current {
    border-color: rgba(255, 58, 75, 0.48);
    background: rgba(255, 58, 75, 0.08);
}

.portfolio-section .portfolio-tab-category {
    display: block;
    color: #ff3a4b;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.portfolio-section .portfolio-tab strong {
    display: block;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-section .portfolio-tab small {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.2;
}

/* laptop */
@media (max-width: 1400px) {
    .portfolio-section .portfolio-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }
}

/* tablet */
@media (max-width: 991px) {
    .portfolio-section {
        padding: 44px 0 70px;
    }

    .portfolio-section .portfolio-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }

    .portfolio-section .portfolio-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .portfolio-section .portfolio-visual {
        justify-content: flex-start;
    }

    .portfolio-section .portfolio-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* mobile */
@media (max-width: 575px) {
    .portfolio-section {
        padding: 30px 0 50px;
    }

    .portfolio-section .portfolio-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }

    .portfolio-section .portfolio-header {
        margin-bottom: 32px;
    }

    .portfolio-section .portfolio-label {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .portfolio-section .portfolio-title {
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .portfolio-section .portfolio-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .portfolio-section .portfolio-case-title {
        font-size: 24px;
    }

    .portfolio-section .portfolio-block p {
        font-size: 15px;
        line-height: 1.75;
    }

    .portfolio-section .portfolio-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px 16px;
        padding: 18px 14px;
    }

    .portfolio-section .portfolio-stat strong {
        font-size: 20px;
    }

    .portfolio-section .portfolio-image-card img {
        min-height: 220px;
    }

    .portfolio-section .portfolio-tabs {
        grid-template-columns: 1fr;
    }

    .portfolio-section .portfolio-tab strong {
        font-size: 18px;
    }
}

/* Why TrangoTech Section Css */
.partner-section {
    background: #fff;
    padding: 38px 0 70px;
    overflow: hidden;
}

.partner-section .partner-container {
    width: 1400px;
    max-width: 95%;
    margin: auto;
}

.partner-section .partner-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 520px);
    gap: 70px;
    align-items: start;
}

.partner-section .partner-content {
    max-width: 860px;
}

.partner-section .partner-label {
    display: inline-block;
    color: #e53945;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.partner-section .partner-title {
    color: #171923;
    letter-spacing: -1.8px;
    margin: 0 0 38px;
    max-width: 760px;
}

.partner-section .partner-features {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.partner-section .partner-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.partner-section .partner-icon {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    background: #f9ecec;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.partner-section .partner-icon svg {
    width: 20px;
    height: 20px;
    stroke: #e53945;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.partner-section .partner-item:hover .partner-icon {
    background: #dc3545;
}

/* hover */
.partner-section .partner-item:hover .partner-icon svg {
    stroke: #fff;
}

.partner-section .partner-text h3 {
    color: #171923;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.2px;
}

.partner-section .partner-text p {
    color: #757b87;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    margin: 0;
    max-width: 760px;
}

.partner-section .partner-visual-wrap {
    position: relative;
    padding-top: 82px;
}

.partner-section .partner-visual {
    width: 100%;
    max-width: 470px;
    margin-left: auto;
    background: #ececec;
    overflow: hidden;
}

.partner-section .partner-visual img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 420px;
    object-fit: cover;
}

.partner-section .partner-dot {
    position: absolute;
    top: 68px;
    right: 28px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #efb6bc;
}

.partner-section .partner-line {
    position: absolute;
    left: -8px;
    top: 316px;
    width: 6px;
    height: 48px;
    border-radius: 8px;
    background: #f0c9cc;
}

.partner-section .partner-square {
    position: absolute;
    left: -22px;
    bottom: 18px;
    width: 88px;
    height: 88px;
    border: 1px solid #f0cfd1;
    border-radius: 4px;
}

/* large laptop */
@media (max-width: 1400px) {
    .partner-section .partner-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }
}

/* tablet */
@media (max-width: 991px) {
    .partner-section {
        padding: 28px 0 72px;
    }

    .partner-section .partner-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }

    .partner-section .partner-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .partner-section .partner-title {
        margin-bottom: 28px;
    }

    .partner-section .partner-visual-wrap {
        padding-top: 10px;
    }

    .partner-section .partner-visual {
        max-width: 100%;
        margin-left: 0;
    }

    .partner-section .partner-dot {
        top: 0;
        right: 10px;
    }

    .partner-section .partner-line {
        display: none;
    }

    .partner-section .partner-square {
        left: auto;
        right: 14px;
        bottom: -14px;
        width: 72px;
        height: 72px;
    }
}

/* mobile */
@media (max-width: 575px) {
    .partner-section {
        padding: 18px 0 54px;
    }

    .partner-section .partner-container {
        width: 1400px;
        max-width: 95%;
        margin: auto;
    }

    .partner-section .partner-label {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .partner-section .partner-title {
        letter-spacing: -1px;
        margin-bottom: 24px;
    }

    .partner-section .partner-features {
        gap: 20px;
    }

    .partner-section .partner-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
    }

    .partner-section .partner-icon {
        width: 42px;
        height: 42px;
        border-radius: 4px;
        background: #f6eaea;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .partner-section .partner-icon svg {
        width: 20px;
        height: 20px;
        stroke: #e53945;
        transition: all 0.3s ease;
    }

    .partner-section .partner-text h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .partner-section .partner-text p {
        font-size: 15px;
        line-height: 1.75;
    }

    .partner-section .partner-visual img {
        min-height: 260px;
    }

    .partner-section .partner-square {
        width: 56px;
        height: 56px;
        right: 8px;
        bottom: -10px;
    }

    .partner-section .partner-dot {
        width: 10px;
        height: 10px;
    }
}

/* Testimonials Section Css */
.testimonial-section {
    background: #f6f6f6;
    padding: 50px 0 90px;
}

.testimonial-section .testimonial-container {
    width: 1480px;
    max-width: calc(100% - 120px);
    margin: 0 auto;
}

.testimonial-section .testimonial-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonial-section .testimonial-label {
    display: inline-block;
    color: #e53b47;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-section .testimonial-title {
    color: #171923;
    letter-spacing: -1.8px;
    margin: 0;
}

.testimonial-section .testimonial-card {
    width: 100%;
    max-width: 770px;
    margin: 0 auto;
    background: #fbfbfb;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
}

.testimonial-section .testimonial-slider-window {
    overflow: hidden;
    position: relative;
    height: 440px;
}

.testimonial-section .testimonial-slider-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.55s ease;
}

.testimonial-section .testimonial-slide {
    min-height: 440px;
    padding: 48px 48px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testimonial-section .testimonial-quote-icon {
    color: #f1d8db;
    font-size: 86px;
    line-height: 0.7;
    font-weight: 700;
}

.testimonial-section .testimonial-stars {
    color: #e53b47;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 4px;
    margin-bottom: 28px;
}

.testimonial-section .testimonial-text {
    color: #171923;
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    margin: 0 0 34px;
    max-width: 100%;
}

.testimonial-section .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.testimonial-section .testimonial-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #202228;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.testimonial-section .testimonial-author-info h3 {
    color: #171923;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 4px;
}

.testimonial-section .testimonial-author-info span {
    color: #7d8491;
    font-size: 15px;
    line-height: 1.4;
    display: block;
}

.testimonial-section .testimonial-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 48px 28px;
    border-top: 1px solid #ececec;
}

.testimonial-section .testimonial-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-section .testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    color: #1e2128;
    border-radius: 4px;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    transition: 0.3s ease;
}

.testimonial-section .testimonial-nav-btn:hover {
    border-color: #e53b47;
    color: #e53b47;
    background: #fff;
}

.testimonial-section .testimonial-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
}

.testimonial-section .testimonial-dot {
    width: 9px;
    height: 9px;
    border: none;
    border-radius: 50%;
    background: #d6d6d6;
    cursor: pointer;
    transition: 0.3s ease;
    padding: 0;
}

.testimonial-section .testimonial-dot.active {
    width: 22px;
    border-radius: 999px;
    background: #e53b47;
}

.testimonial-section .testimonial-count {
    color: #8f95a0;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}

/* tablet */
@media (max-width: 991px) {
    .testimonial-section {
        padding: 24px 0 70px;
    }

    .testimonial-section .testimonial-container {
        max-width: calc(100% - 40px);
    }

    .testimonial-section .testimonial-card {
        max-width: 100%;
    }

    .testimonial-section .testimonial-slider-window {
        height: 470px;
    }

    .testimonial-section .testimonial-slide {
        min-height: 470px;
        padding: 40px 32px 30px;
    }

    .testimonial-section .testimonial-text {
        font-size: 20px;
        max-width: 100%;
    }

    .testimonial-section .testimonial-bottom {
        padding: 22px 32px 24px;
    }
}

/* mobile */
@media (max-width: 575px) {
    .testimonial-section {
        padding: 18px 0 52px;
    }

    .testimonial-section .testimonial-container {
        max-width: calc(100% - 24px);
    }

    .testimonial-section .testimonial-header {
        margin-bottom: 28px;
    }

    .testimonial-section .testimonial-label {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .testimonial-section .testimonial-title {
        letter-spacing: -1px;
    }

    .testimonial-section .testimonial-slider-window {
        height: 500px;
    }

    .testimonial-section .testimonial-slide {
        min-height: 500px;
        padding: 28px 18px 24px;
    }

    .testimonial-section .testimonial-quote-icon {
        font-size: 66px;
    }

    .testimonial-section .testimonial-stars {
        font-size: 16px;
        letter-spacing: 3px;
        margin-bottom: 22px;
    }

    .testimonial-section .testimonial-text {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 26px;
    }

    .testimonial-section .testimonial-author {
        gap: 12px;
    }

    .testimonial-section .testimonial-avatar {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 16px;
    }

    .testimonial-section .testimonial-author-info h3 {
        font-size: 15px;
    }

    .testimonial-section .testimonial-author-info span {
        font-size: 14px;
    }

    .testimonial-section .testimonial-bottom {
        padding: 18px 18px 20px;
        flex-wrap: wrap;
        row-gap: 16px;
    }

    .testimonial-section .testimonial-count {
        margin-left: auto;
    }
}

/* Awards Section Css */
.awards-section {
    background: #f7f7f7;
    padding: 20px 0 88px;
}

.awards-section .awards-header {
    max-width: 860px;
    margin: 0 auto 74px;
    text-align: center;
}

.awards-section .awards-label {
    display: inline-block;
    color: #e53945;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.awards-section .awards-title {
    color: #171923;
    letter-spacing: -1.8px;
    margin: 0 0 20px;
}

.awards-section .awards-desc {
    color: #6f7582;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    margin: 0 auto;
    max-width: 780px;
}

.awards-section .awards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 32px;
}

.awards-section .awards-card {
    min-height: 220px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px 24px 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.awards-section .awards-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    border-color: #dc354514;
    box-shadow: 0 16px 32px #dc354514;
}

.awards-section .awards-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f6eaea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.awards-section .awards-card:hover .awards-icon {
    transform: scale(1.05);
    background: #f4e5e7;
}

.awards-section .awards-icon svg {
    width: 28px;
    height: 28px;
    fill: #e53945;
    stroke: none;
}

.awards-section .awards-card h3 {
    color: #171923;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.2px;
}

.awards-section .awards-subtitle {
    display: block;
    color: #ef3f49;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 8px;
}

.awards-section .awards-card small {
    display: block;
    color: #9096a2;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
}

/* large laptop */
/* tablet */
@media (max-width: 991px) {
    .awards-section {
        padding: 18px 0 68px;
    }

    .awards-section .awards-header {
        margin-bottom: 44px;
    }

    .awards-section .awards-desc {
        font-size: 17px;
    }

    .awards-section .awards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .awards-section .awards-card {
        min-height: 210px;
    }
}

/* mobile */
@media (max-width: 575px) {
    .awards-section {
        padding: 14px 0 50px;
    }

    .awards-section .awards-header {
        margin-bottom: 28px;
    }

    .awards-section .awards-label {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .awards-section .awards-title {
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .awards-section .awards-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .awards-section .awards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .awards-section .awards-card {
        min-height: 190px;
        padding: 24px 18px;
    }

    .awards-section .awards-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 16px;
    }

    .awards-section .awards-icon svg {
        width: 24px;
        height: 24px;
    }

    .awards-section .awards-card h3 {
        font-size: 17px;
    }

    .awards-section .awards-subtitle {
        font-size: 15px;
    }

    .awards-section .awards-card small {
        font-size: 13px;
    }
}

/* UAE Expertise */
.uae-expertise-section {
    background: #fff;
    padding: 75px 0 90px;
}

.uae-expertise-section .uae-expertise-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 770px);
    gap: 58px;
    align-items: center;
}

.uae-expertise-section .uae-expertise-content {
    max-width: 690px;
}

.uae-expertise-section .uae-expertise-label {
    display: inline-block;
    color: #e53945;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.uae-expertise-section .uae-expertise-title {
    color: #171923;
    letter-spacing: -1.7px;
    margin: 0 0 28px;
}

.uae-expertise-section .uae-expertise-desc {
    color: #626b79;
    font-size: 18px;
    line-height: 1.75;
    font-weight: 400;
    margin: 0 0 34px;
    max-width: 640px;
}

.uae-expertise-section .uae-expertise-points {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.uae-expertise-section .uae-expertise-item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.uae-expertise-section .uae-expertise-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f6eaea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    transition: 0.35s ease;
}

.uae-expertise-section .uae-expertise-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ef3f49;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: 0.35s ease;
}

.uae-expertise-section .uae-expertise-item:hover .uae-expertise-icon {
    background: #ef3f49;
}

.uae-expertise-section .uae-expertise-item:hover .uae-expertise-icon svg {
    stroke: #ffffff;
}

.uae-expertise-section .uae-expertise-text h3 {
    color: #171923;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.2px;
}

.uae-expertise-section .uae-expertise-text p {
    color: #626b79;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

.uae-expertise-section .uae-expertise-visual {
    width: 100%;
}

.uae-expertise-section .uae-expertise-visual img {
    display: block;
    width: 100%;
    max-width: 770px;
    margin-left: auto;
    height: auto;
    object-fit: contain;
}

/* large laptop */

/* tablet */
@media (max-width: 991px) {
    .uae-expertise-section {
        padding: 34px 0 70px;
    }

    .uae-expertise-section .uae-expertise-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .uae-expertise-section .uae-expertise-content {
        max-width: 100%;
    }

    .uae-expertise-section .uae-expertise-title {
        margin-bottom: 20px;
    }

    .uae-expertise-section .uae-expertise-desc {
        font-size: 17px;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .uae-expertise-section .uae-expertise-visual img {
        max-width: 100%;
        margin-left: 0;
    }
}

/* mobile */
@media (max-width: 575px) {
    .uae-expertise-section {
        padding: 22px 0 52px;
    }

    .uae-expertise-section .uae-expertise-label {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .uae-expertise-section .uae-expertise-title {
        letter-spacing: -1px;
        margin-bottom: 16px;
    }

    .uae-expertise-section .uae-expertise-desc {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 24px;
    }

    .uae-expertise-section .uae-expertise-points {
        gap: 22px;
    }

    .uae-expertise-section .uae-expertise-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
    }

    .uae-expertise-section .uae-expertise-icon {
        width: 38px;
        height: 38px;
        border-radius: 6px;
    }

    .uae-expertise-section .uae-expertise-icon svg {
        width: 18px;
        height: 18px;
    }

    .uae-expertise-section .uae-expertise-text h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .uae-expertise-section .uae-expertise-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Our Team Section Css */
.team-section {
    background: #f7f7f7;
    padding: 70px 0 82px;
}

.team-section .team-header {
    max-width: 980px;
    margin: 0 auto 52px;
    text-align: center;
}

.team-section .team-label {
    display: inline-block;
    color: #e53945;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.team-section .team-title {
    color: #171923;
    letter-spacing: -1.8px;
    margin: 0 0 18px;
}

.team-section .team-desc {
    color: #6f7582;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 820px;
    margin: 0 auto;
}

.team-section .team-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 62px;
}

.team-section .team-image-card {
    border-radius: 8px;
    overflow: hidden;
    background: #ececec;
    transition: 0.5s;
}

.team-section .team-image-card img {
    display: block;
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.team-section .team-image-card:hover img {
    transform: scale(1.1);
    transition: 0.5s;
}

.team-section .team-stats-wrap {
    width: 100%;
}

.team-section .team-stats-line {
    width: 100%;
    height: 1px;
    background: #dddddd;
    margin-bottom: 44px;
}

.team-section .team-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    text-align: center;
}

.team-section .team-stat-item h3 {
    color: #ef3f49;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.6px;
    margin: 0 0 12px;
}

.team-section .team-stat-item p {
    color: #666f7c;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

/* large laptop */

/* tablet */
@media (max-width: 991px) {
    .team-section {
        padding: 18px 0 64px;
    }

    .team-section .team-header {
        margin-bottom: 38px;
    }

    .team-section .team-desc {
        font-size: 17px;
    }

    .team-section .team-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 44px;
    }

    .team-section .team-image-card img {
        height: 340px;
    }

    .team-section .team-stats-line {
        margin-bottom: 34px;
    }

    .team-section .team-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }
}

/* mobile */
@media (max-width: 575px) {
    .team-section {
        padding: 14px 0 48px;
    }

    .team-section .team-header {
        margin-bottom: 28px;
    }

    .team-section .team-label {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .team-section .team-title {
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .team-section .team-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .team-section .team-gallery {
        gap: 14px;
        margin-bottom: 32px;
    }

    .team-section .team-image-card img {
        height: 220px;
    }

    .team-section .team-stats-line {
        margin-bottom: 26px;
    }

    .team-section .team-stats {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .team-section .team-stat-item h3 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .team-section .team-stat-item p {
        font-size: 15px;
    }
}

/* Cta Section Css */
.future-cta-section {
    position: relative;
    overflow: hidden;
    background: #e93a47;
    padding: 118px 0 160px;
    border-bottom: 1px solid #e36b73;
}

.future-cta-section .future-cta-container {
    position: relative;
    z-index: 3;
}

.future-cta-section .future-cta-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.future-cta-section .future-cta-title {
    color: #ffffff;
    letter-spacing: -2px;
    margin: 0 0 28px;
}

.future-cta-section .future-cta-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 400;
    max-width: 760px;
    margin: 0 auto 36px;
}

.future-cta-section .future-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.future-cta-section .future-cta-btn {
    min-width: 184px;
    height: 60px;
    padding: 0 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    transition: 0.35s ease;
}

.future-cta-section .future-cta-btn-primary {
    background: #ffffff;
    color: #e93a47;
    border: 1px solid #ffffff;
}

.future-cta-section .future-cta-btn-primary span {
    transition: transform 0.35s ease;
}

.future-cta-section .future-cta-btn-primary:hover {
    background: #fff6f7;
}

.future-cta-section .future-cta-btn-primary:hover span {
    transform: translateX(5px);
}

.future-cta-section .future-cta-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.future-cta-section .future-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
}

.future-cta-section .future-cta-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.22;
    background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px);
    background-size: 32px 32px;
    background-position: 0 0;
    pointer-events: none;
}

.future-cta-section .future-cta-circle {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    z-index: 1;
    pointer-events: none;
}

.future-cta-section .future-cta-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    z-index: 2;
    line-height: 0;
}

.future-cta-section .future-cta-wave svg {
    display: block;
    width: 100%;
    height: 128px;
}

/* large laptop */

/* tablet */
@media (max-width: 991px) {
    .future-cta-section {
        padding: 90px 0 100px;
    }

    .future-cta-section .future-cta-desc {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .future-cta-section .future-cta-wave svg {
        height: 100px;
    }

    .future-cta-section .future-cta-circle {
        width: 320px;
        height: 320px;
        top: -90px;
        right: -80px;
    }
}

/* mobile */
@media (max-width: 575px) {
    .future-cta-section {
        padding: 66px 0 82px;
    }

    .future-cta-section .future-cta-title {
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .future-cta-section .future-cta-desc {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 24px;
    }

    .future-cta-section .future-cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .future-cta-section .future-cta-btn {
        width: 100%;
        min-width: 100%;
        height: 54px;
        font-size: 15px;
    }

    .future-cta-section .future-cta-wave svg {
        height: 76px;
    }

    .future-cta-section .future-cta-circle {
        width: 220px;
        height: 220px;
        top: -70px;
        right: -80px;
    }

    .future-cta-section .future-cta-pattern {
        background-size: 24px 24px;
    }
}

/* Home Faqs Section Css */
.faq-section {
    background: #fff;
    padding: 70px 0 100px;
}

.faq-section .faq-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 82px;
    align-items: start;
}

.faq-section .faq-left {
    max-width: 500px;
    padding-top: 6px;
}

.faq-section .faq-label {
    display: inline-block;
    color: #e53945;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq-section .faq-title {
    color: #171923;
    letter-spacing: -1.8px;
    margin: 0 0 22px;
}

.faq-section .faq-desc {
    color: #68707d;
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
    max-width: 460px;
}

.faq-section .faq-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-section .faq-item {
    background: #f7f7f7;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-section .faq-item.active {
    background: #ffffff;
    border-color: #dddddd;
}

.faq-section .faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 19px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    text-align: left;
}

.faq-section .faq-question span:first-child {
    color: #171923;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 700;
}

.faq-section .faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 4px;
    background: #f0f0f0;
    color: #9b9b9b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    line-height: 1;
    transition: 0.3s ease;
}

.faq-section .faq-item.active .faq-icon {
    background: #f7e7e8;
    color: #e53945;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-section .faq-answer-inner {
    padding: 0 20px 20px;
    color: #68707d;
    font-size: 16px;
    line-height: 1.8;
}

/* 1400 */
@media (max-width: 1400px) {
    .faq-section .faq-grid {
        grid-template-columns: 430px 1fr;
        gap: 60px;
    }
}

/* 991 */
@media (max-width: 991px) {
    .faq-section {
        padding: 50px 0 70px;
    }

    .faq-section .faq-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .faq-section .faq-left {
        max-width: 100%;
        padding-top: 0;
    }

    .faq-section .faq-title {
        margin-bottom: 16px;
    }

    .faq-section .faq-desc {
        max-width: 100%;
        font-size: 17px;
    }
}

/* 575 */
@media (max-width: 575px) {
    .faq-section {
        padding: 34px 0 52px;
    }

    .faq-section .faq-grid {
        gap: 24px;
    }

    .faq-section .faq-label {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .faq-section .faq-title {
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .faq-section .faq-desc {
        font-size: 15px;
        line-height: 1.75;
    }

    .faq-section .faq-right {
        gap: 12px;
    }

    .faq-section .faq-question {
        padding: 16px;
        gap: 12px;
    }

    .faq-section .faq-question span:first-child {
        font-size: 16px;
    }

    .faq-section .faq-answer-inner {
        padding: 0 16px 16px;
        font-size: 15px;
        line-height: 1.75;
    }
}