/*
Theme Name: Startit Child
Theme URI: https://startit.qodeinteractive.com/
Description: A child theme of Startit Theme
Author: Select Themes
Author URI: https://qodeinteractive.com
Version: 2.0.2
Text Domain: startit
Template: startit
*/
/* Static Slider Content styling for home page */
#qodef-home-main-slider {
    position: relative;
}

#qodef-home-main-slider .qodef-static-slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    pointer-events: none;
}

#qodef-home-main-slider .qodef-static-slider-content-inner {
    width: 77%;
    pointer-events: auto;
}

#qodef-home-main-slider .qodef-static-slider-content-inner .qodef-text {
    text-align: left;
}

#qodef-home-main-slider .qodef-static-slider-content-inner h3.qodef-slide-subtitle {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    line-height: 1.458em;
    padding: 9px 20px;
    display: inline-block;
    border-left: 7px solid var(--primary-color);
    margin: 0 0 20px;
}

#qodef-home-main-slider .qodef-static-slider-content-inner h2.qodef-slide-title {
    font-size: 52px;
    line-height: 60px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    text-transform: capitalize;
}

#qodef-home-main-slider .qodef-static-slider-content-inner h3.qodef-slide-text {
    margin: 0 0 30px;
    clear: both;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.458em;
}

#qodef-home-main-slider .qodef-static-slider-content-inner .qodef-slide-buttons-holder {
    display: block;
    margin-top: 20px;
}

/* Custom styling for "Get a Free Consultation" button */
#qodef-home-main-slider .qodef-static-slider-content-inner .qodef-btn {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

#qodef-home-main-slider .qodef-static-slider-content-inner .qodef-btn:hover {
    background-color: transparent !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* Hide the default content in the slides so they only show the background images/videos */
#qodef-home-main-slider .carousel-inner .qodef-slider-content-outer {
    display: none !important;
}

/* Responsive adjustments */
@media only screen and (max-width: 1024px) {
    #qodef-home-main-slider .qodef-static-slider-content-inner h2.qodef-slide-title {
        font-size: 38px;
        line-height: 46px;
    }
    #qodef-home-main-slider .qodef-static-slider-content-inner h3.qodef-slide-text {
        font-size: 18px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 768px) {
    #qodef-home-main-slider .qodef-static-slider-content {
        padding-left: 5%;
        justify-content: center;
    }
    #qodef-home-main-slider .qodef-static-slider-content-inner {
        width: 90%;
        text-align: center;
    }
    #qodef-home-main-slider .qodef-static-slider-content-inner .qodef-text {
        text-align: center;
    }
    #qodef-home-main-slider .qodef-static-slider-content-inner h2.qodef-slide-title {
        font-size: 28px;
        line-height: 34px;
    }
    #qodef-home-main-slider .qodef-static-slider-content-inner h3.qodef-slide-text {
        font-size: 15px;
        line-height: 20px;
    }
}

/* Custom Services Section Styling */
.qodef-custom-services-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.qodef-custom-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.qodef-custom-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #212121;
    text-transform: capitalize;
    margin: 0 0 15px;
}

.qodef-custom-section-separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

/* Services CSS Grid Layout */
.qodef-custom-services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.qodef-custom-service-card {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    padding: 45px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    text-align: center;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Staggered grid columns for 3+2 layout on desktop */
.qodef-custom-services-grid .qodef-custom-service-card:nth-child(1) { grid-column: span 2; }
.qodef-custom-services-grid .qodef-custom-service-card:nth-child(2) { grid-column: span 2; }
.qodef-custom-services-grid .qodef-custom-service-card:nth-child(3) { grid-column: span 2; }
.qodef-custom-services-grid .qodef-custom-service-card:nth-child(4) { grid-column: 2 / span 2; }
.qodef-custom-services-grid .qodef-custom-service-card:nth-child(5) { grid-column: 4 / span 2; }

.qodef-custom-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.qodef-custom-service-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.qodef-custom-service-icon i {
    font-size: 64px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.qodef-custom-service-card:hover .qodef-custom-service-icon i {
    transform: scale(1.1);
}

.qodef-custom-service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212121;
}

.qodef-custom-service-text {
    font-size: 14px;
    line-height: 24px;
    color: #7f7f7f;
    margin: 0;
}

/* CTA Section Styling */
.qodef-custom-services-cta {
    text-align: center;
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 16px;
    padding: 50px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    margin-bottom: 80px;
}

.qodef-custom-cta-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #212121;
}

