/* html {
    scroll-behavior: smooth;
} */

body {
    padding: 0;
    background: url(../img/slider-bg1.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/*--------------HEADER---------------------*/
header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.header-top-bar {
    background-color: #1a3a5c;
    padding: 8px 0;
    font-size: 13px;
}

.header-top-left {
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
}

.header-top-right {
    text-align: right;
    padding: 5px 15px;
}

    .header-top-right a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        margin-left: 20px;
        transition: color 0.3s ease;
        font-size: 13px;
    }

        .header-top-right a:hover {
            color: #439fbf;
            text-decoration: none;
        }

/* Main Header */
.header-main {
    background: linear-gradient(135deg, #2e7a9e 0%, #439fbf 100%);
    padding: 20px 0;
    position: relative;
}

    .header-main::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100px;
        height: 100%;
        background: linear-gradient(135deg, #1a5a7a 0%, #2e7a9e 100%);
        clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    }

.header-main-content {
    position: relative;
    z-index: 1;
    align-items: center;
}

.header-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 15px;
}

.header-logo-link {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

    .header-logo-link:hover {
    background-color: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transform: translateY(-2px);
        text-decoration: none;
    }

.header-logo {
    max-height: 45px;
    width: auto;
    display: block;
    height: auto;
}

.header-tagline {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    margin: 0;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
    padding-left: 5px;
}

.header-contact-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 15px;
    flex-wrap: wrap;
}

/* Desktop view adjustments */
@media (min-width: 1200px) {
    .header-contact-section {
        width: 66%;
    }
}

.header-contact-item {
    display: flex;
    align-items: center;
    margin: 0 10px;
    flex: 1;
    min-width: 150px;
}

/* Show desktop-only items on desktop */
.desktop-only {
    display: flex;
}

/* Hide mobile-only items on desktop */
.mobile-only {
    display: none;
}

.header-contact-icon {
    font-size: 24px;
    color: #439fbf;
    background-color: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.header-contact-details {
    display: flex;
    flex-direction: column;
}

.header-contact-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.header-contact-value {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.header-cta-section {
    text-align: center;
    padding: 10px 15px;
}

.header-cta-btn {
    display: inline-block;
    background-color: #fff;
    color: #439fbf;
    padding: 12px 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

    .header-cta-btn:hover {
        background-color: #f0f0f0;
        color: #2e7a9e;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-decoration: none;
    }

/* Mobile Menu Toggle Button - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}

.mobile-drawer,
.mobile-drawer-overlay {
    display: none;
}

/* Navigation Bar */
.header-nav-bar {
    background-color: #fff;
    padding: 0;
    border-top: 1px solid #e0e0e0;
}

.header-nav-links {
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-link {
    display: inline-block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-right: 1px solid #e0e0e0;
    position: relative;
}

    .nav-link:first-child {
        border-left: 1px solid #e0e0e0;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: #439fbf;
        color: #fff;
        text-decoration: none;
    }

    .nav-link i {
        margin-right: 5px;
    }

.header-social-links {
    text-align: right;
    padding: 10px 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.social-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-nav-icon:hover {
        background-color: #439fbf;
        border-color: #439fbf;
        color: #fff;
        text-decoration: none;
    }

    .social-nav-icon i {
        font-size: 14px;
    }

/* Quote Modal Styles */
.quote-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

    .quote-modal-overlay.active {
        display: block;
        opacity: 1;
    }

.quote-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 40%;
    max-width: 600px;
    max-height: 85vh;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .quote-modal.active {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }

.quote-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 85vh;
    overflow: hidden;
}

.quote-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    background: linear-gradient(135deg, #2e7a9e 0%, #439fbf 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

    .quote-modal-header h3 {
        margin: 0;
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.quote-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

    .quote-modal-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

.quote-modal-body {
    padding: 20px 25px;
    /*overflow-y: auto;*/
    overflow-x: visible;
    flex: 1;
    min-height: 0;
}

.quote-modal-intro {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
    text-align: center;
}

.quote-form .form-group {
    margin-bottom: 15px;
}

.quote-form .form-group.text-center {
    width: 100%;
    display: flex;
    justify-content: center;
}

    .quote-form .form-group label {
        display: block;
        margin-bottom: 6px;
        color: #333;
        font-size: 13px;
        font-weight: 600;
    }

        .quote-form .form-group label .required {
            color: #e74c3c;
        }

    .quote-form .form-group .form-control {
        width: 100%;
        /* padding: 10px 12px; */
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 14px;
        transition: all 0.3s ease;
        background-color: #fff;
    }

        .quote-form .form-group .form-control:focus {
            outline: none;
            border-color: #439fbf;
            box-shadow: 0 0 0 3px rgba(67, 159, 191, 0.1);
        }

        .quote-form .form-group .form-control::placeholder {
            color: #999;
        }

    .quote-form .form-group select.form-control {
        cursor: pointer;
        overflow: visible;
    }

    .quote-form .form-group {
        overflow: visible;
    }

    .quote-form .form-group textarea.form-control {
        resize: vertical;
        min-height: 70px;
        max-height: 100px;
    }

.quote-submit-btn {
    background: linear-gradient(135deg, #439fbf 0%, #2e7a9e 100%);
    color: #fff !important;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(67, 159, 191, 0.3);
    margin-top: 5px;
    white-space: nowrap;
    overflow: visible;
    text-decoration: none;
}

    .quote-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(67, 159, 191, 0.4);
        background: linear-gradient(135deg, #2e7a9e 0%, #439fbf 100%);
        color: #fff !important;
    }

    .quote-submit-btn span {
        display: inline-block;
        color: #fff;
        font-weight: 700;
    }

    .quote-submit-btn i {
        font-size: 16px;
        color: #fff;
        display: inline-block;
    }

/* Old styles kept for backward compatibility */
.phone-bg {
    float: right;
    padding: 8px 20px;
    margin-top: 10px;
    text-align: center;
    color: #333;
    font-weight: 700;
    font-size: 15px;
    border-radius: 25px;
    background: #439fbf;
    color: #fff;
}

.email-bg {
    float: right;
    padding: 8px 20px;
    margin-top: 10px;
    text-align: center;
    color: #333;
    font-weight: 700;
    font-size: 15px;
    border-radius: 25px;
    background: #439fbf;
    color: #fff;
}
/*--------------SLIDER/FORM---------------------*/

#wraper {
    clear: both;
    position: relative;
    height: auto;
    margin-top: 180px;
    background-color: #999;
}

/* Old form_design - kept for backward compatibility */
.form_design {
    background-color: #439fbf;
    height: auto;
    position: relative;
    z-index: 1;
    clear: both;
    margin-top: 0px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 10px;
}

    .form-group label {
        color: #fff;
    }

.form_design h2 {
    color: #fff;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    top: 33%;
    left: 15%;
    z-index: 200;
    color: #fff;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
}

    .carousel-caption h1 {
        font-family: Tahoma, Geneva, sans-serif;
        font-size: 36px;
        color: #fff;
        line-height: 1.5;
        letter-spacing: 1px;
    }

.slider_btn {
    padding: 7px 12px;
    font-weight: 700;
}

.form_btn {
    padding: 7px 15px;
    font-weight: 700;
    margin: 0px 0px;
}

.color_blue {
    color: #3a6dac;
    font-weight: 700;
}
.color_white {
    color: #ffffff;
font-size:26px;
}

.btn-default1 {
    color: #333;
    
    border-color: #468fb7;
}
/*--------------WHY CHOOSE fixtra---------------------*/

#why_choose_fixtra {
    background-color: #fff;
    height: auto;
    clear: both;
    width: 100%;
    padding: 0;
    scroll-margin-top: 200px;
}

.services-section {
    padding: 80px 0;
}

.services-content {
    align-items: stretch;
}

/* Services Image Column */
.services-image-column {
    padding: 0 15px;
    display: flex;
}

.services-image-wrapper {
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
}

.services-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Services Text Column */
.services-text-column {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
}

.services-text-content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

.services-subtitle {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 300;
}

.services-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.services-intro {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    flex: 1;
    align-content: start;
}

.service-block {
    background-color: #fff;
    padding: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    .service-block:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
        border-color: #439fbf;
    }

.service-block-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-block-description {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-read-more {
    color: #20b2aa;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

    .service-read-more:hover {
        color: #1a9d96;
        text-decoration: none;
        padding-left: 5px;
}

.fixtra-section-title {
    text-align: center;
    text-transform: uppercase;
    color: #504c4c;
    font-family: Arial, Helvetica, sans-serif;
    border-bottom: 1px solid #363636;
    font-size: 18px;
}

    .fixtra-section-title h2 {
        margin: 0px;
        padding-bottom: 15px;
        line-height: 42px;
    }

.event-success-circle {
    border-radius: 100%;
    width: 180px;
   /* height: 170px;*/
    margin: auto;
    background-color: #4494b8;
    color: #fff;
    text-align: center;
}

    .event-success-circle h4 {
        padding: 60px 12px;
        line-height: 26px;
        font-weight: 700;
    }

/* Feature Cards - Why Choose Fixtra */
.feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 24px rgba(67, 159, 191, 0.2);
        border-color: #439fbf;
    }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #20b2aa 0%, #439fbf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(67, 159, 191, 0.3);
}

    .feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 6px 20px rgba(67, 159, 191, 0.4);
    }

    .feature-icon i {
        font-size: 36px;
        color: #fff;
    }

.feature-card h4 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    text-transform: none;
}

/* Features Grid */
.features-grid {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}

.features-grid > [class*="col-"] {
    padding: 0 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: stretch;
}

/* New Feature Card Design - Horizontal Layout */
.feature-card-new {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    min-height: 130px;
}

    .feature-card-new:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(67, 159, 191, 0.15);
        border-color: #439fbf;
    }

.feature-icon-left {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #20b2aa 0%, #439fbf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .feature-card-new:hover .feature-icon-left {
        transform: scale(1.1);
        border-color: #439fbf;
        box-shadow: 0 4px 15px rgba(67, 159, 191, 0.3);
    }

    .feature-icon-left i {
        font-size: 32px;
        color: #fff;
    }

.feature-content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .feature-content-right h4 {
        color: #333;
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 8px 0;
        padding: 0;
        line-height: 1.4;
        text-transform: none;
    }

    .feature-content-right p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
        padding: 0;
        flex: 1;
    }

/*--------------HOW IT WORK---------------------*/

#fixtra_how_it_work {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    height: auto;
    padding: 80px 0px;
    clear: both;
    width: 100%;
    color: #333;
    text-align: center;
    scroll-margin-top: 200px;
    position: relative;
    overflow: hidden;
}

    #fixtra_how_it_work::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #20b2aa 0%, #439fbf 100%);
    }

