/*
Theme Name: astute
Author: Reese Woodginski
Author URI: https://rw-webdevelopment.com
Description: Astute Logistics custom theme
Tags: one-column, custom-logo, custom-menu, editor-style, footer-widgets, full-width-template
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ast
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Noto Sans", sans-serif;
            line-height: 1.6;
            color: #333;
        }

/* Header */
.site-header {
    width: 100%;
    display: flex;
    justify-content: center;
}

.header-inner {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#mega-menu-wrap-main-nav #mega-menu-main-nav.mega-menu-horizontal > .mega-menu-item .mega-menu-link{transition: color 0.3s ease-in-out; padding: 0;}
#mega-menu-wrap-main-nav #mega-menu-main-nav.mega-menu-horizontal > .mega-menu-item:not(:last-child) {
    margin-right: 24px;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-stack {
    position: relative;
    width: 180px;
    height: 90px;
    display: grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
}

.polygon-left {
    grid-area: 1 / 1;
    width: 45px;
    height: 90px;
}

.logo-main {
    grid-area: 1 / 1;
    width: 90px;
    height: 90px;
    margin-left: 45px;
    object-fit: cover;
    object-position: 50% 50%;
}

.polygon-right {
    grid-area: 1 / 1;
    width: 45px;
    height: 90px;
    margin-left: 135px;
    transform: rotate(180deg);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 16px;
    font-weight: 600;
    color: #666666;
    padding: 20px 0;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
}

.lang-selector {
    font-size: 13.3px;
    color: #666666;
    text-decoration: underline;
    padding: 8px 0;
}

.btn-quote {
    background-color: #1E3A8A;
    color: white;
    font-size: 13.3px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    min-width: 109.52px;
    text-align: center;
}

.btn-quote:hover {
    background-color: #1e40af;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 640px;
    background-color: #f8fafc;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(278deg, rgba(30, 58, 138, 0.00) 30.45%, rgba(30, 58, 138, 0.95) 73.37%);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    padding: 109px 0 40px 0;
}

.hero-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    margin: 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 61.6px;
    margin: 0 0 24px 0;
    max-width: 568px;
}

.hero-title-line1 {
    display: block;
    color: white;
}

.hero-title-line2 {
    display: block;
    color: #fbbf24;
}

.hero-text {
    font-size: 17.6px;
    line-height: 28.16px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 24px 0;
    max-width: 568px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: #f97316;
    color: white;
    font-size: 13.3px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: #ea580c;
}

.btn-secondary {
    background-color: white;
    color: #1E3A8A;
    font-size: 13.3px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
}

.btn-secondary:hover {
    background-color: #f1f5f9;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Card */
.card {
    background: white;
    box-shadow: 0px 4px 6px -1px rgba(0,0,0,0.1), 0px 2px 4px -2px rgba(0,0,0,0.1);
    border-radius: 14px;
}

/* Services Section */
.services{padding: 42px 0 48px;}
.services .section-title, .services .section-subtitle {
    text-align: center;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 64px;
    color: #1E3A8A;
    margin: 0;
}

.section-subtitle {
    font-size: 16px;
    line-height: 25.6px;
    color: #666666;
    margin: 0;
}

.services-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    padding-top: 32px;
}

.service-card {
    position: relative;
    flex: 1;
    max-width: 378px;
    padding: 32px;
    overflow: hidden;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 38.4px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    margin-bottom: 16px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: white !important;
}

.service-icon svg path {
    fill: white !important;
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #DC2626 0%, #F97316 100%);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    color: #1E3A8A;
    margin: 0 0 8px 0;
}

.service-description {
    font-size: 16px;
    line-height: 25.6px;
    color: #666666;
    margin: 0 0 24px 0;
}

.service-link {
    font-size: 16px;
    font-weight: 600;
    line-height: 25.6px;
    color: #1E3A8A;
    text-decoration: none;
    display: inline-block;
}

.service-link:hover {
    text-decoration: underline;
}

.card-decoration {
    position: absolute;
    pointer-events: none;
}

.card-decoration-1 {
    width: 107px;
    height: 76px;
    right: -35px;
    top: -35px;
    transform: rotate(341.195deg);
}

.card-decoration-2 {
    width: 113px;
    height: 64px;
    right: -30px;
    top: -30px;
    transform: rotate(36.38deg);
}

.card-decoration-3 {
    width: 84px;
    height: 92px;
    right: -18px;
    top: -18px;
    transform: rotate(50.338deg);
}

/* Contact Section */
.contact-section {
    background-color: #f8fafc;
    padding: 36px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 24px;
}

.contact-intro {
    font-size: 17.5px;
    line-height: 24.5px;
    color: #4a5565;
    margin: 10px 0 0 0;
}