.qodef-custom-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Staggered Why Choose Us Section Styling */
.qodef-custom-why-choose-us {
    margin-top: 80px;
    margin-bottom: 40px;
    background: var(--light-bg-color); /* Subtle soft green-white gradient tint */
    border-top: 1px solid #f2f9e8;
    border-bottom: 1px solid #f2f9e8;
    padding: 80px 0;
    
    /* Viewport Breakout to go full bleed/full screen width */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.qodef-custom-why-choose-us-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.qodef-custom-section-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.qodef-custom-section-subtitle {
    font-size: 16px;
    color: #7f7f7f;
    max-width: 650px;
    margin: 0 auto 20px;
    line-height: 26px;
}

.qodef-custom-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.qodef-custom-why-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.qodef-custom-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-color);
}

.qodef-custom-why-icon-holder {
    width: 60px;
    height: 60px;
    background-color: #f9fcf5;
    border: 1px solid #e1f2cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 25px;
}

.qodef-custom-why-icon-holder i {
    font-size: 24px;
    color: var(--primary-color);
}

.qodef-custom-why-content {
    text-align: left;
}

.qodef-custom-why-title {
    font-size: 18px;
    font-weight: 700;
    color: #212121;
    margin: 0 0 10px;
}

.qodef-custom-why-text {
    font-size: 14px;
    line-height: 24px;
    color: #7f7f7f;
    margin: 0;
}

.qodef-custom-why-cta-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

/* Specific styling for the inner arrow button inside the section */
.qodef-custom-why-cta-box .qodef-btn {
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(178, 221, 76, 0.3);
}