.how-it-works-wrapper {
    position: relative;
    z-index: 1;
}

.how-it-works-header {
    margin-bottom: 60px;
}

.how-it-works-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.how-it-works-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 300;
}

.how-it-works-steps {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
}

.how-it-works-steps > [class*="col-"] {
    display: flex;
    align-items: stretch;
    padding: 0 15px;
    margin-bottom: 30px;
}

.how-it-works-step-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
}

    .how-it-works-step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(67, 159, 191, 0.2);
        border-color: #439fbf;
    }

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(67, 159, 191, 0.2);
    letter-spacing: 1px;
}

.step-icon-wrapper {
    margin: 20px 0 25px;
    position: relative;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #20b2aa 0%, #439fbf 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(67, 159, 191, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

    .how-it-works-step-card:hover .step-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 30px rgba(67, 159, 191, 0.4);
    }

    .step-icon i {
        font-size: 42px;
        color: #fff;
    }

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 20px 0;
    flex: 1;
}

.step-arrow {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #439fbf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(67, 159, 191, 0.3);
    z-index: 2;
}

    .how-it-works-step-card.last-step .step-arrow {
        display: none;
}

    #fixtra_how_it_work h2 {
        padding: 25px 0px;
        text-transform: uppercase;
        color: #333;
    }

    #fixtra_how_it_work h4 {
        text-transform: uppercase;
        padding: 10px 0px;
        color: #333;
    }
/*--------------ABOUT US---------------------*/

#fixtra_aboutus {
    background-color: #fff;
    height: auto;
    padding: 50px 0px;
    clear: both;
    width: 100%;
    overflow: visible;
    scroll-margin-top: 200px;
}

    #fixtra_aboutus .container {
        overflow: visible;
    }

    #fixtra_aboutus .row {
        overflow: visible;
    }

.about-content {
    padding: 20px 15px;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.about-subtitle {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 25px;
    margin-top: 0;
}

    #fixtra_aboutus h3 {
        color: #504c4c;
        text-transform: uppercase;
        padding-top: 15px;
        font-weight: 600;
    }

.highlight_txt {
    font-size: 18px;
    padding: 15px 0px;
    color: #504c4c;
}