.contact-content {
    display: flex;
    gap: 24px;
}

/* Contact Form */
.contact-form-wrapper {
    flex: 1;
    padding: 35px;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cf7-row {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
}

.cf7-row > *:not(.cf7-col-half) {
    flex: 1 1 100%;
}

.cf7-col-half {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.wpcf7-form label {
    font-size: 14px;
    font-weight: 600;
    color: #1E3A8A;
    line-height: 21px;
    order: -1;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    background-color: #f3f3f5;
    border: 2px solid #e5e7eb;
    border-radius: 8.75px;
    padding: 16px;
    font-size: 12.3px;
    color: #717182;
    font-family: "Noto Sans", sans-serif;
    width: 100%;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select {
    height: 49px;
}

.wpcf7-form textarea {
    min-height: 126px;
    resize: vertical;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #1E3A8A;
}

.wpcf7-form select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 14 14"><path fill="%23717182" d="M7 10l-5-5h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.wpcf7-form input[type="submit"] {
    background-color: #f97316;
    color: white;
    font-size: 15.8px;
    font-weight: 600;
    padding: 14.75px 42px 16.25px;
    border: none;
    border-radius: 8.75px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1), 0px 4px 6px -4px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 56px;
    margin-top: 21px;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #ea580c;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 300px;
}

.contact-card {
    padding: 28px;
    text-align: center;
    flex: 1;
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    line-height: 28px;
    margin: 0 auto 10px;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
}
.contact-card-icon-blue svg{transform: rotate(40deg);}
.contact-card-icon-blue svg,
.contact-card-icon-blue svg path, .contact-card-icon-orange svg,
.contact-card-icon-orange svg path {
    fill: white !important;
}


.contact-card-icon-blue {
    background-color: #1E3A8A;
}

.contact-card-icon-orange {
    background-color: #f97316;
}

.contact-card-title {
    font-size: 17.5px;
    font-weight: 600;
    line-height: 24.5px;
    color: #1E3A8A;
    margin: 0 0 7px 0;
}

.contact-card-text {
    font-size: 14px;
    line-height: 21px;
    color: #4a5565;
    margin: 0;
}

.contact-card-subtext {
    font-size: 12.3px;
    line-height: 17.5px;
    color: #6a7282;
    margin: 3px 0 0 0;
}

/* Layout: Side-by-Side (form left, cards right) */
.contact-layout-side .contact-content {
    flex-direction: row;
}

.contact-layout-side .contact-cards {
    flex-direction: column;
}

/* Layout: Stacked (form top, cards bottom in 2-col grid) */
.contact-layout-stacked .contact-content {
    flex-direction: column;
}

.contact-layout-stacked .contact-form-wrapper {
    width: 100%;
}

.contact-layout-stacked .contact-cards {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-layout-stacked .contact-card:last-child {
    grid-column: 1 / -1;
}

/* Services Hero */
.services-hero {
    position: relative;
    width: 100%;
    min-height: 540px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 30% 100%, 0 90%);
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(278deg, rgba(30, 58, 138, 0.00) 30.39%, rgba(30, 58, 138, 0.98) 57.12%);
}

.services-hero-content {
    position: relative;
    padding: 112px 0 40px 0;
    z-index: 1;
}

.services-hero-heading {
    margin-bottom: 24px;
}

.services-hero .hero-title, .contact-hero .hero-title {
    font-size: 46px;
    color: #ff6900;
}
.serv-hero-wrap, .about-wrap{background: #f8fafc;}

/* Contact Hero */
.contact-hero {
    position: relative;
    width: 100%;
    min-height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 58, 138, 0.65);
}

.contact-hero .hero-content {
    padding: 61px 0;
    text-align: center;
}
.contact-hero h1{max-width: none;}
/* Services Detailed Section */
.services-detailed {
    position: relative;
    background-color: #f8fafc;
    padding: 48px 0;
    overflow: hidden;
}

.services-detailed-header {
    text-align: center;
    margin-bottom: 36px;
}

.services-detailed-subtitle {
    font-size: 18px;
    line-height: 28.8px;
    color: #666666;
    margin: 6px 0 0 0;
}

.services-detailed-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.service-detail-card {
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-detail-card-full {
    grid-column: 1 / -1;
    max-width: 592px;
    margin: 0 auto;
    width: 100%;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background-color: #1c398e;
    border-radius: 12.75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 700;
    line-height: 51.2px;
    color: white;
}

.service-detail-icon svg {
    width: 40px;
    height: 40px;
    fill: white !important;
}

.service-detail-icon svg path {
    fill: white !important;
}

.service-detail-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    color: #1c398e;
    margin: 0;
}

.service-detail-description {
    flex: 1;
}

.service-detail-description p {
    font-size: 16px;
    line-height: 25.6px;
    color: #666666;
    margin: 0 0 12px 0;
}

.service-detail-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-description li {
    font-size: 16px;
    line-height: 25.6px;
    color: #666666;
    padding-left: 16px;
    position: relative;
}

.service-detail-description li::before {
    content: '·';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.service-detail-btn {
    background-color: #ff6900;
    color: white;
    font-size: 13.3px;
    font-weight: 400;
    padding: 10.5px 21px;
    border-radius: 6.75px;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
}

.service-detail-btn:hover {
    background-color: #e55d00;
}

.service-detail-decoration {
    position: absolute;
    right: -30px;
    top: -51.5px;
    width: 107.69px;
    height: 76.345px;
    transform: rotate(341.195deg);
    pointer-events: none;
}

/* Industries Section */
.industries {
    padding: 42px 0 48px;
}

.industries-header {
    text-align: center;
    margin-bottom: 32px;
}

.industries-subtitle {
    font-size: 18px;
    line-height: 28.8px;
    color: #666666;
    margin: 6px 0 0 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
}

.industry-card {
    grid-column: span 2;
}

.industries-grid .industry-card:nth-child(4) {
    grid-column: 2 / 4;
}

.industries-grid .industry-card:nth-child(5) {
    grid-column: 4 / 6;
}

.industry-card, .about-body-list {
    position: relative;
    padding: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 100%;
}

.industry-icon {
    width: 60px;
    height: 60px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF6900;
    border-radius: 12px;
    padding: 12px;
}

.industry-icon svg {
    width: 100%;
    height: 100%;
    fill: white !important;
}

.industry-icon svg path {
    fill: white !important;
}

.industry-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #1E3A8A;
    margin: 0;
}

.industry-description {
    font-size: 16px;
    line-height: 25.6px;
    color: #666666;
    margin: 0;
}

.industry-decoration {
    position: absolute;
    right: -58.48px;
    top: -58.48px;
    width: 117px;
    height: 117px;
    pointer-events: none;
}

/* About us */
.about-hero {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 60% 100%, 0 90%);
    background-position: center 40%;
}
.about-hero .hero-content {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    padding: 40px 0;
}
.about-hero::before {
    background-image: none;
    background: #1E3A8A;
    opacity: 60%;
}
.about-body{padding-top: 48px;}
.about-us-half{display: flex; gap: 64px; align-items: center;}
.about-body-writing{width: 50%; display: flex; flex-direction: column;}
.about-body-list{width: 50%; padding: 32px;}
.about-body-writing h2{color: #1E3A8A;
font-size: 42px;
font-style: normal;
font-weight: 700;}
.about-body-writing p, .about-body-list li{color: #666;
font-size: 16px;
font-weight: 400; margin-bottom: 6px;}
.about-body-writing h2, .about-body-writing p{margin-bottom: 12px;}
.about-body-list h3{
font-weight: 600;
font-size: 22px;
line-height: 134%;
color: #1E3A8A;
}
.about-body-list ul{list-style-position: inside;}
/* end about us */

/* Footer */
.site-footer {
    background-color: #1E3A8A;
    padding: 52px 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    gap: 36px;
    align-items: center;
    max-width: 565px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    width: 125px;
    height: 125px;
}

.footer-description {
    font-size: 16px;
    line-height: 25.6px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.footer-right {
    display: flex;
    gap: 48px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    line-height: 25.6px;
    color: white;
    margin: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
    line-height: 22px;
    color: rgba(255,255,255,0.8);
}

.footer-list a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer-list a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 16px;
    line-height: 25.6px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* section add on homepage process */
        .process-section {
            background-color: #F8FAFC;
            padding: 80px 20px 10px;
        }
        .process-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 30px;
            margin-top: 50px;
        }
        .process-cta-cont{text-align: center; margin-top: 36px;}
.process-heading{text-align: center;}
        .process-card {
            background: white;
            border-radius: 16px;
            padding: 40px 28px 32px;
            position: relative;
            box-shadow: 0 4px 6px rgba(30, 58, 138, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            overflow: hidden;
        }

        .process-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px rgba(30, 58, 138, 0.12), 0 10px 10px rgba(0, 0, 0, 0.04);
            border-color: #1E3A8A;
        }

        /* Decorative corner accent */
        .process-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, transparent 50%, #EEF2FF 50%);
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .process-card:hover::before {
            width: 100px;
            height: 100px;
            opacity: 1;
        }

        /* Decorative dot pattern in corner */
        .process-card::after {
            content: '';
            position: absolute;
            top: 12px;
            right: 12px;
            width: 6px;
            height: 6px;
            background: #1E3A8A;
            border-radius: 50%;
            box-shadow: 
                12px 0 0 #1E3A8A,
                0 12px 0 #1E3A8A,
                12px 12px 0 #1E3A8A;
            opacity: 0.2;
            transition: all 0.3s ease;
        }

        .process-card:hover::after {
            opacity: 0.4;
        }

        .step-number {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #1E3A8A 0%, #1E3A8A 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            color: white;
            box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
            margin: 0 auto 24px;
            position: relative;
            z-index: 1;
        }

        .process-card h3 {
            font-size: 20px;
            color: #1e293b;
            margin-bottom: 12px;
            font-weight: 600;
            text-align: center;
        }

        .process-card p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.6;
            text-align: center;
        }

