/* ======================================================
   🔒 FILE LOCKED – DO NOT MODIFY
   Reason: Layout & navigation styles stabilized
   Date: 30-Jan-2026
====================================================== */

/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #f8f9fb;
    color: #333;
    line-height: 1.6;
}

/* =========================
   CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   HEADER & NAVBAR
========================= */
header {
    background: #0b1c2d;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* =========================
   MAIN NAVIGATION
========================= */
.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul > li {
    padding: 0 12px;
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.25s;
}

.main-nav ul li a:hover {
    color: #00c6ff;
}

/* =========================
   ACTIVE MENU (HIGHLIGHT ONLY)
========================= */
.main-nav ul li a.active,
.main-nav ul li.dropdown.active > a {
    color: #00c6ff;
    font-weight: 600;
}

/* =========================
   CTA BUTTON
========================= */
.btn {
    background: #00c6ff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.btn:hover {
    background: #009edc;
}

/* =========================
   DROPDOWN (DESKTOP + MOBILE SAFE)
========================= */
.dropdown {
    position: relative;
}

/* Hidden by default */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #0b1c2d;
    border-radius: 4px;
    padding: 6px 0;
    display: none;
    z-index: 3000;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 16px;
    color: #fff;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #00c6ff;
}

/* Desktop hover */
@media (min-width: 769px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

/* =========================
   HAMBURGER MENU
========================= */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* =========================
   MOBILE NAVIGATION
========================= */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar {
        padding-left: 55px;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0b1c2d;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 15px 0;
    }

    .main-nav ul li a {
        padding: 12px 20px;
        display: block;
    }

    /* Mobile dropdown (controlled by .open via JS) */
    .dropdown-menu {
        position: static;
        background: #123c63;
        max-height: 0;
        overflow: hidden;
        display: block;
        transition: max-height 0.3s ease;
    }

    .dropdown.open > .dropdown-menu {
        max-height: 500px;
    }

    .arrow {
        font-size: 12px;
        margin-left: 4px;
        transition: transform 0.3s;
    }

    .dropdown.open .arrow {
        transform: rotate(180deg);
    }
}

