:root {
    --blue: #0054a6;
    --red: #E13D3A;
    --dark: #0f172a;
    --white: #ffffff;
    --light-gray: #f4f7fa;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* HEADER & NAV */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 85px;
    display: flex;
    align-items: center;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo-img {
    height: 45px;
}

.logo-text h2 {
    color: var(--blue);
    font-size: 1.2rem;
}

.logo-text span {
    color: var(--red);
}

.logo-text small {
    display: block;
    letter-spacing: 2px;
    font-size: 0.6rem;
    color: #666;
}

.menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.menu a:hover, .menu a.active {
    color: var(--blue);
}

/* MOBILE MENU LOGIC */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .menu.active {
        display: flex;
    }

    .flex-row {
        flex-direction: column;
        text-align: center;
    }
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    display: none;
    list-style: none;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    padding: 8px 15px;
    display: block;
}

/* BANNER */
.page-banner {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
        url('https://images.unsplash.com/photo-1513828583688-c52646db42da?q=80&w=2070') center/cover;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-banner h1 {
    font-size: clamp(2rem, 5vw, 2rem);
    margin-top: 10px;
}

.eyebrow {
    color: var(--red);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

/* ABOUT DETAIL */
.about-detail {
    padding: 80px 0;
}

.flex-row {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.section-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.about-visual {
    flex: 0.8;
    position: relative;
}

.about-visual img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 15px 15px 0 var(--blue);
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: var(--red);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge span {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
}

.experience-badge p {
    font-size: 0.7rem;
}

/* MISSION SECTION */
.mission-section {
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 60px 0;
    border-radius: 30px;
    margin: 60px auto;
    width: 95%;
    color: white;
}

.mission-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mission-header i {
    font-size: 2rem;
    color: var(--red);
}

.mission-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.mission-stats {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--blue);
}

@media (max-width: 768px) {
    .mission-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    


 






    .section-title {
    font-size: 22px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

    .mission-header {
        justify-content: center;
    }

    .mission-stats {
        justify-content: center;
    }

    .about-visual img {
        box-shadow: none;
    }
}

/* WHY PARTNER (CARDS) */
.service-area {
    padding-bottom: 80px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.info-card i {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 15px;
}

.info-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* FOOTER */
.footer {
    background: #0a0a0a;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer h3, .footer h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.8rem;
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: #ffffff;
    padding: 60px 0 0;
    border-top: 4px solid #e13d3a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer h3,
.footer h4 {
    margin-bottom: 18px;
    color: #ffffff;
}

.footer p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #e13d3a;
    transform: translateY(-3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 18px 0;
    text-align: center;
    background: #0b1220;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #94a3b8;
}

.footer-bottom .designer {
    display: block;
    margin-top: 6px;
    color: #cbd5e1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left !important;
    }

    .footer-social {
        justify-content: center;
    }
}

/* General Footer Styling */
.modern-footer {
    background-color: #0f172a;
    /* Dark navy (professional) */
    color: #ffffff;
    padding-top: 50px;
    font-family: 'Arial', sans-serif;
}

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

/* Grid – SAME */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 40px;
}

/* BRAND */
.footer-brand h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0054a6;
    /* LOGO BLUE */
}

.footer-brand h2 span {
    color: #e13d3a;
    /* LOGO RED */
}

.brand-label {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    color: #cbd5e1;
}

.modern-footer h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

/* LINKS */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.footer-links li::before {
    content: "▶";
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 4px;
    color: #0054a6;
    /* BLUE accent */
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* NEWSLETTER */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    background: #1a2332;
    border: 1px solid #334155;
    padding: 10px;
    color: white;
    width: 100%;
}

.newsletter-form button {
    background-color: #0054a6;
    /* LOGO BLUE */
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #e13d3a;
    /* LOGO RED */
}

/* CONTACT INFO */
.footer-contact-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    color: #e13d3a;
    /* RED icons */
    margin-right: 12px;
    margin-top: 4px;
}

/* BOTTOM BAR */
.footer-bottom {
    background-color: #0b1220;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: #cbd5e1;
}

.copyright-text a {
    color: #0054a6;
    /* BLUE link */
    text-decoration: none;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    background: #e13d3a;
    /* RED like logo */
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #0054a6;
    /* BLUE hover */
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links li {
        padding-left: 0;
    }

    .footer-links li::before {
        display: none;
    }
}







/* HERO */
.hero {
    height: 550px;
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)),
        url("https://images.unsplash.com/photo-1513828583688-c52646db42da?q=80&w=2070") center/cover;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: left;
}

.badge {
    background: var(--red);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero h1 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 15px;
    display: inline-block;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

/* SERVICES CARDS */
.services {
    margin-top: -60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 10;
}

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

.card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.card i {
    font-size: 40px;
    color: var(--blue);
    margin-bottom: 20px;
}

.card.active {
    background: var(--blue);
    color: #fff;
}

.card.active i {
    color: #fff;
}

.card:hover {
    transform: translateY(-10px);
}

/* SECTIONS */
.intro {
    padding: 80px 0;
    text-align: center;
    background: var(--light-bg);
}

.line {
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 15px auto 25px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--blue);
    font-size: 32px;
}