@media (max-width: 1100px) {
    .process-grid {
  grid-template-columns: 1fr 1fr 1fr;}
.services-hero::before{background: linear-gradient(278deg, rgba(30, 58, 138, 0.00) 15.39%, rgba(30, 58, 138, 0.98) 42.12%);}
.about-hero::before {
    background: #1E3A8A;
    opacity: 60%;
}
.hero-gradient{background: linear-gradient(278deg, rgba(30, 58, 138, 0.00) 20.45%, rgba(30, 58, 138, 0.95) 63.37%);}
}
/* Responsive */
@media (max-width: 900px) {
    .process-grid {
  grid-template-columns: 1fr 1fr;}
    .contact-layout-side .contact-content{flex-direction: column;}
    .contact-layout-side .contact-cards{width: 100%;}
    .services-hero::before{background: linear-gradient(278deg, rgba(30, 58, 138, 0.00) 5.39%, rgba(30, 58, 138, 0.98) 32.12%);}
.about-hero::before {
    background: #1E3A8A;
    opacity: 60%;
}
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-card {
        grid-column: span 1;
    }

    .industries-grid .industry-card:nth-child(4),
    .industries-grid .industry-card:nth-child(5) {
        grid-column: span 1;
    }

    .industries-grid .industry-card:nth-child(5) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
.process-grid {
  grid-template-columns: 1fr;}
            .process-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .process-section {
                padding: 60px 20px;
            }
      .hero-gradient {
    background: rgba(30, 58, 138, 0.75)
  }
    .services-hero::before{background: rgba(30, 58, 138, 0.85);}
    .header-inner {
        gap: 20px;
        padding: 0 20px;
    }

    .header-actions {
        display: none;
    }

    .logo-stack {
        width: 120px;
        height: 60px;
    }

    .polygon-left {
        width: 30px;
        height: 60px;
    }

    .logo-main {
        width: 60px;
        height: 60px;
        margin-left: 30px;
    }

    .polygon-right {
        width: 30px;
        height: 60px;
        margin-left: 90px;
    }

    .hero {
        height: auto;
        min-height: 500px;
    }
.hero-wave{left: -14%; width: 170%;}
    .hero-content {
    padding: 60px 0 170px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 42px;
    }

    .hero-text {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        text-align: center;
    }

    .services-grid {
        flex-direction: column;
        gap: 24px;
    }

    .service-card {
        max-width: 100%;
    }

    .section-title {
        font-size: 32px;
        line-height: 48px;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 22px;
    }

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

    .contact-cards {
        width: 100%;
    }

    .contact-layout-side .contact-cards {
        flex-direction: column;
    }

    .contact-layout-stacked .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-layout-stacked .contact-card:last-child {
        grid-column: auto;
    }

    .cf7-row {
        flex-direction: column;
        gap: 28px;
    }

    .contact-intro br {
        display: none;
    }

    .services-hero {
        height: auto;
        min-height: 400px;
    }

    .services-hero-content {
        padding: 60px 0 70px 0;
    }

    .services-hero .hero-title {
        font-size: 36px;
    }

    .services-hero .hero-text {
        font-size: 16px;
        line-height: 24px;
    }

    .services-hero .hero-text br {
        display: none;
    }

    .contact-hero {
        min-height: 150px;
    }

    .contact-hero .hero-content {
        padding: 40px 0;
    }

    .contact-hero .hero-title {
        font-size: 32px;
    }

    .about-hero .hero-content {
        padding: 60px 0;
    }

    .about-us-half {
        flex-direction: column;
        gap: 32px;
    }

    .about-body-writing, .about-body-list {
        width: 100%;
    }

    .contact-content {
        flex-direction: column;
        gap: 32px;
    }

    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card-full {
        max-width: 100%;
    }

    .services-detailed-subtitle br {
        display: none;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card,
    .industries-grid .industry-card:nth-child(4),
    .industries-grid .industry-card:nth-child(5) {
        grid-column: span 1;
    }

    .industries-subtitle br {
        display: none;
    }

    .industry-title br {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-left {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }

    .footer-column {
        text-align: center;
    }

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