/* Custom Who We Help Section Styling */
.qodef-custom-who-we-help {
    padding: 80px 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.qodef-custom-who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.qodef-custom-who-card {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    padding: 45px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    text-align: center;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qodef-custom-who-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.qodef-custom-who-icon {
    width: 70px;
    height: 70px;
    background-color: #f9fcf5;
    border: 1px solid #e1f2cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.qodef-custom-who-card:hover .qodef-custom-who-icon {
    transform: scale(1.1);
}

.qodef-custom-who-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.qodef-custom-who-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212121;
}

.qodef-custom-who-text {
    font-size: 14px;
    line-height: 24px;
    color: #7f7f7f;
    margin: 0;
}

/* Custom Our Work Section Styling */
.qodef-custom-our-work {
    padding: 80px 0;
    background-color: #ffffff !important;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    
    /* Viewport Breakout to go full bleed/full screen width */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.qodef-custom-our-work-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.qodef-custom-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.qodef-custom-work-card {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    padding: 20px 20px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    text-align: left;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.qodef-custom-work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.qodef-custom-work-img {
    height: 180px;
    background: var(--light-bg-color);
    border: 1px solid #f0f7e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.qodef-custom-work-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qodef-custom-work-img-placeholder i {
    font-size: 48px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.qodef-custom-work-card:hover .qodef-custom-work-img-placeholder i {
    transform: scale(1.15);
}

.qodef-custom-work-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #212121;
    line-height: 22px;
}

.qodef-custom-work-text {
    font-size: 14px;
    line-height: 22px;
    color: #7f7f7f;
    margin: 0 0 20px;
    flex-grow: 1; /* Pushes links to the bottom so they align */
}

.qodef-custom-work-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.qodef-custom-work-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.qodef-custom-work-card:hover .qodef-custom-work-link i {
    transform: translateX(5px);
}

.qodef-custom-work-cta {
    text-align: center;
}

/* Custom About Us Section Styling */
.qodef-custom-about-us {
    margin-top: 0;
    margin-bottom: 0;
    background: var(--light-bg-color); /* Alternate background soft green breakout */
    border-top: 1px solid #f2f9e8;
    border-bottom: 1px solid #f2f9e8;
    padding: 80px 0;
    
    /* Viewport Breakout to go full bleed/full screen width */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.qodef-custom-about-us-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.qodef-custom-about-blocks {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 80px;
}

.qodef-custom-about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.qodef-custom-about-text-col {
    text-align: left;
}

.qodef-custom-about-desc {
    font-size: 20px;
    line-height: 34px;
    color: #444a41;
    font-weight: 500;
    margin: 0;
}

.qodef-custom-about-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qodef-custom-about-img-col img {
    max-width: 100%;
    max-height: 360px;
    width: auto;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f7e6;
    transition: transform 0.3s ease;
}

.qodef-custom-about-block:hover .qodef-custom-about-img-col img {
    transform: scale(1.02);
}

.qodef-custom-about-quoted-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: stretch; /* equal height columns */
}

.qodef-custom-about-quote-content {
    background: #ffffff;
    border-left: 5px solid var(--primary-color);
    padding: 40px;
    border-radius: 0 16px 16px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qodef-custom-about-quote-p {
    font-size: 15px;
    line-height: 25px;
    color: #555555;
    font-style: italic;
    margin: 0;
    font-weight: 500;
}

.qodef-custom-about-highlight-banner {
    background: var(--primary-color);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(178, 221, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qodef-custom-about-highlight-banner h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: none;
    letter-spacing: 0.5px;
}

.qodef-custom-about-cta {
    text-align: center;
    margin-top: 50px;
}

.qodef-custom-about-cta .qodef-btn {
    padding: 18px 40px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(178, 221, 76, 0.3) !important;
    transition: all 0.3s ease !important;
}

.qodef-custom-about-cta .qodef-btn:hover {
    background-color: transparent !important;
    border-color: #212121 !important;
    color: #212121 !important;
    box-shadow: none !important;
}

/* Custom Closing Call to Action Styling */
.qodef-custom-closing-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cta-gradient-start) 0%, var(--cta-gradient-end) 100%);
    border-top: 1px solid #233e16;
    border-bottom: 1px solid #0b1507;
    
    /* Viewport Breakout to go full bleed/full screen width */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    text-align: center;
}

.qodef-custom-closing-cta-inner {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    text-align: center;
}

.qodef-custom-closing-title {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: none;
}

.qodef-custom-closing-text {
    font-size: 17px;
    line-height: 28px;
    color: #cbd6c6;
    margin-bottom: 30px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.qodef-custom-closing-quote-box {
    margin-bottom: 45px;
}

.qodef-custom-closing-quote {
    font-size: 16px;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.qodef-custom-closing-btn-wrap {
    margin-top: 10px;
}

.qodef-custom-closing-btn-wrap .qodef-btn {
    padding: 18px 40px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 25px rgba(178, 221, 76, 0.3) !important;
    transition: all 0.3s ease !important;
}

.qodef-custom-closing-btn-wrap .qodef-btn:hover {
    background-color: transparent !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

/* Responsive adjustments */
@media only screen and (max-width: 1024px) {
    .qodef-custom-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .qodef-custom-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .qodef-custom-services-grid .qodef-custom-service-card:nth-child(n) { grid-column: span 1; }
    .qodef-custom-services-grid .qodef-custom-service-card:nth-child(5) { grid-column: span 2; }
    
    .qodef-custom-why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .qodef-custom-why-choose-us {
        padding: 60px 25px;
    }
    .qodef-custom-why-cta-box {
        height: auto;
        padding: 20px 0 0;
    }

    .qodef-custom-who-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .qodef-custom-work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .qodef-custom-about-block {
        flex-direction: column !important;
        gap: 30px;
    }
    .qodef-custom-about-block.image-left .qodef-custom-about-img-col {
        order: 2;
    }
    
    .qodef-custom-about-quoted-box {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .qodef-custom-services-section {
        padding: 50px 15px;
    }
    .qodef-custom-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .qodef-custom-services-grid .qodef-custom-service-card:nth-child(n) { grid-column: span 1; }
    
    .qodef-custom-cta-title {
        font-size: 20px;
    }

    .qodef-custom-who-we-help {
        padding: 50px 15px 10px;
    }
    .qodef-custom-who-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .qodef-custom-our-work {
        padding: 50px 15px;
    }
    .qodef-custom-work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .qodef-custom-about-us {
        padding: 50px 15px;
    }
    .qodef-custom-about-desc {
        font-size: 15px;
        line-height: 25px;
    }

    .qodef-custom-closing-cta {
        padding: 60px 15px;
    }
    .qodef-custom-closing-title {
        font-size: 28px;
        line-height: 38px;
    }
    .qodef-custom-closing-text {
        font-size: 15px;
        line-height: 24px;
    }
}

/* ---------------------------------------------------------
   Header & Navigation Custom Fixes
   --------------------------------------------------------- */

/* Fix double logo display issue by forcing display: none instead of translation/opacity stack */
.qodef-logo-wrapper a img.qodef-dark-logo,
.qodef-logo-wrapper a img.qodef-light-logo {
    display: none !important;
}

/* Show normal logo as default */
.qodef-logo-wrapper a img.qodef-normal-logo {
    display: inline-block !important;
    opacity: 1 !important;
    transform: none !important;
}

/* If header is light, show light logo and hide normal/dark */
.qodef-light-header .qodef-page-header:not(.qodef-sticky-header-appear) .qodef-logo-wrapper a img.qodef-light-logo {
    display: inline-block !important;
    opacity: 1 !important;
    transform: none !important;
}
.qodef-light-header .qodef-page-header:not(.qodef-sticky-header-appear) .qodef-logo-wrapper a img.qodef-normal-logo,
.qodef-light-header .qodef-page-header:not(.qodef-sticky-header-appear) .qodef-logo-wrapper a img.qodef-dark-logo {
    display: none !important;
}

/* If header is dark, show dark logo and hide normal/light */
.qodef-dark-header .qodef-page-header:not(.qodef-sticky-header-appear) .qodef-logo-wrapper a img.qodef-dark-logo {
    display: inline-block !important;
    opacity: 1 !important;
    transform: none !important;
}
.qodef-dark-header .qodef-page-header:not(.qodef-sticky-header-appear) .qodef-logo-wrapper a img.qodef-normal-logo,
.qodef-dark-header .qodef-page-header:not(.qodef-sticky-header-appear) .qodef-logo-wrapper a img.qodef-light-logo {
    display: none !important;
}

/* Hide sticky header logo completely unless the sticky header is active (appeared on scroll) */
.qodef-page-header .qodef-sticky-holder .qodef-logo-wrapper {
    display: none !important;
}
.qodef-sticky-header-appear .qodef-sticky-holder .qodef-logo-wrapper {
    display: inline-block !important;
}

/* Sticky header overrides */
.qodef-sticky-header-appear .qodef-sticky-holder .qodef-logo-wrapper a img.qodef-normal-logo {
    display: inline-block !important;
    opacity: 1 !important;
    transform: none !important;
}
.qodef-sticky-header-appear .qodef-sticky-holder .qodef-logo-wrapper a img.qodef-dark-logo,
.qodef-sticky-header-appear .qodef-sticky-holder .qodef-logo-wrapper a img.qodef-light-logo {
    display: none !important;
}

/* Custom Nav Highlight Color Override (Home button styled as a clean centered pill button) */
.qodef-main-menu > ul > li.home-menu-item > a span.item_inner {
    background-color: var(--primary-color) !important;
    border-radius: 4px !important;
    padding: 8px 18px !important;
    line-height: 1.2em !important;
    transition: all 0.3s ease !important;
}

.qodef-main-menu > ul > li.home-menu-item > a span.item_text {
    color: #ffffff !important;
}

.qodef-main-menu > ul > li.home-menu-item > a:hover span.item_inner {
    background-color: #92b938 !important;
}

/* Extra small mobile responsive adjustments */
@media only screen and (max-width: 480px) {
    #qodef-home-main-slider .qodef-static-slider-content-inner h2.qodef-slide-title {
        font-size: 22px !important;
        line-height: 28px !important;
    }
    #qodef-home-main-slider .qodef-static-slider-content-inner h3.qodef-slide-text {
        font-size: 13px !important;
        line-height: 18px !important;
    }
    #qodef-home-main-slider .qodef-static-slider-content-inner h3.qodef-slide-subtitle {
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
    .qodef-custom-section-title {
        font-size: 24px !important;
    }
    .qodef-custom-closing-title {
        font-size: 24px !important;
        line-height: 32px !important;
    }
    .qodef-custom-services-cta, .qodef-custom-why-choose-us, .qodef-custom-who-we-help, .qodef-custom-our-work, .qodef-custom-closing-cta {
        padding: 40px 15px !important;
    }
}

/* ---------------------------------------------------------
   Custom Contact Consultation Page Layout Styling
   --------------------------------------------------------- */
.qodef-custom-contact-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.qodef-custom-contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* Form Section Styling */
.qodef-custom-contact-form-title {
    font-size: 32px;
    font-weight: 700;
    color: #212121;
    margin: 0 0 12px;
    text-align: left;
}

.qodef-custom-contact-form-intro {
    font-size: 15px;
    line-height: 24px;
    color: #666666;
    margin: 0 0 35px;
    text-align: left;
}

.qodef-custom-contact-form {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.qodef-custom-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.qodef-custom-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    text-align: left;
}

.qodef-custom-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #444444;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qodef-custom-form-group label span.required {
    color: var(--primary-color);
}

.qodef-custom-form-group input[type="text"],
.qodef-custom-form-group input[type="email"],
.qodef-custom-form-group input[type="tel"],
.qodef-custom-form-group select,
.qodef-custom-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fbfbfb;
    font-size: 14px;
    color: #333333;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.qodef-custom-form-group input:focus,
.qodef-custom-form-group select:focus,
.qodef-custom-form-group textarea:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(178, 221, 76, 0.15);
}

.qodef-custom-form-group textarea {
    resize: vertical;
}

/* Conditional call scheduling fields block */
.qodef-custom-conditional-fields {
    background: #fbfdf8;
    border: 1px solid #edf8e1;
    border-radius: 12px;
    padding: 20px 20px 0;
    margin-bottom: 25px;
}

/* Notices section */
.qodef-custom-form-notices {
    background: #fafdf5;
    border-left: 3px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
    text-align: left;
}

.qodef-custom-form-notices p.notice-item {
    font-size: 13px;
    line-height: 20px;
    color: #555555;
    margin: 0;
}

.qodef-custom-form-notices p.notice-item:first-child {
    margin-bottom: 6px;
}

.qodef-custom-form-notices p.notice-item i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Submit and caption */
.qodef-custom-form-submit-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.qodef-custom-form-submit-group button {
    border: none;
    cursor: pointer;
}

.qodef-custom-form-submit-group button.qodef-btn {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    padding: 12px 28px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(178, 221, 76, 0.3) !important;
    height: auto !important;
    line-height: 1.5em !important;
    transition: all 0.3s ease !important;
}

.qodef-custom-form-submit-group button.qodef-btn:hover {
    background-color: #92b938 !important;
    border-color: #92b938 !important;
    box-shadow: 0 6px 20px rgba(146, 185, 56, 0.4) !important;
}

.qodef-custom-form-submit-group .submit-caption {
    font-size: 12px;
    color: #888888;
    margin: 0;
}

/* Feedback message container */
.qodef-custom-form-feedback {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

.qodef-custom-form-feedback.success {
    background: #e6f6e6;
    color: #2b752b;
    border: 1px solid #c9ecc9;
}

.qodef-custom-form-feedback.error {
    background: #fdf2f2;
    color: #9b2c2c;
    border: 1px solid #fbd5d5;
}

/* Right Column Contact Info Cards */
.qodef-custom-contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 100px;
}

.qodef-custom-info-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
}

.qodef-custom-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-bg-color);
    border: 1px solid #e1f2cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.qodef-custom-info-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.qodef-custom-info-content {
    text-align: left;
}