/* =========================
   HERO SECTION
========================= */
.hero {
    background: linear-gradient(120deg, #0b1c2d, #123c63);
    color: #fff;
    padding: 80px 0;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* =========================
   SECTIONS
========================= */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 30px;
    color: #0b1c2d;
}

.section-title p {
    color: #666;
    margin-top: 10px;
}

/* =========================
   SERVICES GRID
========================= */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-box {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
}

.services a.service-box {
    text-decoration: none;
    color: inherit;
}

/* =========================
   CTA SECTION
========================= */
.cta {
    background: #00c6ff;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.cta h2 {
    margin-bottom: 15px;
}

.cta a {
    background: #fff;
    color: #00c6ff;
    font-weight: bold;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #0b1c2d;
    color: #ccc;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

footer h4 {
    color: #fff;
    margin-bottom: 15px;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

footer ul li a:hover {
    color: #00c6ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #aaa;
}

/* =========================
   PORTFOLIO TAGS
========================= */
.tags {
    margin-top: 10px;
}

.tag {
    display: inline-block;
    background: #e8f6ff;
    color: #0b1c2d;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    margin: 4px 6px 0 0;
}

/* =========================
   CLIENT LOGOS
========================= */
.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

.client-logo {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: #0b1c2d;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* =========================
   ACCESSIBILITY
========================= */
a:focus,
button:focus {
    outline: 2px solid #00c6ff;
    outline-offset: 3px;
}

/* ===============================
   TRUSTED BY CLIENTS SECTION
   =============================== */

.trusted-clients {
    padding: 70px 0;
    background: #f9fafc;
}

.trusted-clients .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.trusted-clients .section-title p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 16px;
}

/* Industry Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.industry-card {
    background: #fff;
    border-radius: 10px;
    padding: 22px 10px;
    text-align: center;
    font-weight: 600;
    color: #333;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 991px) {
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===============================
   BRANDS THAT TRUST SMITECH
   =============================== */

.trusted-clients {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
    padding: 80px 0;
}

.trusted-clients .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.trusted-clients .section-title p {
    max-width: 720px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 16px;
}

/* LOGO GRID (NO SLIDER) */
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

/* LOGO CARD – EQUAL LOOK */
.client-logo {
    background: linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
    border-radius: 14px;
    height: 110px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* LOGO IMAGE NORMALIZATION */
.client-logo img {
    max-width: 150px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: contrast(1.05) saturate(1.05);
}

/* HOVER (SUBTLE) */
.client-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.14);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .client-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo {
        height: 95px;
    }

    .client-logo img {
        max-height: 45px;
    }
}


.service-box {
    display: block;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0b1c2d;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.service-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.service-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00c6ff;
    font-size: 13px;
}

.service-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
.services-cta {
    text-align: center;
    margin-top: 35px;
}

.btn-outline {
    background: transparent;
    color: #0b1c2d;
    border: 2px solid #0b1c2d;
    padding: 12px 26px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #0b1c2d;
    color: #fff;
}
.services-hero {
    padding: 70px 0;
    background: #f8f9fb;
    text-align: center;
}

.services-hero h1 {
    font-size: 36px;
    color: #0b1c2d;
    margin-bottom: 10px;
}

.services-list {
    padding: 60px 0;
}

.service-block {
    margin-bottom: 50px;
}

.service-block h2 {
    color: #0b1c2d;
    margin-bottom: 10px;
}

.service-block p {
    color: #555;
    margin-bottom: 10px;
}

.service-block ul {
    padding-left: 20px;
}

.service-block ul li {
    margin-bottom: 6px;
    color: #444;
}

.services-extra {
    background: #f8f9fb;
    padding: 60px 0;
}

.two-column-list {
    columns: 2;
    padding-left: 20px;
}

.services-process {
    padding: 60px 0;
}

.process-steps li {
    margin-bottom: 15px;
}

.services-cta-final {
    background: #0b1c2d;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.service-box {
    text-decoration: none;
    color: inherit;
}
/* =========================
   INDUSTRIES – TRUST SECTION
========================= */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
    margin-top: 35px;
}

.industry-card {
    background: #ffffff;
    border: 2px solid #e6edf5;
    border-radius: 10px;
    padding: 22px 18px;
    text-align: center;
    font-weight: 600;
    color: #0b1c2d;
    cursor: default;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Hover Effect */
.industry-card:hover {
    border-color: #0b1c2d;
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.15);
    background: #f8fbff;
}

/* Optional subtle accent bar */
.industry-card::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #00c6ff;
    margin: 12px auto 0;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover::after {
    opacity: 1;
}

/* =========================
   OUR PRODUCTS SECTION
========================= */

.our-products {
    background: #f8f9fb;
    padding: 70px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.product-card {
    background: #ffffff;
    border: 2px solid #e6edf5;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: #0b1c2d;
    box-shadow: 0 14px 32px rgba(0,0,0,0.15);
}

.product-card h3 {
    font-size: 18px;
    color: #0b1c2d;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-status {
    display: inline-block;
    padding: 5px 14px;
    font-size: 12px;
    border-radius: 20px;
    background: #e6f7ff;
    color: #007bbd;
    font-weight: 600;
}

/* CTA under products */
.products-cta {
    text-align: center;
    margin-top: 40px;
}
.product-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 18px;
}

.product-meta h4 {
    font-size: 13px;
    font-weight: 700;
    color: #0b1c2d;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-meta p {
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
}

.product-status.delivered {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
    background: #e8f8ef;
    color: #1e7e34;
    font-weight: 600;
}
/* =========================
   PRODUCT CTA – HORIZONTAL CARD (FIXED)
========================= */

.products-cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 70px 0;
}

.products-cta-card {
    width: 100%;
    max-width: 1000px;   /* 👈 THIS MAKES IT HORIZONTAL */
    background: #ffffff;
    border: 2px solid #e6edf5;
    border-radius: 16px;
    padding: 40px 50px;
    text-align: center;

    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.products-cta-card h3 {
    font-size: 26px;
    color: #0b1c2d;
    margin-bottom: 14px;
}

.products-cta-card p {
    max-width: 780px;   /* keeps text readable */
    margin: 0 auto 24px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}
/* =========================
   TRUSTED CLIENTS – BRAND LOGOS (FIXED)
========================= */

.trusted-clients .client-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.trusted-clients .brand-box {
    height: 110px;                  /* ✅ fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;                  /* ✅ breathing space */
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.trusted-clients .brand-box img {
    max-width: 100%;                /* ❗ prevent overflow */
    max-height: 70px;               /* ✅ key control */
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
}

/* subtle, professional hover */
.trusted-clients .brand-box:hover img {
    transform: scale(1.05);
}