#fixtra_aboutus p {
    font-size: 16px;
    line-height: 28px;
    color: #504c4c;
    text-align: justify;
    margin-bottom: 15px;
}

.about-image {
    padding: 10px 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: visible;
}

    .about-image img {
        width: 700px;
     
        height: 700px;
        object-fit: contain;
        display: block;
    }

.btn-read-more {
    background-color: #20b2aa;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .btn-read-more:hover {
        background-color: #1a9d96;
        color: #fff;
}

#fixtra_contact {
    background-color: #f8f9fa;
    height: auto;
    clear: both;
    width: 100%;
    padding: 80px 0;
    scroll-margin-top: 200px;
}

.contact-section-wrapper {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.contact-form-wrapper {
    padding: 0 15px;
}

.contact-form-container {
    background: linear-gradient(135deg, #439fbf 0%, #2e7a9e 100%);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

    .contact-form-container h2 {
        color: #fff;
        font-size: 32px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
        text-align: center;
    }

.contact-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    margin-top: 20px;
}

    .contact-form .form-group {
        margin-bottom: 20px;
    }

    .contact-form label {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        display: block;
    }

    .contact-form .required {
        color: #ffeb3b;
        margin-left: 3px;
    }

    .contact-form .form-control {
        width: 100%;
        padding: 12px 15px;
        font-size: 14px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.95);
        color: #333;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

        .contact-form .form-control:focus {
            outline: none;
            border-color: #fff;
            background-color: #fff;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
        }

        .contact-form .form-control::placeholder {
            color: #999;
        }

    .contact-form select.form-control {
        cursor: pointer;
    }

    .contact-form textarea.form-control {
        resize: vertical;
        min-height: 120px;
    }

.btn-contact-submit {
    background-color: #fff;
    color: #439fbf;
    border: 2px solid #fff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

    .btn-contact-submit:hover {
        background-color: transparent;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-contact-submit i {
        transition: transform 0.3s ease;
    }

    .btn-contact-submit:hover i {
        transform: translateX(5px);
    }

.contact-map-wrapper {
    padding: 0 15px;
}

.map-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.embed-map-responsive {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
}

.embed-map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #e9ecef;
}

.embed-map-frame {
    width: 100% !important;
    height: 100% !important;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

    #fixtra_contact h3 {
        color: #504c4c;
        text-transform: uppercase;
        padding-top: 15px;
        font-weight: 600;
    }

.event-success-rectangle {
    /*width: 225px;
    height: 160px;*/
    margin: auto;
    background-color: #4494b8;
    color: #fff;
    text-align: center;
}

    .event-success-rectangle h4 {
        padding: 56px 30px;
        line-height: 24px;
        font-weight: 700;
    }
/*--------------EXPERTISE---------------------*/

#fixtra_expertise {
    width: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.expertise-banner {
    background: linear-gradient(135deg, #1a3a5c 0%, #2e5a7a 50%, #1a3a5c 100%);
    padding: 80px 0;
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(67, 159, 191, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(32, 178, 170, 0.1) 0%, transparent 50%);
    background-size: 100% 100%;
}

.expertise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
    pointer-events: none;
}

.expertise-stats {
    position: relative;
    z-index: 1;
    margin: 0 -15px;
}

.expertise-stats > [class*="col-"] {
    padding: 0 15px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    word-wrap: break-word;
    hyphens: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
}

    .stat-number span {
        display: inline-block;
        white-space: nowrap;
    }

    .stat-number .counter {
        display: inline-block;
    }

/* Special handling for longer stat numbers */
.stat-item:last-child .stat-number {
    font-size: 42px;
    line-height: 1.1;
}

.stat-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #439fbf, transparent);
    margin: 15px auto;
    border-radius: 2px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

    #fixtra_expertise h1 {
        color: #fff;
        font-weight: bold;
        text-align: center;
        padding: 15px 0px;
        font-size: 42px;
    }

    #fixtra_expertise span {
        display: inline-block;
        font-weight: bold;
        text-align: center;
        font-size: 42px;
        color: #fff;
    }

    #fixtra_expertise h1 small {
        font-size: 24px;
        color: #fff;
    }
/*--------------CLIENT TESTIMONIAL---------------------*/
/* carousel */
#client-carousel {
    text-align: center;
}
    /* indicator position */
    /* indicator position */
    #client-carousel .carousel-indicators {
        right: 50%;
        top: auto;
        bottom: -50px;
        margin-right: -19px;
    }
        /* indicator color */
        #client-carousel .carousel-indicators li {
            background: #c0c0c0;
        }
        /* active indicator */
        #client-carousel .carousel-indicators .active {
            background: #333333;
            height: 10px;
            width: 10px;
            margin-bottom: 1px;
        }

    #client-carousel p {
        font-size: 18px;
        line-height: 30px;
        color: #504c4c;
        text-align: center;
    }

    #client-carousel i {
        color: #ccc;
        padding: 10px 0px;
    }

.client_name {
    font-weight: bold;
    font-size: 16px;
    padding: 15px 0px;
    color: #504c4c;
}
/*--------------FOOTER---------------------*/
footer {
    width: 100%;
    background: linear-gradient(135deg, #1a3a5c 0%, #2e5a7a 50%, #1a3a5c 100%);
    color: #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
}

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(67, 159, 191, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(32, 178, 170, 0.15) 0%, transparent 50%);
        pointer-events: none;
    }

.footer-container {
    padding: 70px 0 35px;
    position: relative;
    z-index: 1;
}

.footer-content {
    margin-bottom: 40px;
    position: relative;
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
}

    .footer-content > [class*="col-"] {
        display: flex !important;
        flex-direction: column;
    }

    .footer-content::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(67, 159, 191, 0.3), transparent);
    }

.footer-column {
    padding: 0 15px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}

    .footer-column > h3.footer-heading {
        flex: 0 0 auto;
    }

    .footer-column > .footer-logo-section {
        flex: 1;
        min-height: 0;
    }

    .footer-column > .footer-services-list {
        flex: 1;
        min-height: 0;
    }

    .footer-column > .footer-contact-intro {
        flex: 0 0 auto;
    }

    .footer-column > .footer-contact-info {
        flex: 1;
        min-height: 0;
    }

    .footer-column > .footer-social {
        flex: 0 0 auto;
        margin-top: auto;
        padding-top: 20px;
    }

    .footer-column > .footer-newsletter-intro {
        flex: 0 0 auto;
    }

    .footer-column > .footer-newsletter {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column;
        padding-bottom: 20px;
    }

    .footer-column > .newsletter-form {
        flex: 1;
        min-height: 0;
    }

    .footer-column::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #439fbf, #20b2aa, transparent);
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 0 4px 4px 0;
    }

    .footer-column:hover {
        transform: translateX(5px);
    }

    .footer-column:hover::before {
        opacity: 0.8;
    }