.qodef-custom-info-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #212121;
    margin: 0 0 6px;
}

.qodef-custom-info-content p {
    font-size: 14px;
    line-height: 22px;
    color: #7f7f7f;
    margin: 0;
}

/* Responsive query layout adjustments */
@media only screen and (max-width: 991px) {
    .qodef-custom-contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .qodef-custom-contact-info-col {
        padding-top: 0;
    }
}

@media only screen and (max-width: 768px) {
    .qodef-custom-contact-form {
        padding: 30px 20px;
    }
    .qodef-custom-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Custom logo dimensions for tall aspect ratio logo */
.qodef-page-header .qodef-logo-wrapper {
    padding-left: 20px !important;
}

.qodef-page-header .qodef-logo-wrapper a {
    height: 70px !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.qodef-page-header .qodef-logo-wrapper a img {
    max-height: 70px !important;
    height: 70px !important;
    width: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    transform: none !important;
    transition: all 0.3s ease !important;
}

/* Sticky Header Logo Sizing */
.qodef-page-header .qodef-sticky-header .qodef-logo-wrapper a {
    height: 46px !important;
}

.qodef-page-header .qodef-sticky-header .qodef-logo-wrapper a img {
    max-height: 46px !important;
    height: 46px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    transform: none !important;
}

/* Mobile Header Logo Sizing */
.qodef-mobile-header .qodef-mobile-logo-wrapper a {
    height: 52px !important;
    display: inline-block !important;
}

.qodef-mobile-header .qodef-mobile-logo-wrapper a img {
    max-height: 52px !important;
    height: 52px !important;
    width: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    transform: none !important;
}


/* ---------------------------------------------------------
   IoT Solutions Page Styles
   --------------------------------------------------------- */

/* Reset styles for service cards when rendered as link tags */
a.qodef-custom-service-card {
    text-decoration: none !important;
    color: inherit !important;
}

/* Global Page Layout Container */
.qodef-iot-page-wrapper {
    font-family: 'Open Sans', sans-serif;
    color: #555555;
    line-height: 1.7;
    background-color: #ffffff;
}

.qodef-iot-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing & Background Tones */
.qodef-iot-section {
    padding: 90px 0;
}

.qodef-iot-dark-bg-1 {
    background-color: #ffffff;
}

.qodef-iot-dark-bg-2 {
    background-color: #181818;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

/* Section Title */
.qodef-iot-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 15px;
}

.qodef-iot-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #98d038;
}

.qodef-iot-section-title-center {
    font-size: 32px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.qodef-iot-section-title-center::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #98d038;
}

/* 1. Hero Section */
.qodef-iot-hero {
    position: relative;
    background: #ffffff;
    padding: 160px 0 120px 0;
    color: #222222;
    text-align: center;
}

.qodef-iot-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.qodef-iot-tag {
    display: inline-block;
    color: #98d038;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.qodef-iot-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #222222;
    line-height: 1.2;
    margin-bottom: 20px;
}

.qodef-iot-hero-subtitle {
    font-size: 19px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 300;
}

.qodef-iot-hero-actions {
    display: flex;
    justify-content: center;
}

/* 2. Intro Section */
.qodef-iot-eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: #98d038;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.qodef-iot-intro-title {
    font-size: 28px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.qodef-iot-intro-p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 0;
}