.design-one {
    padding: 80px 0;
}

.benefits-row, .process-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item, .process-step {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.step-circle {
    width: 55px;
    height: 55px;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 15px;
}

/* FOOTER */
.footer {
    background-color: var(--dark);
    color: #ffffff;
    padding: 60px 0 20px;
    border-top: 4px solid var(--red);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer h3, .footer h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer a:hover {
    color: #ffffff;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social a:hover {
    background: var(--red);
    transform: translateY(-5px);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(225, 61, 58, 0.4);
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    color: #777;
    font-size: 14px;
}



/* WHITE BACKGROUND FOR SECTION ABOVE FOOTER */
.gallery-white {
    background: #ffffff;
    padding: 80px 0;
}

/* Text color adjustment for white bg */
.gallery-white .section-heading {
    color: #0f172a;
}

.gallery-white .overlay {
    background: rgba(0, 84, 166, 0.85);
    /* keep blue overlay */
}


/* SECTION */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--bg-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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



/* GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARD */
.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s ease;
    border-bottom: 4px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-bottom: 4px solid var(--accent-red);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

/* ICON */
.icon-wrapper {
    width: 72px;
    height: 72px;
    background: rgba(0, 84, 166, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 22px;
    border-radius: 50%;
    transition: 0.35s ease;
}

.benefit-card:hover .icon-wrapper {
    background: var(--primary-blue);
    color: #ffffff;
}

/* TITLE */
.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-text);
}

/* TEXT */
.benefit-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* COMPANY INTRO SECTION */
.company-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.intro-content {
    flex: 1;
    min-width: 300px;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0054a6;
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

/* RIGHT SIDE CARDS */
.sector-cards {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sector-card {
    background: #fff;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.sector-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sector-card i {
    font-size: 2rem;
    color: #0054a6;
    width: 45px;
}

.sector-card h5 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #222;
}

.sector-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
   
    .intro-wrapper {
        flex-direction: column;
    }

       .intro-title {
        font-size: 19px;
        text-align: center;
    }
    .section-header .title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}
.company-intro {
    padding: 30px 0;
    background-color: #ffffff;
}
.design-one {
    padding: 30px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--blue);
    font-size: 19px;
}
.process-step {
    background: #fff;
    padding: 20px 25px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}
.benefit-card {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s ease;
    border-bottom: 4px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.why-choose-us {
    padding: 30px 0;
    background-color: var(--bg-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
}

/* General Footer Styling */
.modern-footer {
    background-color: #0f172a;
    /* Dark navy (professional) */
    color: #ffffff;
    padding-top: 50px;
    font-family: 'Arial', sans-serif;
}

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

/* Grid – SAME */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 30px;
    padding-bottom: 40px;
}

/* BRAND */
.footer-brand h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0054a6;
    /* LOGO BLUE */
}

.footer-brand h2 span {
    color: #e13d3a;
    /* LOGO RED */
}

.brand-label {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    color: #cbd5e1;
}

.modern-footer h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

/* LINKS */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.footer-links li::before {
    content: "▶";
    position: absolute;
    left: 0;
    font-size: 10px;
    top: 4px;
    color: #0054a6;
    /* BLUE accent */
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* NEWSLETTER */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    background: #1a2332;
    border: 1px solid #334155;
    padding: 10px;
    color: white;
    width: 100%;
}

.newsletter-form button {
    background-color: #0054a6;
    /* LOGO BLUE */
    border: none;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #e13d3a;
    /* LOGO RED */
}

/* CONTACT INFO */
.footer-contact-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    color: #e13d3a;
    /* RED icons */
    margin-right: 12px;
    margin-top: 4px;
}

/* BOTTOM BAR */
.footer-bottom {
    background-color: #0b1220;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text p {
    margin: 0;
    font-size: 12px;
    letter-spacing: 1px;
    color: #cbd5e1;
}

.copyright-text a {
    color: #0054a6;
    /* BLUE link */
    text-decoration: none;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    background: #e13d3a;
    /* RED like logo */
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icon:hover {
    background: #0054a6;
    /* BLUE hover */
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links li {
        padding-left: 0;
    }

    .footer-links li::before {
        display: none;
    }
}


/* DESKTOP & LARGE SCREENS */
.process-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* MOBILE & SMALL SCREENS */
@media (max-width: 768px) {
    .process-row {
        display: grid;              /* force grid (not flex) */
        grid-template-columns: 1fr; /* ONE item per row */
        gap: 20px;
    }

    .process-step {
        padding: 20px;
        text-align: center;
    }

    .step-circle {
        margin-bottom: 10px;
    }
}