/* Footer Logo Section */
.footer-logo-section {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(67, 159, 191, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}

    .footer-logo-section:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(67, 159, 191, 0.3);
        box-shadow: 0 5px 20px rgba(67, 159, 191, 0.15);
    }

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 2px solid rgba(67, 159, 191, 0.25);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .footer-logo-wrapper:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(67, 159, 191, 0.5);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(67, 159, 191, 0.3);
    }

.footer-logo-img {
    max-width: 180px;
    height: auto;
    display: block;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

    .footer-logo-wrapper:hover .footer-logo-img {
        transform: scale(1.05);
    }

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 15px;
    margin-left: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid rgba(67, 159, 191, 0.3);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    justify-content: center;
    border: 1px solid rgba(67, 159, 191, 0.1);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(67, 159, 191, 0.2) 0%, rgba(32, 178, 170, 0.2) 100%);
    border: 2px solid rgba(67, 159, 191, 0.3);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

    .social-icon::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: linear-gradient(135deg, #439fbf 0%, #20b2aa 100%);
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
    }

    .social-icon i {
        position: relative;
        z-index: 1;
        font-size: 18px;
    }

    .social-icon:hover {
        border-color: #439fbf;
        color: #fff;
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 6px 20px rgba(67, 159, 191, 0.5);
        text-decoration: none;
    }

        .social-icon:hover::before {
            width: 100%;
            height: 100%;
        }

/* Footer Headings */
.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #439fbf, #20b2aa);
        border-radius: 2px;
        box-shadow: 0 2px 8px rgba(67, 159, 191, 0.5);
    }

    .footer-heading::before {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(67, 159, 191, 0.2), transparent);
    }