.qodef-iot-intro-value-card {
    background: #fbfbfb;
    border: 1px solid #f2f2f2;
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    position: relative;
    border-left: 4px solid #98d038;
}

.qodef-iot-value-icon {
    font-size: 32px;
    color: #98d038;
    margin-bottom: 15px;
    line-height: 1;
}

.qodef-iot-intro-value-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 8px;
}

.qodef-iot-intro-value-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 3. Fit and Focus Split Columns */
.qodef-iot-fit-section {
    background-color: #ffffff;
}

.qodef-iot-grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.qodef-iot-desc-paragraph {
    font-size: 16px;
    margin-bottom: 18px;
    color: #666666;
}

.qodef-iot-callout-card {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    padding: 45px 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.qodef-iot-callout-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #98d038;
}

.qodef-iot-callout-icon {
    font-size: 40px;
    color: #98d038;
    line-height: 1;
}

.qodef-iot-callout-keyline {
    font-size: 18px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0;
    line-height: 1.5;
}

/* 4 & 5. What We Build & Where It Helps Split */
.qodef-iot-grid-two-col-uneven {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
}

.qodef-iot-build-list {
    list-style: none;
    padding-left: 0;
    margin: 30px 0 0 0;
}

.qodef-iot-build-list li {
    font-size: 17px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 3px solid #eee;
    transition: all 0.3s ease;
}

