﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:Inter !important;
    background: #f7f7fb;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width:100%;
    max-width:1320px;
    margin: auto;
}

/* HEADER */

header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #08185b;
}

    .logo span {
        color: #ef1d2f;
    }

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

    .nav-links a {
        font-size: 15px;
        font-weight: 500;
        color: #08185b;
        position: relative;
    }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 100%;
            height: 3px;
            background: #ef1d2f;
            border-radius: 10px;
        }

.btn-contact {
    background: #ef1d2f;
    color: #fff;
    padding: 13px 24px;
    border-radius: 8px;
    font-weight: 600;
}

/* HERO */

.hero {
    background: #fff;
    padding:130px 0;
    font-family:inter;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.breadcrumb {
    font-size: 14px;
    color:red;
    margin-bottom: 25px;
    font-weight:bold;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #08185b;
    font-weight: 700;
    font-family: Montserrat;
}

.hero p {
    color: #666;
    line-height: 1.9;
    font-size: 18px;
    margin-bottom: 35px;
    font-family:Inter !important;
}

.features {
    display: flex;
    gap: 30px;
   /* margin-bottom: 40px;*/
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #08185b;
}

.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #08185b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-red {
    background: #ef1d2f;
    color: #fff;
    padding: 16px 28px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #ef1d2f;
    color: #ef1d2f;
    padding: 15px 28px;
    border-radius: 10px;
    font-weight: 600;
    background: #fff;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* SECTION TITLE */

.section {
    padding:20px 0;
}

.section-title {
    text-align: center;
    /*margin-bottom: 55px;*/
}

    .section-title h2 {
        font-size: 42px;
        color: #08185b;
        margin-bottom: 18px;
    }

.red-line {
    width: 80px;
    height: 4px;
    background: #ef1d2f;
    margin: auto;
    border-radius: 10px;
}

/* CARDS */

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.card2 {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-6px);
    }

    .card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.card-content {
    padding: 25px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #08185b;
    font-family:Montserrat;
}

.card p {
    color: #666;
    line-height: 1.8;
    font-family:inter !important;
}

/* TYPES */

.types {
    background: #fff;
    border-radius: 25px;
    padding: 50px;
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    gap: 40px;
    align-items: center;
}

    .types img {
        width: 100%;
        border-radius: 20px;
        height: 100%;
    }

.types-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 30px;
}

.type-box {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 16px;
    transition: 0.3s;
}

    .type-box:hover {
        border-color: #ef1d2f;
    }

    .type-box h4 {
        margin-bottom: 10px;
        font-size: 20px;
        color: #08185b;
    }

    .type-box p {
        color: #666;
        line-height: 1.7;
        font-size:17px;
    }

/* BOTTOM GRID */

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 70px;
}

.info-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
}

    .info-box h3 {
        font-size: 34px;
        margin-bottom: 25px;
        color: #08185b;
    }



.industry-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.industry {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    font-weight: 600;
    color: #08185b;
    transition: 0.3s;
}

    .industry:hover {
        background: #ef1d2f;
        color: #fff;
    }

/* RESPONSIVE */

@media(max-width:992px) {

    .hero-wrapper,
    .types,
    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 45px;
    }
}

@media(max-width:768px) {

    .nav-links {
        display: none;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }
}

/* Start New */

.cards-wrapper {
    display: flex;
    gap: 18px;
    max-width: 100%;
    margin: auto;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 33.33%;
    display: flex;
    min-height: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/*.card-content{
      width:55%;
      padding:22px 18px;
      display:flex;
      flex-direction:column;
      justify-content:flex-start;
    }*/

.icon {
    width: 38px;
    height: 38px;
    border: 2px solid #1d1d4f;
    border-radius: 4px;
    margin-bottom: 18px;
    position: relative;
}

    /* Different Icons */
    .icon.monitor::before {
        content: '';
        position: absolute;
        width: 18px;
        height: 2px;
        background: #1d1d4f;
        bottom: -8px;
        left: 8px;
    }

    .icon.megaphone {
        border: none;
    }

        .icon.megaphone::before {
            content: '📢';
            font-size: 30px;
            position: absolute;
            top: -3px;
            left: 0;
        }

    .icon.stand {
        border: none;
    }

        .icon.stand::before {
            content: '⌂';
            font-size: 32px;
            position: absolute;
            top: -2px;
            left: 2px;
            color: #1d1d4f;
            transform: rotate(180deg);
        }

h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
}

p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

.card-image {
    width: 45%;
    height: 100%;
}

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Responsive */
@media(max-width:900px) {
    .cards-wrapper {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }
}

.features,
.sheet-types,
.industries,
.technical {
    padding:20px 0;
}

h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 38px;
}

.feature-grid,
.sheet-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}


.sheet-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,.05);
}

    .sheet-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .sheet-card a {
        color: #e81d25;
        font-weight: 600;
        text-decoration: none;
    }

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.industry-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

    .industry-card img {
        width: 100%;
        height: 170px;
        object-fit: cover;
    }

    .industry-card span {
        display: block;
        padding: 15px;
        font-weight: 600;
        text-align: center;
    }

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.spec-table,
.comparison {
    background: white;
    padding: 25px;
    border-radius: 12px;
}


.page-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f5f7fc;
    border: 1px solid #e6e9f2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .feature-icon i {
        font-size: 28px;
        color: #1c2554;
    }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .feature-list li {
        margin-bottom: 10px;
        font-size: 16px;
        color: #333;
    }

        .feature-list li i {
            color: #28a745;
            margin-right: 10px;
            font-size: 14px;
        }


table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

td, th {
    border: 1px solid #e5e5e5;
    padding: 10px 12px;
    font-size:16px;
}

.spec-table td:first-child {
    width: 40%;
    font-weight: 500;
    color: #333;
}

.spec-table td:last-child {
    color: #555;
}

/* Comparison Table */

.compare-table th {
    background: #f3f4f8;
    font-weight: 700;
    text-align: center;
}

.red-head {
    background: #d91f26 !important;
    color: #fff;
}

.compare-table td {
    text-align: center;
}

    .compare-table td:first-child {
        text-align: left;
        font-weight: 500;
    }

.check {
    color: #22a447;
    font-size: 18px;
    font-weight: bold;
}

.cross {
    color: #000;
    font-size: 18px;
    font-weight: bold;
}