/* Services List */
.footer-services-list {
    list-style: none;
    padding: 20px;
    margin: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(67, 159, 191, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

    .footer-services-list li {
        margin-bottom: 10px;
    }

        .footer-services-list li:last-child {
            margin-bottom: 0;
        }

        .footer-services-list li a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            padding: 10px 12px;
            border-radius: 6px;
            position: relative;
        }

            .footer-services-list li a::before {
                content: '';
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 0;
                height: 2px;
                background: linear-gradient(90deg, #439fbf, #20b2aa);
                transition: width 0.3s ease;
            }

            .footer-services-list li a:hover {
                color: #fff;
                background: linear-gradient(90deg, rgba(67, 159, 191, 0.15), rgba(32, 178, 170, 0.15));
                text-decoration: none;
                padding-left: 15px;
                transform: translateX(5px);
            }

                .footer-services-list li a:hover::before {
                    width: 4px;
                }

            .footer-services-list li a i {
                margin-right: 10px;
                font-size: 12px;
                color: #439fbf;
                transition: all 0.3s ease;
            }

            .footer-services-list li a:hover i {
                color: #20b2aa;
                transform: translateX(3px);
            }

/* Contact Info */
.footer-contact-intro {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid rgba(67, 159, 191, 0.3);
}

.footer-contact-info {
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(67, 159, 191, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

        .footer-contact-info p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            line-height: 1.6;
            padding: 8px 0;
            transition: all 0.3s ease;
            border-radius: 4px;
    }

        .footer-contact-info p:hover {
            background-color: rgba(67, 159, 191, 0.1);
            padding-left: 5px;
        }

        .footer-contact-info p i {
            color: #439fbf;
            background: rgba(67, 159, 191, 0.2);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            margin-top: 0;
            font-size: 14px;
            min-width: 32px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .footer-contact-info p:hover i {
            background: rgba(67, 159, 191, 0.3);
            transform: scale(1.1);
        }

        .footer-contact-info p span {
            flex: 1;
        }

/* Newsletter */
.footer-newsletter-intro {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.newsletter-form {
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(67, 159, 191, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.newsletter-input {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .newsletter-input:focus {
        outline: none;
        border-color: #439fbf;
        background-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 0 3px rgba(67, 159, 191, 0.2);
    }

.newsletter-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #439fbf 0%, #2e7a9e 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(67, 159, 191, 0.3);
    letter-spacing: 0.5px;
}

    .newsletter-btn:hover {
        background: linear-gradient(135deg, #2e7a9e 0%, #439fbf 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(67, 159, 191, 0.4);
    }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 40px;
    position: relative;
}

    .footer-bottom::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #439fbf, transparent);
        border-radius: 2px;
    }

.footer-copyright {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

    footer ul {
        margin-bottom: 0px;
    }

        footer ul li a {
            color: #fff;
        }

            footer ul li a:hover {
                color: #fff;
                text-decoration: none;
            }
/* RESPONSIVE CSS
-------------------------------------------------- */
@media (max-width: 1024px) {
    .carousel-caption {
        position: absolute;
        right: 50%;
        top: 20%;
        /*bottom: 20px;*/
        left: 15%;
        z-index: 10;
        /*padding-top: 20px;.event-success-rectangle
    padding-bottom: 20px;*/
        color: #fff;
        text-align: left;
        text-shadow: 0 1px 2px rgba(0,0,0,.6);
    }

        .carousel-caption h1 {
            font-family: Tahoma, Geneva, sans-serif;
            font-size: 26px;
            color: #fff;
            line-height: 1.5;
            letter-spacing: 1px;
	    font-weight:700;
        }

    .form_design {
        background-color: #2e44a0;
        height: auto;
        padding: 15px;
        position: relative;
        z-index: 1;
        clear: both;
        margin-top: 25px;
        border-radius: 10px;
    }

    .form-group {
        margin-bottom: 5px;
    }

        .form-group label {
            color: #fff;
            font-size: 12px;
        }

    .form-control {
        display: block;
        width: 100%;
        height: 28px;
        padding: 3px 6px;
        font-size: 14px;
        line-height: 1.42857143;
        color: #555;
        background-color: #fff;
        background-image: none;
        border: 1px solid #ccc;
        border-radius: 2px;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
        -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
        -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    }

    .form_btn {
        padding: 8px 20px;
        font-weight: 700;
        margin: 10px 15px;
    }

    .form_design h2 {
        color: #fff;
        text-align: center;
        font-weight: 700;
        font-size: 21px;
        margin: 5px 0px;
        text-transform: uppercase;
    }
    .email-bg {
        display: none;
    }

    /* Header Mobile Responsive */
    .header-top-bar {
        display: none;
    }

    .header-main {
        padding: 15px 0;
    }

    .header-main::before {
        display: none;
    }

    .header-logo-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 15px;
    }

    .header-logo-link {
        margin: 0 auto 8px;
        padding: 10px 15px;
    }

    .header-logo {
        max-height: 35px;
    }

    .header-tagline {
        font-size: 11px;
        text-align: center;
        width: 100%;
    }

    .header-contact-section {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 15px;
    }

    .header-contact-item {
        width: 100%;
        margin: 0;
        justify-content: center;
    }

    /* Show mobile-only items on mobile */
    .mobile-only {
        display: block !important;
    }

    /* Hide desktop-only items on mobile */
    .desktop-only {
        display: none !important;
    }

    .header-contact-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .header-contact-label {
        font-size: 10px;
    }

    .header-contact-value {
        font-size: 13px;
    }

    .header-cta-section {
        text-align: center;
        margin-top: 10px;
    }

    .header-cta-btn {
        padding: 10px 20px;
        font-size: 11px;
        width: 100%;
        max-width: 200px;
    }

    /* Hide desktop navigation on mobile */
    .header-nav-bar {
        display: none;
    }

    /* Mobile Menu Toggle Button */
    .mobile-menu-toggle {
        display: flex;
        position: fixed;
        top: 15px;
        right: 30px;
        z-index: 10001;
        background-color: #439fbf;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 8px;
        cursor: pointer;
        padding: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        pointer-events: auto;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

        .mobile-menu-toggle:hover {
            background-color: #2e7a9e;
            transform: scale(1.05);
        }

        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

    /* Mobile Drawer Overlay */
    .mobile-drawer-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }

        .mobile-drawer-overlay.active {
            display: block;
            opacity: 1;
        }

    /* Mobile Drawer */
    .mobile-drawer {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100%;
        background-color: #fff;
        z-index: 10000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

        .mobile-drawer.active {
            right: 0;
        }

    .mobile-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        background: linear-gradient(135deg, #2e7a9e 0%, #439fbf 100%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-drawer-logo {
        max-height: 35px;
        width: auto;
    }

    .mobile-drawer-close {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .mobile-drawer-close:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

    .mobile-drawer-content {
        flex: 1;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        padding: 18px 20px;
        color: #333;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        text-transform: uppercase;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }

        .mobile-nav-link i {
            margin-right: 12px;
            font-size: 18px;
            width: 24px;
            text-align: center;
            color: #439fbf;
        }

        .mobile-nav-link:hover,
        .mobile-nav-link.active {
            background-color: #f8f9fa;
            color: #439fbf;
            padding-left: 25px;
        }

    .mobile-drawer-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 25px 20px;
        border-top: 1px solid #e0e0e0;
        margin-top: auto;
    }

    .mobile-social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        color: #666;
        text-decoration: none;
        font-size: 16px;
        transition: all 0.3s ease;
    }

        .mobile-social-icon:hover {
            background-color: #439fbf;
            border-color: #439fbf;
            color: #fff;
            transform: translateY(-2px);
        }

    #wraper {
        margin-top: 0;
    }
}


@media (max-width: 768px) {
    /* Reset body background for mobile */
    body {
        background: #f5f5f5;
    }

    /* Quote Modal Tablet/Mobile Responsive */
    .quote-modal {
        width: 92%;
        max-width: 550px;
    }

    .quote-modal-header {
        padding: 16px 20px;
    }

        .quote-modal-header h3 {
            font-size: 20px;
        }

    .quote-modal-body {
        padding: 18px 18px;
    }

    .quote-modal-intro {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .quote-form .form-group {
        margin-bottom: 14px;
    }

        .quote-form .form-group label {
            font-size: 12px;
            margin-bottom: 5px;
        }

        .quote-form .form-group .form-control {
            padding: 9px 11px;
            font-size: 13px;
        }

        .quote-form .form-group textarea.form-control {
            min-height: 60px;
            max-height: 80px;
        }

    /* Ensure expertise section background shows on mobile */
    #fixtra_expertise {
        overflow: visible !important;
        background: transparent !important;
    }

    .expertise-banner {
        background: linear-gradient(135deg, #1a3a5c 0%, #2e5a7a 50%, #1a3a5c 100%) !important;
        background-image: 
            radial-gradient(circle at 20% 50%, rgba(67, 159, 191, 0.2) 0%, transparent 60%),
            radial-gradient(circle at 80% 80%, rgba(32, 178, 170, 0.2) 0%, transparent 60%) !important;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        background-blend-mode: normal !important;
        position: relative !important;
        z-index: 1 !important;
        width: 100% !important;
        display: block !important;
    }

    .expertise-overlay {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 2 !important;
        opacity: 1 !important;
        background: 
            repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
            repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px) !important;
        pointer-events: none !important;
    }

    .expertise-stats {
        position: relative !important;
        z-index: 3 !important;
    }

    header {
        background-color: #fff;
        position: relative;
        z-index: 10;
        width: 100%;
        padding: 0;
        margin-top: 0;
    }

    /* Ensure mobile menu button is always on top */
    .mobile-menu-toggle {
        z-index: 10001 !important;
    }

    .logo img {
        height: 51px;
        display: block;
        margin: 0px auto;
        padding-top: 10px;
    }

    .pad-none {
        padding: 0px;
    }

    .phone-bg {
        float: none;
        width: 100%;
        border-radius: 0;
        padding: 10px 0px;
    }

    #wraper {
        clear: both;
        position: relative;
        height: auto;
        margin-top: 0;
        background-color: #999;
    }

    /* Header Responsive */
    .header-top-bar {
        font-size: 12px;
    }

    .header-top-left,
    .header-top-right {
        text-align: center;
        padding: 5px 10px;
    }

    .header-top-right a {
        margin: 0 10px;
        display: inline-block;
    }

    .header-main {
        padding: 25px 0;
        background: linear-gradient(135deg, #2e7a9e 0%, #439fbf 100%) !important;
    }

    .header-main::before {
        display: none;
    }

    .header-main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-logo-section {
        width: 100%;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .header-logo-link {
        padding: 15px 25px;
        background-color: rgba(255, 255, 255, 0.98) !important;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        display: inline-block;
        margin-bottom: 12px;
    }

    .header-logo {
        max-height: 45px;
        width: auto;
    }

    .header-tagline {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.95);
        font-weight: 400;
        letter-spacing: 0.5px;
        margin-top: 8px;
    }

    .header-contact-section {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        width: 100%;
        padding: 0 20px;
        margin-bottom: 25px;
    }

    .header-contact-item {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        max-width: 320px;
        padding: 12px 15px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .header-contact-item:hover {
        background-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

    /* Show mobile-only items on mobile */
    .mobile-only {
        display: block !important;
    }

    /* Hide desktop-only items on mobile */
    .desktop-only {
        display: none !important;
    }

    .header-contact-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        /*background-color: rgba(255, 255, 255, 0.25) !important;*/
        background-color: rgb(255 255 255 / 47%) !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .header-contact-details {
        flex: 1;
        text-align: left;
    }

    .header-contact-label {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        /*margin-bottom: 4px;*/
    }

    .header-contact-value {
        font-size: 14px;
        color: #fff;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing:1.3px;
    }

    /* Parent container - flex row for left and right divs */
    .header-contact-section .header-contact-item {
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: stretch;
        width: 100%;
    }

    /* Left div - Help icon (30% width) */
    .header-contact-item-help {
        width: 20%;
        flex: 0 0 20%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        /*backdrop-filter: blur(10px);*/
    }

    /* Hide text in help item, show only icon */
    .header-contact-item-help .header-contact-details {
        display: none;
    }

    /* Right div - Email (80% width) */
    .header-contact-item-email {
        width: 80%;
        flex: 0 0 80%;
        display: flex;
        align-items: center;
        padding: 10px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        /*backdrop-filter: blur(0px);*/
    }
    .header-cta-section {
        width: 100%;
        padding: 0 20px;
        margin-top: 10px;
    }

    .header-cta-btn {
        padding: 14px 35px;
        font-size: 14px;
        font-weight: 700;
        width: 100%;
        max-width: 320px;
        background-color: #fff !important;
        color: #439fbf !important;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .header-cta-btn:hover {
        background-color: #f8f9fa !important;
        color: #2e7a9e !important;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    }

    /* Quote Modal Mobile Responsive */
    .quote-modal {
        width: 95%;
        max-width: 100%;
        max-height: 95vh;
        border-radius: 8px;
        top: 50%;
        transform: translate(-50%, -50%) scale(1);
    }

    .quote-modal-content {
        max-height: 95vh;
    }

    .quote-modal-header {
        padding: 12px 15px;
        flex-shrink: 0;
    }

        .quote-modal-header h3 {
            font-size: 16px;
        }

    .quote-modal-close {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .quote-modal-body {
        padding: 12px 12px;
        overflow-y: auto;
        flex: 1;
        min-height: 0;
    }

    .quote-modal-intro {
        font-size: 11px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .quote-form .form-group {
        margin-bottom: 10px;
    }

        .quote-form .form-group label {
            font-size: 11px;
            margin-bottom: 4px;
        }

        .quote-form .form-group .form-control {
            padding: 8px 10px;
            font-size: 13px;
        }

        .quote-form .form-group textarea.form-control {
            min-height: 50px;
            max-height: 65px;
            padding: 8px 10px;
        }

    .quote-submit-btn {
        padding: 10px 20px;
        font-size: 12px;
        width: 100%;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 0;
    }

    .quote-form .form-group.text-center {
        margin-top: 3px;
        margin-bottom: 0;
    }

    .quote-modal-body {
        display: flex;
        flex-direction: column;
    }

    .quote-form {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
    }

    .quote-form .form-group textarea.form-control {
        resize: none;
        max-height: 60px;
    }

    .quote-modal-intro {
        margin-bottom: 10px;
    }

    .header-nav-links {
        flex-wrap: wrap;
    }

    .nav-link {
        padding: 12px 15px;
        font-size: 12px;
    }

    /* Ensure mobile menu toggle is visible on mobile */
    .mobile-menu-toggle {
        display: flex !important;
    }

    .mobile-slider {
        padding: 0px;
        color: #fff;
        padding-top: 60px;
        min-height: 300px;
        background: url("../img/slider-bg1.jpg") no-repeat center top;
        background-size: cover;
        clear: both;
        display: block;
    }

        .mobile-slider h1 {
            text-align: center;
            font-weight: 700;
            line-height: 1.5;
            padding: 20px 15px;
            font-size: 24px;
        }

    .form_design {
        margin-top: 0px;
        position: relative !important;
        border-radius: 10px;
    }

    .form-control {
        height: 32px;
        padding: 6px;
    }

    .form-group {
        margin-bottom: 8px;
    }

    .form_btn {
        padding: 4px 15px;
        font-weight: 700;
        margin: 15px 0px 0px 0px;
    }

    #why_choose_fixtra {
        background-color: #fff;
        height: auto;
        margin-top: 10px;
        clear: both;
        width: 100%;
    }

    .services-section {
        padding: 50px 0;
    }

    .services-content {
        flex-direction: column;
    }

    .services-image-column {
        margin-bottom: 30px;
    }

    .services-image-wrapper {
        min-height: 400px;
        background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    }

    .services-text-column {
        margin-top: 30px;
    }

    .services-main-title {
        font-size: 28px;
    }

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

    .service-block {
        padding: 20px;
    }

    .services-subtitle {
        font-size: 12px;
    }

    .services-main-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .services-intro {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .service-block-title {
        font-size: 16px;
    }

    .service-block-description {
        font-size: 13px;
    }

    /* Feature Cards Responsive */
    .feature-card {
        padding: 25px 15px;
        min-height: 180px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

        .feature-icon i {
            font-size: 30px;
        }

    .feature-card h4 {
        font-size: 14px;
    }

    /* New Feature Cards Responsive */
    .feature-card-new {
        padding: 20px;
        min-height: 110px;
        gap: 15px;
    }

    .feature-icon-left {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

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

    .feature-content-right h4 {
        font-size: 16px;
    }

    .feature-content-right p {
        font-size: 13px;
    }

    /* How It Works Responsive */
    .how-it-works-main-title {
        font-size: 32px;
    }

    .how-it-works-subtitle {
        font-size: 14px;
    }

    .how-it-works-step-card {
        padding: 30px 20px;
        min-height: 280px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
    }

        .step-icon i {
            font-size: 36px;
        }

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

    .step-description {
        font-size: 13px;
    }

    .step-arrow {
        display: none;
    }

    /* Expertise Banner Responsive */
    .expertise-banner {
        padding: 60px 0;
        background: linear-gradient(135deg, #1a3a5c 0%, #2e5a7a 50%, #1a3a5c 100%) !important;
        background-image: 
            radial-gradient(circle at 20% 50%, rgba(67, 159, 191, 0.2) 0%, transparent 60%),
            radial-gradient(circle at 80% 80%, rgba(32, 178, 170, 0.2) 0%, transparent 60%) !important;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        background-blend-mode: normal !important;
    }

    .expertise-overlay {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        opacity: 1 !important;
        background: 
            repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
            repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px) !important;
        pointer-events: none !important;
    }

    .stat-number {
        font-size: 40px;
        color: #fff !important;
        font-weight: 700 !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    .stat-number span {
        white-space: nowrap !important;
        display: inline-block !important;
    }

    .stat-item:last-child .stat-number {
        font-size: 36px !important;
        white-space: nowrap !important;
    }

    /* Ensure 100% stays on one line */
    .stat-item:nth-child(2) .stat-number {
        white-space: nowrap !important;
    }

    .stat-label {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.95) !important;
        font-weight: 500 !important;
    }

    .stat-item {
        padding: 25px 15px;
        min-height: 160px;
    }

    .stat-number span {
        white-space: nowrap;
    }

    .stat-divider {
        background: linear-gradient(90deg, transparent, #439fbf, transparent) !important;
    }

    .circle h4 {
        font-size: 14px !important;
        line-height: 16px;
        padding: 10px;
        font-weight: 600;
        margin-top: -36px;
        letter-spacing: .5px;
    }

    .about-main-title {
        font-size: 28px;
    }

    .about-content {
        padding: 15px;
        margin-bottom: 20px;
    }

    .about-image {
        padding: 15px;
    }

    /* Contact Section Responsive */
    #fixtra_contact {
        padding: 50px 0;
    }

    .contact-section-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

        .contact-form-container h2 {
            font-size: 24px;
        }

    .contact-map-wrapper {
        margin-top: 20px;
    }

    .map-container {
        min-height: 400px;
    }

    .embed-map-responsive {
        padding-bottom: 75%;
    }
}

/* Tablet and Medium Screens */
@media (max-width: 992px) and (min-width: 769px) {
    .contact-section-wrapper {
        flex-direction: column;
    }

    .contact-form-container {
        padding: 35px 30px;
    }

    .map-container {
        min-height: 450px;
    }
}

/* Small Tablets */
@media (max-width: 768px) {
    #fixtra_contact {
        padding: 40px 0;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

        .contact-form-container h2 {
            font-size: 22px;
        }

    .contact-subtitle {
        font-size: 13px;
    }

    .contact-form .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-contact-submit {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .map-container {
        min-height: 350px;
    }

    .embed-map-responsive {
        padding-bottom: 80%;
    }

    /* Ensure all images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Fix container padding on mobile */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Better spacing for sections */
    section {
        padding: 40px 0 !important;
    }

    /* Fix carousel on mobile */
    #carousel-example-generic {
        display: none;
    }

    .hidden-xs {
        display: none !important;
    }

    /* Better button sizes on mobile */
    button, .btn, a.btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 44px; /* Better touch target */
    }

    /* Form inputs better on mobile */
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 12px;
        min-height: 44px;
    }

    /* Better text readability */
    p, span, li {
        font-size: 14px;
        line-height: 1.6;
    }

    h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    h4 {
        font-size: 18px;
        line-height: 1.3;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    /* Header Mobile Professional Styling */
    .header-main {
        padding: 20px 0;
    }

    .header-logo-link {
        padding: 12px 20px;
    }

    .header-logo {
        max-height: 40px;
    }

    .header-tagline {
        font-size: 12px;
    }

    .header-contact-item {
        max-width: 100%;
        padding: 10px;
    }

    /* Show mobile-only items on mobile */
    .mobile-only {
        display: block !important;
    }

    /* Hide desktop-only items on mobile */
    .desktop-only {
        display: none !important;
    }

    .header-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 12px;
    }

    .header-contact-label {
        font-size: 12px;
    }

    .header-contact-value {
        font-size: 14px;
    }

    .header-cta-btn {
        padding: 12px 30px;
        font-size: 13px;
        max-width: 100%;
    }

    /* Quote Modal Mobile Responsive */
    .quote-modal {
        width: 95%;
        max-width: 100%;
        max-height: 95vh;
        border-radius: 8px;
        top: 46%;
        left: 50%;
    }

    .quote-modal-header {
        padding: 10px 20px;
    }

        .quote-modal-header h3 {
            font-size: 20px;
        }

    .quote-modal-close {
        width: 40px;
        height: 35px;
        font-size: 18px;
    }

    .quote-modal-body {
        padding: 20px 15px;
    }

    .quote-modal-intro {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .quote-form .form-group {
        margin-bottom: 18px;
    }

        .quote-form .form-group label {
            font-size: 13px;
            margin-bottom: 6px;
        }

        .quote-form .form-group .form-control {
            padding: 10px 12px;
            font-size: 14px;
        }

    .quote-submit-btn {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    #fixtra_contact {
        padding: 30px 0;
    }

    .contact-form-wrapper,
    .contact-map-wrapper {
        padding: 0 10px;
    }

    .contact-form-container {
        padding: 20px 15px;
    }

        .contact-form-container h2 {
            font-size: 20px;
        }

    .contact-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .contact-form .form-group {
        margin-bottom: 15px;
    }

    .contact-form label {
        font-size: 13px;
    }

    .contact-form .form-control {
        padding: 10px;
        font-size: 14px;
    }

    .btn-contact-submit {
        padding: 12px 25px;
        font-size: 13px;
    }

    .map-container {
        min-height: 300px;
    }

    .embed-map-responsive {
        padding-bottom: 100%;
    }
}

/* Footer Responsive Styles */
@media (max-width: 992px) {
    .footer-container {
        padding: 50px 0 25px;
    }

    .footer-column {
        margin-bottom: 40px;
    }

    .footer-about {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 0 20px;
    }

    .footer-logo-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo-img {
        max-width: 150px;
    }

    .footer-tagline {
        margin-left: 0;
    }

    .footer-heading {
        font-size: 16px;
    }

    .footer-about,
    .footer-contact-intro,
    .footer-newsletter-intro {
        font-size: 13px;
    }

    .footer-contact-info p {
        font-size: 13px;
    }

    .footer-services-list li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 30px 0 15px;
    }

    .footer-column {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .footer-logo-img {
        max-width: 120px;
    }

    .footer-tagline {
        font-size: 12px;
    }

    .footer-about,
    .footer-contact-intro,
    .footer-newsletter-intro {
        font-size: 12px;
    }

    .footer-heading {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-services-list li {
        margin-bottom: 10px;
    }

        .footer-services-list li a {
            font-size: 12px;
        }

    .footer-contact-info p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

        .social-icon i {
            font-size: 16px;
        }

    .newsletter-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .newsletter-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    /* Expertise Banner Mobile */
    .expertise-banner {
        padding: 50px 0;
        background: linear-gradient(135deg, #1a3a5c 0%, #2e5a7a 50%, #1a3a5c 100%) !important;
        background-image: none !important;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        background-blend-mode: normal !important;
        min-height: auto !important;
    }

    .expertise-overlay {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        opacity: 1 !important;
        background: 
            repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px),
            repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px) !important;
        pointer-events: none !important;
    }

    #fixtra_expertise {
        position: relative;
        overflow: visible !important;
        width: 100% !important;
    }

    .expertise-banner {
        width: 100% !important;
        min-height: 300px !important;
    }

    .stat-number {
        font-size: 36px;
        margin-bottom: 12px;
        color: #fff !important;
        font-weight: 700 !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    .stat-number span {
        white-space: nowrap !important;
        display: inline-block !important;
    }

    .stat-item:last-child .stat-number {
        font-size: 32px !important;
        white-space: nowrap !important;
    }

    /* Ensure 100% stays on one line */
    .stat-item:nth-child(2) .stat-number {
        white-space: nowrap !important;
    }

    .stat-divider {
        width: 50px;
        margin: 12px auto;
        background: linear-gradient(90deg, transparent, #439fbf, transparent) !important;
        height: 2px;
    }

    .stat-label {
        font-size: 13px;
        margin-top: 8px;
        color: rgba(255, 255, 255, 0.95) !important;
        font-weight: 500 !important;
        text-transform: uppercase;
    }

    .stat-item {
        padding: 20px 15px;
        margin-bottom: 20px;
        min-height: 150px;
    }

    .stat-number span {
        white-space: nowrap;
        }

    /* Ensure background is visible and text is readable */
    .expertise-banner {
        background: linear-gradient(135deg, #1a3a5c 0%, #2e5a7a 50%, #1a3a5c 100%) !important;
        min-height: 350px !important;
    }

    .expertise-stats {
        position: relative !important;
        z-index: 3 !important;
    }

    /* How It Works Mobile */
    .how-it-works-header {
        margin-bottom: 40px;
    }

    .how-it-works-main-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .how-it-works-subtitle {
        font-size: 13px;
    }

    .how-it-works-step-card {
        padding: 25px 20px;
        min-height: 260px;
        margin-bottom: 25px;
    }

    .step-number {
        font-size: 12px;
        top: 12px;
        right: 12px;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        margin: 15px 0 20px;
    }

        .step-icon i {
            font-size: 30px;
        }

    .step-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .step-description {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .step-arrow {
        display: none;
    }

    /* Feature Cards Mobile */
    .feature-card {
        padding: 20px 15px;
        min-height: 160px;
        margin-bottom: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

        .feature-icon i {
            font-size: 26px;
        }

    .feature-card h4 {
        font-size: 13px;
    }

    /* New Feature Cards Mobile */
    .feature-card-new {
        padding: 18px;
        min-height: 100px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }

    .feature-icon-left {
        width: 55px;
        height: 55px;
        min-width: 55px;
        margin: 0 auto;
    }

        .feature-icon-left i {
            font-size: 24px;
        }

    .feature-content-right {
        text-align: center;
    }

        .feature-content-right h4 {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .feature-content-right p {
            font-size: 12px;
        }

    /* About Section Mobile */
    #fixtra_aboutus {
        padding: 40px 0;
    }

    .about-content {
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .about-subtitle {
        font-size: 11px;
    }

    .about-main-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    #fixtra_aboutus p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .btn-read-more {
        padding: 10px 25px;
        font-size: 12px;
        margin-top: 15px;
    }

    .about-image {
        padding: 15px;
    }

    .about-image img {
        width: 100%;
        height: auto;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 40px 0;
    }

    .services-image-wrapper {
        min-height: 300px;
    }

    .services-subtitle {
        font-size: 11px;
    }

    .services-main-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .services-grid {
        gap: 15px;
    }

    .service-block {
        padding: 18px;
    }

    .service-block-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .service-block-description {
        font-size: 12px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .service-read-more {
        font-size: 11px;
    }

    /* Carousel Mobile */
    .carousel-caption h1 {
        font-size: 18px;
        line-height: 1.3;
    }

    .carousel-caption {
        top: 15%;
        left: 10%;
        right: 10%;
    }

    /* Section Titles Mobile */
    .fixtra-section-title h2 {
        font-size: 24px;
    }

    .how-it-works-main-title {
        font-size: 22px;
    }

    .how-it-works-subtitle {
        font-size: 12px;
    }

    /* Header Mobile Fixes - Already defined above */

    .header-main {
        padding: 12px 0;
    }

    .header-nav-bar {
        padding: 0;
    }

    .header-nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 12px 15px;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
        font-size: 12px;
    }

    .header-social-links {
        justify-content: center;
        padding: 10px;
        border-top: 1px solid #e0e0e0;
    }

    .social-nav-icon {
        margin: 0 8px;
    }
}

/* Extra Small Devices (320px - 480px) */
@media (max-width: 360px) {
    .carousel-caption h1 {
        font-size: 16px;
    }

    .services-main-title,
    .about-main-title,
    .how-it-works-main-title {
        font-size: 20px;
    }

    .feature-content-right h4 {
        font-size: 14px;
    }

    .step-title {
        font-size: 15px;
    }

    .stat-number {
        font-size: 30px;
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    .stat-number span {
        white-space: nowrap !important;
        display: inline-block !important;
    }

    .stat-item:last-child .stat-number {
        font-size: 26px !important;
        white-space: nowrap !important;
    }

    /* Ensure 100% stays on one line */
    .stat-item:nth-child(2) .stat-number {
        white-space: nowrap !important;
    }

    .footer-logo-img {
        max-width: 100px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .header-main {
        padding: 10px 0;
    }

    .header-logo {
        max-height: 35px;
    }

    .header-contact-section {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .header-contact-item {
        width: auto;
        min-width: 120px;
    }

    #wraper {
        margin-top: 0;
    }
}