.qodef-iot-build-list li:hover {
    border-left-color: #98d038;
    background: #f5f8f2;
    transform: translateX(5px);
}

.qodef-iot-list-icon {
    color: #98d038;
    font-size: 18px;
}

.qodef-iot-help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
}

.qodef-iot-help-card {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    border-radius: 8px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.01);
}

.qodef-iot-help-card:hover {
    background: #ffffff;
    border-color: #98d038;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.qodef-iot-help-icon {
    font-size: 28px;
    color: #98d038;
    margin-bottom: 15px;
    line-height: 1;
}

.qodef-iot-help-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 8px;
}

.qodef-iot-help-card p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 0;
}

/* 6. Our Approach Timeline (Dark/Creative Contrast Section) */
.qodef-iot-approach-section {
    background-color: #111111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.qodef-iot-approach-section .qodef-iot-section-title-center {
    color: #ffffff;
}

.qodef-iot-approach-pipeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.qodef-iot-approach-pipeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 45px;
    width: 2px;
    height: 100%;
    background: #222;
    z-index: 1;
}

.qodef-iot-approach-step {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    position: relative;
    z-index: 2;
}

.qodef-iot-step-number {
    width: 92px;
    height: 92px;
    background: #111111;
    border: 3px solid #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: #98d038;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.qodef-iot-approach-step:hover .qodef-iot-step-number {
    border-color: #98d038;
    background: #98d038;
    color: #111111;
    box-shadow: 0 8px 20px rgba(152, 208, 56, 0.3);
}

