.stats-section {
    background: #003061;
    padding: 102px 0;
}

.stats-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.stat-item {
    text-align: center;
    color: white;
    position: relative;
    padding: 0 20px;
    flex: 0 1 auto;
    white-space: nowrap;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: #EAEEFF;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.stat-description {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #F3F5FC;
    letter-spacing: -0.5px;
    margin: 0 auto;
    white-space: normal;
}

/* Responsive Design */
@media (max-width: 968px) {
    .stats-container {
        gap: 30px;
    }

    .stat-item {
        flex: 0 1 calc(50% - 15px);
        min-width: 200px;
    }

    .stat-item:nth-child(2n)::after {
        display: none;
    }

    .stat-item:nth-child(3)::after,
    .stat-item:nth-child(4)::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .stats-section {
        padding: 40px 20px;
    }

    .stats-container {
        gap: 40px;
    }

    .stat-item {
        flex: 1 1 100%;
        white-space: normal;
    }

    .stat-item::after {
        display: none !important;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stat-description {
        font-size: 0.95rem;
    }
}

.capabilities-section {
    padding: 100px 15px 0;
    background: #fff;
}

.capabilities-container {
    max-width: 1140px;
    margin: 0 auto;
}

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

.section-label {
    font-size: 17px;
    font-weight: 500;
    color: #58585B;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    padding-top: 0;
    margin-bottom: 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.capability-card {
    background: #F3F5FC;
    padding: 50px 30px 30px;
    border-radius: 10px;
    min-height: 385px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: #003d82;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.capability-title {
    font-size: 24px;
    font-weight: 700;
    color: #050509;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
    padding: 0 20px;
}

.capability-description {
    font-size: 16px;
    color: #828284;
    line-height: 1.7;
    text-align: justify;
    letter-spacing: -0.3px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .capabilities-section {
        padding: 80px 15px 30px;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .capability-title {
        font-size: 1.25rem;
    }
}

.about-section {
    padding: 100px 15px 0;
    background: #ffffff;
    margin-bottom: 50px;
}

.about-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding-bottom: 50px;
    border-bottom: 1px solid #EAEEFF;
}

/* Left Column - Images */
.images-column {
    width: 520px;
    flex-shrink: 0;
}

/* Right Column - Content */
.content-column {
    width: 570px;
    flex-shrink: 0;
}

.main-heading {
    font-size: 40px;
    font-weight: 700;
    color: #050509;
    padding-top: 0;
    line-height: 1.3;
}

.sub-heading {
    font-size: 36px;
    font-weight: 700;
    color: #003061;
    line-height: 1.3;
    padding-top: 0;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.content-text {
    font-size: 0.9375rem;
    color: #828284;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

.content-text strong {
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: #050509;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    padding: 16px 100px 17px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 20px;
    letter-spacing: -0.5px;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-container {
        gap: 40px;
    }

    .images-column {
        width: 45%;
    }

    .content-column {
        width: 55%;
    }
}

@media (max-width: 968px) {
    .about-container {
        flex-direction: column;
        gap: 50px;
    }

    .images-column,
    .content-column {
        width: 100%;
    }

    .main-heading {
        font-size: 2rem;
    }

    .sub-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .about-section {
        padding: 80px 15px 0;
    }

    .main-heading {
        font-size: 1.75rem;
    }

    .sub-heading {
        font-size: 1.375rem;
    }

    .image-row {
        grid-template-columns: 1fr;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

.services-section {
    padding: 100px 15px;
}

.services-container {
    max-width: 1140px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 75px;
    margin-bottom: 80px;
}

.service-item:last-child {
    margin-bottom: 0;
}

/* Image Column */
.service-image {
    width: 403px;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

/* Content Column */
.service-content {
    padding-left: 105px;
}

.service-header{
    margin-bottom: 40px;
}

.service-heading {
    font-size: 36px;
    font-weight: 700;
    color: #003061;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 0;
    letter-spacing: -0.7px;
    position: relative;
}

.service-heading::after {
    content: '';
    position: absolute;
    left: calc(-15px - 100%);
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: #D0DBFF;
}

.service-description {
    font-size: 18px;
    color: #828284;
    letter-spacing: -0.5px;
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: justify;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    font-size: 16px;
    color: #828284;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    letter-spacing: -0.5px;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #828284;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-list li strong {
    color: #828284;
    font-weight: 700;
}

/* Reverse layout for alternating items */
.service-item.reverse {
    flex-direction: row-reverse;
}

.service-item.reverse .service-content {
    padding-left: 0;
    padding-right: 105px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-item {
        gap: 50px;
    }

    .service-image {
        width: 350px;
    }

    .service-content {
        padding-left: 0;
    }

    .service-item.reverse .service-content {
        padding-right: 0;
    }
}

@media (max-width: 968px) {
    .service-item,
    .service-item.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-image {
        width: 100%;
    }

    .service-content {
        padding-left: 0;
    }

    .service-item.reverse .service-content {
        padding-right: 0;
    }

    .service-heading {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 80px 15px;
    }

    .service-heading {
        font-size: 1.5rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .service-item {
        margin-bottom: 50px;
    }
}

.services-detail-section {
    padding: 100px 15px;
    background: #F3F5FC;
}

.services-detail-container {
    max-width: 1140px;
    margin: 0 auto;
}

.service-detail-item {
    display: flex;
    gap: 75px;
    align-items: center;
    margin-bottom: 50px;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

/* Image Column */
.service-detail-image {
    width: 482px;
    flex-shrink: 0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Content Column */
.service-detail-content {
    flex: 1;
}

.service-detail-heading {
    font-size: 36px;
    font-weight: 700;
    color: #003061;
    line-height: 1.3;
    margin-bottom: 40px;
    padding-top: 0;
    padding-left: 105px;
    letter-spacing: -0.7px;
    position: relative
}

.service-detail-heading::after {
    content: '';
    position: absolute;
    left: calc(85px - 100%);
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: #D0DBFF;
}

.service-detail-title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-top: 0;
}

.service-detail-description {
    font-size: 18px;
    letter-spacing: -0.5px;
    color: #828284;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-list {
    list-style: none;
    padding-left: 10px;
}

.service-detail-list li {
    font-size: 18px;
    color: #828284;
    padding-left: 20px;
    position: relative;
    letter-spacing: -0.5px;
}

.service-detail-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #828284;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-detail-list li strong {
    font-weight: 700;
}

/* Reverse layout for alternating items */
.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-item.reverse .service-detail-content {
    padding-left: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-detail-item {
        gap: 50px;
    }

    .service-detail-image {
        width: 420px;
    }

    .service-detail-content {
        padding-left: 0;
    }

    .service-detail-item.reverse .service-detail-content {
        padding-right: 0;
    }
}

@media (max-width: 968px) {
    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 70px;
    }

    .service-detail-image {
        width: 100%;
    }

    .service-detail-content {
        padding-left: 0;
    }

    .service-detail-item.reverse .service-detail-content {
        padding-right: 0;
    }

    .service-detail-heading {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .services-detail-section {
        padding: 50px 15px;
    }

    .service-detail-heading {
        font-size: 1.5rem;
    }

    .service-detail-item {
        margin-bottom: 60px;
    }
}

.projects-section {
    padding: 100px 15px 0;
}

.projects-container {
    max-width: 1140px;
    margin: 0 auto;
    border-bottom: 1px solid #EAEEFF;
    padding-bottom: 50px;
}

.projects-container .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-header-left {
    flex: 1;
}

.contact-link {
    font-size: 17px;
    color: #3AA9E9;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0088bb;
    text-decoration: underline;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-tab {
    background: #E3F2FF;
    color: #050509;
    font-size: 16px;
    font-weight: 500;
    padding: 9px 13px 10px;
    letter-spacing: -0.5px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background: #003061;
    color: #ffffff;
}

/* Owl Carousel Custom Styles */
.carousel-wrapper,
.projects-carousel {
    position: relative;
}

.project-image {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Custom Navigation Buttons */
.owl-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0 !important;
    position: relative;
    background-image: url('../images/icons/prev.png') !important;
}

.owl-nav button.owl-next {
    rotate: 180deg;
    background-image: url('../images/icons/prev.png') !important;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
    background-image: url('../images/icons/next.png') !important;
}
.owl-nav button.owl-next:hover{
    rotate: 0deg;
}
.owl-nav button.owl-prev:hover{
    rotate: 180deg;
}

.owl-nav button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Remove dots */
.owl-dots {
    display: none;
}

/* Responsive Design */
@media (max-width: 968px) {
    .projects-container .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .project-image {
        height: 250px;
    }
}

@media (max-width: 640px) {
    .projects-section {
        padding: 80px 15px 0;
    }

    .filter-tabs {
        gap: 8px;
    }

    .filter-tab {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .project-image {
        height: 220px;
    }
}

.custom-multi-select {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.select-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px 13px;
    border: 1px solid #050509;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s;
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    background-image: url('../images/icons/arr-up.png');
}
.select-display .placeholder {
    flex: 1;
    color: #050509;
    font-size: 15px;
}
.checkbox-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.checkbox-dropdown.active {
    max-height: 300px;
    opacity: 1;
}
.checkbox-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #C5C5C5;
    cursor: pointer;
    transition: background-color 0.2s;
}
.checkbox-item:last-child {
    border-bottom: none;
}
.checkbox-item:hover {
    background-color: #f5f5f5;
}
.checkbox-item input[type="checkbox"] {
    width: 24px !important;
    height: 24px;
    margin: 0 10px 0 0;
    cursor: pointer;
    border: 1px solid #545454;
}
.checkbox-item span {
    font-size: 14px;
    user-select: none;
}
/* Hide default CF7 field */
.wpcf7-form-control-wrap[data-name="materials-display"] input {
    display: none;
}