/* Sticky navigation, top bar, and footer */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1200;
    background: #e3e6fd;
    box-shadow: 0 2px 8px rgba(57,73,171,0.07);
}
header {
    position: fixed;
    top: 44px;
    left: 0;
    width: 100vw;
    z-index: 1100;
    background: #fff;
    box-shadow: 0 2px 8px rgba(57,73,171,0.07);
}
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 1200;
    background: #fff;
    box-shadow: 0 -2px 8px rgba(57,73,171,0.07);
    padding: 0.3rem 0 0.3rem 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    font-size: 0.78rem;
    line-height: 1.4;
}
footer.footer-visible {
    opacity: 1;
    pointer-events: auto;
}
body {
    padding-top: 148px; /* 44px top-bar + ~104px nav with larger logo */
    padding-bottom: 120px; /* generous footer clearance */
    box-sizing: border-box;
}
/* Logo sizing */
.logo img {
    height: 90px;
    width: auto;
    display: block;
}
/* Closing section – ensure it sits above the fixed footer */
.closing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem 4rem 2rem;
    background: linear-gradient(120deg, #1a237e 60%, #3949ab 100%);
    color: #fff;
    gap: 1.2rem;
}
.closing p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e3e6fd;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.7;
}
.closing .btn {
    display: inline-block;
    background: #ffb300;
    color: #1a237e;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.9rem 2.4rem;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 0.5rem;
    box-shadow: 0 4px 16px rgba(255,179,0,0.25);
    transition: background 0.2s, transform 0.2s;
}
.closing .btn:hover {
    background: #ffa000;
    transform: translateY(-2px);
}
@media (max-width: 700px) {
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        z-index: 1200;
    }
    header {
        top: 44px;
    }
    body {
        padding-top: 148px;
        padding-bottom: 120px;
    }
    footer {
        padding-bottom: 1.2rem;
    }
}
/* Why Choose MST custom styles */
.why-choose-highlight {
    color: #ffb300;
    font-weight: 700;
}
.why-choose-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin: 2.5rem 0 1.5rem 0;
    z-index: 2;
    position: relative;
}
.why-choose-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(57,73,171,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 260px;
    max-width: 320px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    z-index: 2;
}
.why-choose-card:hover {
    box-shadow: 0 12px 36px rgba(57,73,171,0.18);
    transform: translateY(-8px) scale(1.03);
}
.why-choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}
.why-choose-text {
    color: #1a237e;
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .why-choose-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .why-choose-card {
        min-width: 90vw;
        max-width: 98vw;
        padding: 1.5rem 1rem 1rem 1rem;
    }
}
/* Modal styles for quote form */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 33, 54, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(57,73,171,0.18);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.4s cubic-bezier(.23,1.01,.32,1) both;
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #3949ab;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.modal-close:hover {
    color: #ffb300;
}
.modal-form h2 {
    color: #3949ab;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.modal-form .form-row {
    width: 100%;
    display: flex;
    gap: 1rem;
    margin-bottom: 0.7rem;
}
.modal-form input,
.modal-form textarea {
    flex: 1 1 0;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid #e3e6fd;
    border-radius: 8px;
    font-size: 1rem;
    color: #222;
    background: #f7f8fc;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}
.modal-form input:focus,
.modal-form textarea:focus {
    border: 1.5px solid #3949ab;
    box-shadow: 0 2px 8px rgba(57,73,171,0.10);
}
.modal-form button.btn-primary {
    background: linear-gradient(90deg, #3949ab 60%, #ffb300 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(57,73,171,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}
.modal-form button.btn-primary:hover {
    background: linear-gradient(90deg, #ffb300 60%, #3949ab 100%);
    box-shadow: 0 8px 32px rgba(57,73,171,0.18);
}
/* Contact page modern styles */
.contact-modern {
    min-height: 100vh;
    width: 100vw;
    background: linear-gradient(120deg, #e3e6fd 60%, #fff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 1rem 2rem 1rem;
    box-sizing: border-box;
}
.contact-modern h1 {
    color: #1a237e;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    font-weight: bold;
    text-align: center;
}
.contact-intro {
    color: #3949ab;
    font-size: 1.15rem;
    margin-bottom: 2.2rem;
    text-align: center;
}
.contact-info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(57,73,171,0.10);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    min-width: 260px;
    max-width: 340px;
    font-size: 1.08rem;
    color: #1a237e;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.contact-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.contact-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(57,73,171,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 500px;
    width: 100%;
    margin: 0 auto 2.5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.contact-form h2 {
    color: #3949ab;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.form-row {
    width: 100%;
    display: flex;
    gap: 1rem;
    margin-bottom: 0.7rem;
}
.form-row input,
.form-row textarea {
    flex: 1 1 0;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid #e3e6fd;
    border-radius: 8px;
    font-size: 1rem;
    color: #222;
    background: #f7f8fc;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}
.form-row input:focus,
.form-row textarea:focus {
    border: 1.5px solid #3949ab;
    box-shadow: 0 2px 8px rgba(57,73,171,0.10);
}
.contact-form button.btn-primary {
    background: linear-gradient(90deg, #3949ab 60%, #ffb300 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(57,73,171,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}
.contact-form button.btn-primary:hover {
    background: linear-gradient(90deg, #ffb300 60%, #3949ab 100%);
    box-shadow: 0 8px 32px rgba(57,73,171,0.18);
}
@media (max-width: 900px) {
    .contact-info-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .contact-info-card {
        min-width: 90vw;
        max-width: 98vw;
        padding: 1.2rem 1rem;
    }
    .contact-form {
        max-width: 98vw;
        padding: 2rem 1rem 1.5rem 1rem;
    }
}
/* Footer developer credit */
.dev-credit {
    display: inline;
    font-size: 0.78rem;
    color: #3949ab;
    margin-left: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
footer p {
    margin: 0;
    padding: 0;
    font-size: 0.78rem;
    line-height: 1.4;
    color: #444;
    text-align: center;
}
/* Services page catchy styles */
.services-bg {
    min-height: 100vh;
    width: 100vw;
    background: linear-gradient(120deg, #e3e6fd 60%, #fff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.services-title {
    font-size: 2.5rem;
    color: #1a237e;
    margin: 2.5rem 0 2rem 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(57,73,171,0.08);
    font-weight: bold;
    text-align: center;
}
.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 3rem;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(57,73,171,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}
.service-card:hover {
    box-shadow: 0 16px 48px rgba(57,73,171,0.18);
    transform: translateY(-8px) scale(1.03);
    border: 2px solid #3949ab;
}
.service-card h2 {
    color: #3949ab;
    font-size: 1.3rem;
    margin: 1.2rem 0 0.7rem 0;
    letter-spacing: 1px;
}
.service-card p {
    color: #222;
    font-size: 1.05rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.6;
}
.service-icon {
    display: block;
    width: 54px;
    height: 54px;
    margin-bottom: 0.5rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 2px 8px rgba(57,73,171,0.10));
    transition: filter 0.3s;
}
.service-card:hover .service-icon {
    filter: drop-shadow(0 6px 18px rgba(57,73,171,0.18));
}
.service-icon.electrification {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%233949ab" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2v11h3v9l7-12h-4l4-8z"/></svg>');
}
.service-icon.construction {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%233949ab" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 22h20v-2H2v2zm2-4h16V8l-8-5-8 5v10zm8-13.09L20 8v10H4V8l8-5.09z"/></svg>');
}
.service-icon.management {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%233949ab" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><path fill="%23fff" d="M12 7v5l4 2"/></svg>');
}
.service-icon.plumbing {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%233949ab" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.77 17.77l-1.41-1.41-2.12 2.12-2.12-2.12-1.41 1.41 2.12 2.12-2.12 2.12 1.41 1.41 2.12-2.12 2.12 2.12 1.41-1.41-2.12-2.12z"/></svg>');
}
.service-icon.waste {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%233949ab" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6l3 18h12l3-18H3zm5 16l-2.25-14h12.5L16 22H8zm7-16V4c0-1.1-.9-2-2-2s-2 .9-2 2v2H5v2h14V6h-4z"/></svg>');
}
.service-icon.clearance {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%233949ab" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.29 8.37l-8.59-8.59c-.39-.39-1.02-.39-1.41 0l-8.59 8.59c-.39.39-.39 1.02 0 1.41l8.59 8.59c.39.39 1.02.39 1.41 0l8.59-8.59c.39-.39.39-1.02 0-1.41z"/></svg>');
}
@media (max-width: 900px) {
    .service-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .service-card {
        min-width: 90vw;
        max-width: 98vw;
        padding: 2rem 1rem 1.5rem 1rem;
    }
}
/* About page side diagonal images for sections */
.about-card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.about-card-content {
    flex: 1 1 0;
    z-index: 2;
    padding: 2rem 2rem;
    text-align: left;
}
.about-diagonal-img-side {
    position: absolute;
    top: 0;
    height: 100%;
    min-width: 220px;
    min-height: 220px;
    width: 38vw;
    max-width: 420px;
    object-fit: cover;
    opacity: 0.85;
    z-index: 1;
    filter: brightness(0.97) saturate(1.1) contrast(1.1) drop-shadow(0 8px 32px rgba(57,73,171,0.10));
    transition: filter 0.3s, opacity 0.3s;
    pointer-events: none;
}
.about-diagonal-img-side.right {
    right: 0;
    left: auto;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
.about-diagonal-img-side.left {
    left: 0;
    right: auto;
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
}
.about-diagonal-right .about-card-content {
    margin-right: 40vw;
}
.about-diagonal-left .about-card-content {
    margin-left: 40vw;
}
@media (max-width: 900px) {
    .about-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .about-card-content {
        margin: 0 !important;
        padding: 1.5rem 1rem;
        text-align: center;
    }
    .about-diagonal-img-side {
        position: relative;
        width: 100%;
        min-width: 100px;
        max-width: 100vw;
        height: 180px;
        min-height: 100px;
        clip-path: none !important;
        margin-bottom: 1rem;
        left: 0 !important;
        right: 0 !important;
    }
    .about-diagonal-right .about-card-content,
    .about-diagonal-left .about-card-content {
        margin: 0 !important;
    }
}
/* About page diagonal and card styles */
.about-diagonal {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8f9fa;
    margin: 0;
    padding: 0;
}
.about-diagonal-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 60vw;
    height: 100vh;
    min-width: 400px;
    min-height: 400px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
    opacity: 0.85;
    z-index: 0;
    filter: brightness(0.95) saturate(1.1) contrast(1.1) drop-shadow(0 8px 32px rgba(57,73,171,0.10));
    transition: filter 0.3s, opacity 0.3s;
}
.about-diagonal-img:hover {
    filter: brightness(1.05) saturate(1.2) contrast(1.2) drop-shadow(0 12px 48px rgba(57,73,171,0.18));
    opacity: 1;
}
.about-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    padding: 3rem 2rem 2.5rem 2rem;
    background: rgba(255,255,255,0.96);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(57,73,171,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}
.about-card:hover {
    box-shadow: 0 16px 48px rgba(57,73,171,0.18);
    transform: translateY(-6px) scale(1.02);
}
.about-effect {
    animation: fadeInUp 1s cubic-bezier(.23,1.01,.32,1) both;
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.what-we-do {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    z-index: 1;
}
.what-we-do::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: url('../img/what-we-do-bg.jpg') center center/cover no-repeat;
    opacity: 0.7;
    z-index: 1;
}
.what-we-do > * {
    position: relative;
    z-index: 2;
}
.what-we-do > * {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem 2rem 1.5rem;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
.why-choose {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.why-choose-diagonal-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 60vw;
    height: 100vh;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
    object-fit: cover;
    opacity: 0.85;
    pointer-events: none;
    min-width: 400px;
    min-height: 400px;
}
.why-choose > *:not(img) {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    background: rgba(255,255,255,0.92);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(57,73,171,0.07);
}
@media (max-width: 900px) {
    .why-choose-diagonal-img {
        width: 100%;
        height: 180px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 80%);
        top: 0;
        left: 0;
    }
    .why-choose {
        padding-top: 200px;
    }
}
@media (max-width: 768px) {
    .why-choose {
        min-height: unset;
        padding: 3rem 1rem 2.5rem;
        background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    }
    .why-choose-diagonal-img {
        display: none;
    }
    .why-choose > *:not(img) {
        background: rgba(255,255,255,0.97);
        border-radius: 14px;
        padding: 1.8rem 1.2rem;
        max-width: 100%;
        width: 100%;
        box-shadow: 0 4px 20px rgba(26,35,126,0.18);
    }
    .why-choose h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.3rem;
    }
    .why-choose-cards {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin: 0;
    }
    .why-choose-card {
        min-width: unset;
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 1.2rem 1rem;
        gap: 1rem;
        border-radius: 12px;
    }
    .why-choose-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }
    .why-choose-text {
        font-size: 1rem;
    }
}
/* Utility class for vertical spacing between sections */
.section-spacing {
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
    min-height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.top-bar {
    background: #e3e6fd;
    color: #1a237e;
    padding: 0.3rem 0;
    font-size: 0.98rem;
}
.contact-info {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
}
.contact-info .icon {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 0.3rem;
}
.contact-info a {
    color: #1a237e;
    text-decoration: none;
    margin-right: 1.2rem;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-info a:hover {
    color: #ffb300;
}
.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}
header {
    background: #1a237e;
    color: #fff;
    padding: 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.6rem 2rem;
    position: relative;
}
.logo {
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 2px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav ul li a:hover,
nav ul li a.active {
    color: #ffb300;
}
.hero {
    position: relative;
    color: #fff;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
}
/* Slideshow backgrounds */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    z-index: 0;
}
.slide-bg.active {
    opacity: 1;
}
/* Blue overlay above slides */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,35,126,0.58);
    z-index: 1;
    pointer-events: none;
}
/* Thumbnail tape strip */
.hero-thumb-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 76px;
    background: rgba(10, 15, 60, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 2px solid rgba(255,255,255,0.10);
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    gap: 4px;
    padding: 5px 6px;
    box-sizing: border-box;
}
.hero-thumb-strip::-webkit-scrollbar {
    display: none;
}
.thumb-item {
    flex: 1 1 0;
    min-width: 80px;
    max-width: 140px;
    height: 100%;
    border: 2.5px solid transparent;
    padding: 0;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #283593;
    border-radius: 5px;
    outline: none;
    transition: opacity 0.18s, transform 0.18s, box-shadow 0.18s, border-color 0.18s;
    opacity: 0.55;
    box-sizing: border-box;
}
.thumb-item:hover {
    opacity: 0.85;
    transform: scaleY(1.07);
    box-shadow: 0 2px 14px rgba(0,0,0,0.40);
}
.thumb-item.active {
    opacity: 1;
    border-color: #ffb300;
    box-shadow: 0 0 0 1px #ffb300, 0 3px 14px rgba(255,179,0,0.35);
    transform: scaleY(1.12);
    z-index: 2;
}
/* Thumbnail hover preview popup */
.thumb-hover-popup {
    position: absolute;
    z-index: 8;
    bottom: 84px;
    left: 0;
    width: 230px;
    height: 145px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a237e;
    border-radius: 8px;
    border: 2.5px solid #ffb300;
    box-shadow: 0 8px 36px rgba(0,0,0,0.60);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px) scale(0.94);
    transition: opacity 0.18s, transform 0.18s;
}
.thumb-hover-popup.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.thumb-hover-popup::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffb300;
}
/* ── Image lightbox ── */
.img-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lbFadeIn 0.22s ease both;
}
@keyframes lbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.img-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 7, 28, 0.93);
    cursor: pointer;
}
.img-lightbox-img {
    position: relative;
    z-index: 1;
    width: min(88vw, 1100px);
    height: min(78vh, 700px);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.75);
    animation: lbZoomIn 0.26s cubic-bezier(.23,1.01,.32,1) both;
}
@keyframes lbZoomIn {
    from { transform: scale(0.86); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
.img-lightbox-close {
    position: fixed;
    top: 1.1rem;
    right: 1.4rem;
    z-index: 3001;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 2.2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s, color 0.2s;
    line-height: 1;
}
.img-lightbox-close:hover {
    background: #ffb300;
    color: #1a237e;
    transform: scale(1.12);
    border-color: #ffb300;
}
.img-lightbox-prev,
.img-lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3001;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 1.7rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s, color 0.2s;
}
.img-lightbox-prev { left: 1.2rem; }
.img-lightbox-next { right: 1.2rem; }
.img-lightbox-prev:hover,
.img-lightbox-next:hover {
    background: #ffb300;
    color: #1a237e;
    border-color: #ffb300;
}
.img-lightbox-counter {
    position: fixed;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3001;
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    letter-spacing: 2px;
    font-weight: 600;
    background: rgba(0,0,0,0.40);
    padding: 0.28rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .img-lightbox-img {
        width: 96vw;
        height: 55vw;
        min-height: 180px;
    }
    .img-lightbox-prev { left: 0.4rem; }
    .img-lightbox-next { right: 0.4rem; }
    .thumb-hover-popup { display: none; }
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.btn {
    background: #ffb300;
    color: #222;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.btn:hover {
    background: #ffa000;
}
.btn-secondary {
    background: #fff;
    color: #3949ab;
    border: 1px solid #3949ab;
}
.intro {
    background: linear-gradient(120deg, #fff 60%, #e3e6fd 100%);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(57,73,171,0.07);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}
.intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}
.intro h2 {
    background: #1a237e;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px 8px 0 0;
    margin: -2.5rem -1.5rem 2rem -1.5rem;
    font-size: 2rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(26,35,126,0.10);
}
.intro h2 {
    align-self: stretch;
}
.intro p {
    font-size: 1.13rem;
    color: #222;
    margin: 0;
    line-height: 1.7;
}
.intro p {
    margin: 0 auto;
    max-width: 700px;
}
.why-choose h2 {
    background: #3949ab;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px 8px 0 0;
    margin: -2.5rem -1.5rem 2rem -1.5rem;
    font-size: 2rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(57,73,171,0.10);
}
.why-choose {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}
.why-choose h2 {
    align-self: stretch;
}
.why-choose ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.why-choose ul {
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
}
.why-choose ul li {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(57,73,171,0.08);
    padding: 1.5rem 2rem;
    min-width: 200px;
    max-width: 280px;
    font-weight: 500;
    color: #1a237e;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
}
.why-choose ul li:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 6px 24px rgba(57,73,171,0.16);
}
.why-choose ul li::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url('data:image/svg+xml;utf8,<svg fill="%231a237e" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="12" fill="%23e3e6fd"/><path d="M9.5 16.5l-4-4 1.41-1.41L9.5 13.67l7.09-7.09L18 7.09z" fill="%231a237e"/></svg>') no-repeat center center/contain;
    margin-right: 0.7rem;
}
.btn-secondary:hover {
    background: #e3e6fd;
}
main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
}
/* (duplicate block neutralised — styles now live in the full-screen block above) */
.what-we-do h2 {
    background: rgba(26,35,126,0.72);
    color: #fff;
    display: inline-block;
    padding: 0.6rem 2rem;
    border-radius: 8px;
    margin: 0 auto 2rem auto;
    font-size: 2rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(26,35,126,0.18);
    text-align: center;
}
.what-we-do ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 2.4rem 2.2rem;
    background: rgba(255, 255, 255, 0.90);
    border-radius: 18px;
    box-shadow: 0 8px 48px rgba(26,35,126,0.14);
}
.what-we-do ul li {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(57,73,171,0.08);
    padding: 1.6rem 2.4rem;
    min-width: 220px;
    max-width: 280px;
    font-weight: 500;
    color: #1a237e;
    font-size: 1.08rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
}
.what-we-do ul li:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 6px 24px rgba(57,73,171,0.16);
}
.what-we-do ul li::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url('data:image/svg+xml;utf8,<svg fill="%233949ab" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="12" fill="%23e3e6fd"/><path d="M9.5 16.5l-4-4 1.41-1.41L9.5 13.67l7.09-7.09L18 7.09z" fill="%233949ab"/></svg>') no-repeat center center/contain;
    margin-right: 0.7rem;
}
.why-choose ul, .approach ul, .values ul {
    list-style: disc inside;
    margin: 1rem 0 1rem 1.5rem;
    padding: 0;
}
.service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.service {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(60,60,100,0.07);
    padding: 1.5rem;
    flex: 1 1 250px;
    min-width: 250px;
    box-sizing: border-box;
    max-width: 350px;
}
/* =====================================================
   STATS SECTION
   ===================================================== */