.qodef-iot-step-content {
    background: #181818;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 25px 30px;
    flex-grow: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.qodef-iot-approach-step:hover .qodef-iot-step-content {
    border-color: #333;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.qodef-iot-step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.qodef-iot-step-content p {
    font-size: 15px;
    color: #a0a0a0;
    margin-bottom: 0;
}

/* 7. Why It Matters */
.qodef-iot-matters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.qodef-iot-matters-card {
    background: #ffffff;
    border-top: 3px solid #98d038;
    border-radius: 6px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}

.qodef-iot-matters-icon {
    font-size: 36px;
    color: #98d038;
    margin-bottom: 20px;
    line-height: 1;
}

.qodef-iot-matters-card p {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0;
    line-height: 1.6;
}

/* 8. Bottom CTA Banner (Dark Gradient) */
.qodef-iot-cta-banner {
    position: relative;
    background: linear-gradient(135deg, #1b2810 0%, #111111 100%);
    padding: 100px 0;
    color: #fff;
    text-align: center;
    border-top: 1px solid #222;
}

.qodef-iot-cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.qodef-iot-cta-banner h2 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
}

.qodef-iot-cta-desc {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 15px;
    font-weight: 300;
}

.qodef-iot-cta-trust {
    font-size: 16px;
    color: #98d038;
    margin-bottom: 35px;
    font-weight: 600;
}

.qodef-iot-cta-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.qodef-iot-cta-highlight {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 0;
}

.qodef-iot-cta-highlight i {
    color: #98d038;
    margin-right: 5px;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 991px) {
    .qodef-iot-grid-two-col,
    .qodef-iot-grid-two-col-uneven {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .qodef-iot-help-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 767px) {
    .qodef-iot-section {
        padding: 60px 0;
    }
    
    .qodef-iot-section-title,
    .qodef-iot-section-title-center {
        font-size: 26px;
    }
    
    .qodef-iot-intro-box {
        padding: 30px 20px;
    }
    
    .qodef-iot-intro-text {
        font-size: 18px;
    }
    
    .qodef-iot-callout-card {
        padding: 30px 20px;
    }
    
    .qodef-iot-help-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .qodef-iot-approach-pipeline::before {
        left: 25px;
    }
    
    .qodef-iot-approach-step {
        gap: 20px;
    }
    
    .qodef-iot-step-number {
        width: 54px;
        height: 54px;
        font-size: 18px;
    }
    
    .qodef-iot-step-content {
        padding: 20px;
    }
    
    .qodef-iot-matters-grid {
        grid-template-columns: 1fr;
    }
    
    .qodef-iot-cta-banner {
        padding: 70px 0;
    }
    
    .qodef-iot-cta-banner h2 {
        font-size: 26px;
    }
}

/* ---------------------------------------------------------
   Mobile App, Custom App, & Web Dev Pages - Layout Rules
   --------------------------------------------------------- */

.page-id-7187 .qodef-iot-help-grid-3-col,
.page-id-7188 .qodef-iot-help-grid-3-col,
.page-id-7189 .qodef-iot-help-grid-3-col,
.page-id-7190 .qodef-iot-help-grid-3-col {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media screen and (max-width: 991px) {
    .page-id-7187 .qodef-iot-help-grid-3-col,
    .page-id-7188 .qodef-iot-help-grid-3-col,
    .page-id-7189 .qodef-iot-help-grid-3-col,
    .page-id-7190 .qodef-iot-help-grid-3-col {
        grid-template-columns: 1fr !important;
    }
}
/* Hide default theme title area for custom templates */

/* ---------------------------------------------------------
   Custom Hero Section Styling
   --------------------------------------------------------- */
.qodef-iot-hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 190px 0 130px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.qodef-iot-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.65);
    z-index: 1;
}

.qodef-iot-hero-container {
    position: relative;
    z-index: 2;
}

.qodef-iot-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.qodef-iot-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff !important;
    line-height: 1.25;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0px;
}

.qodef-iot-hero-subtitle {
    font-size: 19px;
    color: #f2f2f2;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 300;
}

.qodef-iot-hero-actions {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .qodef-iot-hero {
        padding: 140px 0 80px 0;
        min-height: 380px;
    }
    .qodef-iot-hero-title {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }
    .qodef-iot-hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
}

/* Homepage compact About Us 3-column cards grid layout styling */
.qodef-custom-about-columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
    .qodef-custom-about-columns-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }
}

.qodef-custom-about-quotes-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 20px 0 0 0;
    border-top: 1px solid #f2f2f2;
    padding-top: 20px;
    line-height: 1.5;
    text-transform: none;
}

