.elementor-128 .elementor-element.elementor-element-daf5daf{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-daf5daf *//* ===== 1. GLOBAL STYLES & VARIABLES ===== */
/* These should be the same as your homepage CSS */

:root {
    --color-primary: #003366;
    --color-secondary: #005A9C;
    --color-accent: #E65100;
    --color-accent-dark: #c44500;
    --color-text-dark: #212529;
    --color-text-light: #f8f9fa;
    --color-bg-light: #FFFFFF;
    --color-bg-medium: #f4f7f6;
    --color-border: #dee2e6;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Lato', sans-serif;
}

/* Base setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container for centering content */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base for all sections (Full-width backgrounds) */
section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

/* Reusable CTA Buttons */
.cta-button {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.cta-button.secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}
.cta-button.secondary:hover {
    background-color: #fff;
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Reusable Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-primary);
}
.section-title.light-text {
    color: var(--color-bg-light);
}

/* ===== 2. SERVICES HERO SECTION ===== */
.services-hero-section {
    min-height: 40vh;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}
.services-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 33, 66, 0.8);
    z-index: 1;
}
.services-hero-section .hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-bg-light);
    max-width: 800px;
}
.services-hero-section .hero-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}
.services-hero-section .hero-subheadline {
    font-size: 1.2rem;
    font-weight: 400;
}

/* ===== 3. SERVICES DETAIL SECTION ===== */
.services-detail-section {
    background-color: var(--color-bg-light);
    padding-top: 40px; /* Less padding on top */
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-item .service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-detail-item .service-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.service-detail-item .service-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.service-detail-item .service-summary {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
}

.service-detail-item .features-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 5px;
    display: inline-block;
}

.service-detail-item .features-list {
    list-style: none;
    padding-left: 0;
}

.service-detail-item .features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5;
}

.service-detail-item .features-list li i {
    color: var(--color-accent);
    margin-right: 10px;
    margin-top: 4px;
}

/* Alternating layout for even-numbered items */
.service-detail-item.alt-layout .service-detail-image {
    order: 2; /* Moves image to the right */
}
.service-detail-item.alt-layout .service-detail-content {
    order: 1; /* Moves content to the left */
}

/* ===== 4. CALL TO ACTION SECTION ===== */
.cta-section {
    padding: 80px 0;
    text-align: center;
}
.section-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}
.section-overlay-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 33, 66, 0.92);
    z-index: 2;
}
.cta-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}
.cta-section .section-title {
    margin-bottom: 20px;
}
.cta-description {
    font-size: 1.1rem;
    color: var(--color-bg-light);
    margin-bottom: 30px;
}
.cta-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.cta-email-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-bg-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.cta-email-phone:hover {
    color: var(--color-accent);
}

/* ===== 5. RESPONSIVE DESIGN ===== */

/* For Tablets (<= 992px) */
@media (max-width: 992px) {
    .service-detail-item,
    .service-detail-item.alt-layout {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 30px;
    }
    
    .service-detail-item .service-detail-image,
    .service-detail-item.alt-layout .service-detail-image {
        order: -1; /* Move image to the top */
    }

    .service-detail-item .service-detail-content,
    .service-detail-item.alt-layout .service-detail-content {
        order: 2;
    }
}

/* For Mobile Phones (<= 576px) */
@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }

    .services-hero-section {
        min-height: 30vh;
        padding: 40px 0;
    }
    .services-hero-section .hero-headline {
        font-size: 2.2rem;
    }
    .services-hero-section .hero-subheadline {
        font-size: 1rem;
    }

    .service-detail-item {
        margin-bottom: 60px;
    }
    .service-detail-item .service-title {
        font-size: 1.8rem;
    }

    .cta-contacts {
        flex-direction: column;
        gap: 15px;
    }
}/* End custom CSS */