.stats-section {
    width: 100vw;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 60%, #283593 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 3.5rem 2rem;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,179,0,0.07);
    pointer-events: none;
}
.stats-intro-text {
    max-width: 780px;
    text-align: center;
    margin-bottom: 2.5rem;
}
.stats-intro-text p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.90);
    font-weight: 400;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    max-width: 900px;
    margin-bottom: 2.5rem;
}
.stat-item {
    background: rgba(255,255,255,0.09);
    border: 1.5px solid rgba(255,255,255,0.16);
    border-radius: 18px;
    padding: 2rem 2.5rem 1.8rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 200px;
    min-width: 180px;
    max-width: 260px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: transform 0.3s, background 0.3s;
}
.stat-item:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.15);
}
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,179,0,0.15);
    margin-bottom: 0.8rem;
}
.stat-icon svg path, .stat-icon svg circle {
    stroke: #ffb300;
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffb300;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.stats-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 0.5rem;
}
.stats-tag {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    border-radius: 50px;
    padding: 0.45rem 1.2rem;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
/* =====================================================
   INTRO SECTION – Professional styling
   ===================================================== */
.intro-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 780px;
    padding: 3.5rem 2.5rem 3rem 2.5rem;
    text-align: center;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(57,73,171,0.10);
    position: relative;
    z-index: 2;
}
.intro-badge {
    display: inline-block;
    background: #ffb300;
    color: #1a237e;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.intro-inner h2 {
    background: transparent !important;
    color: #1a237e !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    margin: 0 0 1.2rem 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    align-self: auto !important;
}
.intro-inner > p {
    font-size: 1.12rem !important;
    color: #444 !important;
    line-height: 1.85 !important;
    max-width: 640px !important;
    margin: 0 auto 1.8rem auto !important;
}
.intro-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.5rem;
}
.intro-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: #f0f2ff;
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1a237e;
    border: 1px solid #c5caf5;
}
/* =====================================================
   VISION & MISSION – About page
   ===================================================== */
.vision-mission-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: flex-start;
    text-align: left;
}
.vm-block {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem 0;
}
.vm-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3e6fd;
    border-radius: 50%;
}
.vm-text h2 {
    color: #1a237e;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    letter-spacing: 0.5px;
}
.vm-tagline {
    color: #ffb300 !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    margin: 0 0 0.5rem 0 !important;
    letter-spacing: 0.5px;
}
.vm-text p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0;
}
.vm-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #e3e6fd, transparent);
    margin: 0.5rem 0;
}
/* =====================================================
   HAMBURGER MENU
   ===================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1300;
    border-radius: 6px;
    transition: background 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.12); }
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(.23,1.01,.32,1);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* =====================================================
   FULL RESPONSIVENESS
   ===================================================== */

/* --- Tablet & below (max 900px) --- */
@media (max-width: 900px) {
    .stats-grid {
        gap: 1.5rem;
    }
    .stat-item {
        min-width: 140px;
        padding: 1.5rem 1.8rem;
    }
    .stat-number { font-size: 2.2rem; }
    .intro-inner {
        padding: 2.5rem 1.5rem 2rem 1.5rem;
    }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
    body {
        padding-top: 130px;
        padding-bottom: 120px;
    }
    /* Hamburger visible */
    .hamburger {
        display: flex;
    }
    nav {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 0.6rem 1rem;
        gap: 0;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a237e;
        padding: 0.5rem 0 1rem 0;
        z-index: 1099;
        box-shadow: 0 8px 24px rgba(26,35,126,0.18);
        gap: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        text-align: center;
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links li a {
        display: block;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    nav {
        position: relative;
    }
    /* Topbar compact */
    .contact-info {
        flex-wrap: wrap;
        gap: 0.4rem 1rem;
        padding: 0 0.8rem;
        font-size: 0.85rem;
    }
    /* Logo */
    .logo img {
        height: 52px;
    }
    /* Hero */
    .hero-content h1 { font-size: 1.6rem; }
    .hero-content p { font-size: 1rem; }
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    .cta-buttons .btn { width: 90%; text-align: center; }
    /* Intro */
    .intro-inner {
        padding: 2rem 1rem 1.5rem 1rem;
        border-radius: 12px;
    }
    .intro-inner h2 { font-size: 1.5rem !important; }
    .intro-highlights { gap: 0.6rem; }
    /* Stats */
    .stats-section { padding: 2.5rem 1rem 2rem 1rem; }
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .stat-item {
        width: 100%;
        max-width: 340px;
        min-width: unset;
        padding: 1.4rem 1.5rem;
    }
    .stat-number { font-size: 2rem; }
    .stats-tags { gap: 0.5rem; }
    .stats-tag { font-size: 0.8rem; padding: 0.35rem 0.9rem; }
    /* What We Do */
    .what-we-do ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .what-we-do ul li {
        min-width: unset;
        max-width: 340px;
        width: 100%;
        padding: 1.3rem 1.8rem;
    }
    /* Why Choose cards */
    .why-choose-cards {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .why-choose-card {
        min-width: unset;
        max-width: 340px;
        width: 100%;
    }
    /* About sections */
    .about-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .about-card-content {
        margin: 0 !important;
        padding: 1.5rem 1rem;
        text-align: left;
    }
    .about-diagonal-img-side {
        position: relative;
        width: 100%;
        min-width: unset;
        max-width: 100vw;
        height: 180px;
        min-height: unset;
        clip-path: none !important;
        margin-bottom: 1rem;
        left: 0 !important;
        right: 0 !important;
    }
    .vision-mission-content { gap: 0; }
    .vm-block { flex-direction: column; gap: 0.8rem; padding: 1.2rem 0; }
    /* Services */
    .service-list {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .service-card {
        min-width: unset;
        max-width: 340px;
        width: 100%;
        padding: 1.8rem 1.2rem 1.5rem 1.2rem;
    }
    /* Contact */
    .contact-info-cards {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .contact-info-card {
        min-width: unset;
        max-width: 340px;
        width: 100%;
    }
    .contact-form {
        max-width: 100%;
        padding: 1.5rem 1rem 1rem 1rem;
    }
    .form-row { flex-direction: column; gap: 0.7rem; }
    /* Modal */
    .modal-content { padding: 2rem 1rem 1.5rem 1rem; max-width: 96vw; }
    .modal-form .form-row { flex-direction: column; }
    /* Footer */
    footer { padding-bottom: 1.2rem; }
    /* Closing */
    .closing { padding: 2.5rem 1rem 3rem 1rem; }
    .closing p { font-size: 1rem; }
    .closing .btn { padding: 0.85rem 1.6rem; font-size: 0.98rem; }
    /* Main */
    main { padding: 0 0; margin: 0; }
    section { max-width: 100vw; }
}

/* --- Small phones (max 480px) --- */
@media (max-width: 480px) {
    body { padding-top: 120px; }
    .logo img { height: 44px; }
    header { top: 38px; }
    .top-bar { font-size: 0.78rem; }
    .contact-info { padding: 0 0.5rem; gap: 0.3rem 0.7rem; }
    .hero-content h1 { font-size: 1.35rem; }
    .stat-number { font-size: 1.8rem; }
    .services-title { font-size: 1.8rem; }
    .ct-hero h1 { font-size: 1.65rem; }
    nav { padding: 0.5rem 0.8rem; }
}

/* --- Large desktop (min 1200px) --- */
@media (min-width: 1200px) {
    .stats-grid { gap: 3rem; }
    .stat-item { flex: 1 1 240px; }
    .intro-inner { max-width: 860px; padding: 4rem 3rem; }
    .stats-intro-text { max-width: 900px; }
}

/* =====================================================
   COMPREHENSIVE RESPONSIVE POLISH
   ===================================================== */

/* -- Top bar: stack items vertically on mobile -- */
@media (max-width: 600px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
        padding: 0.45rem 1rem;
        font-size: 0.80rem;
    }
    header { top: 96px !important; }
    body { padding-top: 200px !important; }
}
@media (max-width: 480px) {
    body { padding-top: 178px !important; }
}

/* -- Nav: ensure hamburger trigger is correct, 6+ links need it earlier -- */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0;
        width: 100%;
        background: #1a237e;
        padding: 0.5rem 0 1rem 0;
        z-index: 1099;
        box-shadow: 0 8px 24px rgba(26,35,126,0.18);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.open { display: flex; }
    .nav-links li { text-align: center; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links li a { display: block; padding: 0.85rem 1.5rem; font-size: 1rem; }
    nav { position: relative; flex-wrap: nowrap; justify-content: space-between; }
    .logo img { height: 56px; }
}

/* -- Hero thumbnail strip -- */
@media (max-width: 768px) {
    .hero-thumb-strip { height: 56px; }
    .thumb-item { min-width: 50px; max-width: 80px; }
}
@media (max-width: 480px) {
    .hero-thumb-strip { height: 44px; }
    .thumb-item { min-width: 36px; }
    .hero-content h1 { font-size: 1.35rem; }
    .hero-content p  { font-size: 0.95rem; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 88%; text-align: center; }
}

/* -- Services cards -- */
@media (max-width: 768px) {
    .service-list { padding: 0 1rem; gap: 1.2rem; }
    .service-card { flex: 1 1 100%; min-width: unset; max-width: 100%; width: 100%; }
    .services-title { font-size: 1.8rem; margin: 1.5rem 0 1.5rem; }
}
@media (max-width: 480px) {
    .services-title { font-size: 1.5rem; letter-spacing: 1px; }
    .service-card { padding: 1.5rem 1rem 1.2rem 1rem; }
    .service-card h2 { font-size: 1.1rem; }
}

/* -- Stats section -- */
@media (max-width: 480px) {
    .stats-grid { flex-direction: column; align-items: center; gap: 0.9rem; }
    .stat-item { width: 90%; max-width: 300px; min-width: unset; padding: 1.2rem 1rem; }
    .stat-number { font-size: 1.8rem; }
    .stats-tags { gap: 0.4rem; }
    .stats-tag { font-size: 0.76rem; padding: 0.3rem 0.7rem; }
}

/* -- What We Do -- */
@media (max-width: 480px) {
    .what-we-do ul { padding: 1.6rem 1rem; gap: 0.8rem; }
    .what-we-do ul li { padding: 1rem 1.2rem; font-size: 0.97rem; }
}

/* -- Why Choose (480px extra) -- */
@media (max-width: 480px) {
    .why-choose { padding: 2.5rem 0.8rem 2rem; }
    .why-choose h2 { font-size: 1.3rem !important; }
    .why-choose-card { padding: 1rem 0.9rem; gap: 0.8rem; }
    .why-choose-text { font-size: 0.95rem; }
    .why-choose-icon svg { width: 26px; height: 26px; }
}

/* -- Intro section -- */
@media (max-width: 480px) {
    .intro-inner { padding: 1.8rem 1rem 1.4rem; border-radius: 10px; }
    .intro-inner h2 { font-size: 1.3rem !important; }
    .intro-inner > p { font-size: 0.97rem !important; }
    .intro-highlights { flex-direction: column; align-items: center; gap: 0.5rem; }
    .intro-highlight-item { width: 90%; justify-content: center; }
}

/* -- Modal -- */
@media (max-width: 480px) {
    .modal-content { padding: 1.8rem 0.9rem 1.4rem; max-width: 98vw; border-radius: 12px; }
}

/* -- General section padding on small screens -- */
@media (max-width: 480px) {
    .closing { padding: 2rem 1rem 2.5rem; }
    .closing p { font-size: 0.97rem; }
    .closing .btn { width: 90%; text-align: center; }
}

/* Prevent horizontal scroll globally */
html { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }