html,
body {
    overflow-x: hidden;
}

body {
    /* background: #f4f4f4; */
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.6;
}

/* HEADER */
.ms-header {
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
    height: 64px;
    position: relative;
    z-index: 9999;
}

/* Remove underline + keep black color in navbar links */
.nav-menu a,
.drop-btn a {
    text-decoration: none !important;
    color: #262626 !important;
}

.nav-menu a:hover,
.drop-btn a:hover {
    text-decoration: none !important;
    color: #262626 !important;
}

.has-dropdown::after {
    color: #262626 !important;
}

.container {
    max-width: 1440px;
    margin: auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 41px;
}

/* Hamburger for mobile */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #262626;
}

/* Desktop Nav */
.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-item,
.drop-btn {
    font-size: 15px;
    color: #262626;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.nav-item:hover,
.drop-btn:hover {
    color: #0067b8;
}

.has-dropdown::after {
    content: "▼";
    font-size: 10px;
    margin-left: 6px;
}

/* Header Actions (Search, Cart, Sign-in) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 26px;
}

.action-link {
    font-size: 16px;
    color: #262626;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.action-link:hover {
    color: #0067b8;
}

.action-link span {
    display: none;
    /* Hide text on desktop if you want icon-only like MS */
}

/* ===== MEGA MENU (Desktop) ===== */
.mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 44px;
    left: -409px;
    width: 1140px;
    background: #ffffff;
    border-top: 3px solid #0067b8;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    padding: 32px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .35s ease;
    display: flex;
    justify-content: center;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-content {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.mega-column {
    min-width: 170px;
}

.mega-column h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #262626;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column li {
    margin-bottom: 10px;
}

.mega-column a {
    font-size: 14px;
    color: #616161;
    text-decoration: none;
}

.mega-column a:hover {
    color: #0067b8;
    text-decoration: underline;
}

.mega-column ul ul {
    margin-top: 6px;
    padding-left: 16px;
}

.mega-column ul ul a {
    font-size: 13.5px;
}

/* Simple Dropdown (Desktop) */
.simple-dropdown {
    position: relative;
}

.simple-menu {
    position: absolute;
    top: 41px;
    left: 0;
    min-width: 320px;
    background: #fff;
    border-top: 3px solid #0067b8;
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s ease;
}

.simple-dropdown:hover .simple-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.simple-menu a {
    display: block;
    padding: 12px 28px;
    font-size: 14px;
    color: #262626;
    text-decoration: none;
}

.simple-menu a:hover {
    background: #f0f6ff;
    color: #0067b8;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    z-index: 9998;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 9999;
    padding: 20px;
}

.mobile-menu.open,
.mobile-menu-overlay.open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(238 229 229);
    z-index: 9998;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav>ul>li {
    border-bottom: 1px solid #eee;
}

.mobile-nav a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #262626;
    text-decoration: none;
}

.mobile-nav .has-submenu>a::after {
    content: "+";
    float: right;
    font-size: 20px;
    /* margin-left: 187px; */

}

.mobile-nav .has-submenu.open>a::after {
    content: "−";
}

.mobile-submenu {
    display: none;
    padding-left: 20px;
    background: #f9f9f9;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu a {
    padding: 10px 0;
    font-size: 15px;
}

.mobile-mega-columns {
    display: none;
    padding-left: 20px;
}

.mobile-mega-columns.open {
    display: block;
}

.mobile-column {
    margin-bottom: 20px;
}

.mobile-column h3 {
    font-size: 15px;
    margin: 15px 0 10px;
    color: #0067b8;
}

@media (max-width: 1024px) {
    .hamburger {
        display: block;
        position: absolute;
        left: 20px;
        z-index: 1000;
    }


    .nav-menu {
        display: none;
    }

    .container {
        position: relative;
        justify-content: center;
        padding: 0 20px;
        /* લોગો વચ્ચે */
    }

    .action-link span {
        display: inline;
        font-size: 14px;
    }

    .header-actions {
        display: none !important;
    }

    .hamburger {
        display: block;

    }

    .mobile-close-header {
        position: absolute;
        right: 20px;
        z-index: 1000;
        color: #262626;
        cursor: pointer;
    }

    .logo {
        margin: 0 auto;
    }
}

@media (min-width: 1025px) {
    .action-link span {
        display: none;
    }
}

@media (max-width: 1024px) {
    .mobile-menu.open~.ms-header .hamburger {
        display: none !important;
    }

    .mobile-menu.open~.ms-header .container {
        justify-content: center;
    }

    .mobile-menu.open~.ms-header .container::after {
        content: '×';
        font-size: 28px;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #262626;
        z-index: 10000;
    }

    .mobile-menu.open~.ms-header .container::after {
        pointer-events: auto;
    }
}


/* index-Hero Slider Section */
/* ==================== HERO SLIDER ==================== */
.home-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Caption - Image જેવો exact look */
.hero-caption {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: #fff;
    max-width: 750px;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
}

/* Red line + Top Text */
.hero-caption::before {
    content: '';
    display: block;
    width: 37px;
    height: 4px;
    background: #e30613;
    margin-bottom: -17px;
}

.hero-caption .top-text {
    font-family: "Oleo Script Swash Caps", system-ui;
    font-size: 18px;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.95;
    font-weight: 700;
}


.hero-caption h1 {
    font-family: "Oleo Script Swash Caps", system-ui;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.05;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-caption .bottom-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
}

.btn-explore {
    font-family: 'Poppins', sans-serif;
    background: #e30613;
    color: #fff;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-explore:hover {
    background: #c70410;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3);
}

/* Play/Pause Button - Red like image */
.video-control {
    position: absolute;
    bottom: 40px;
    right: 60px;
    z-index: 3;
}

.play-pause-btn {
    width: 60px;
    height: 60px;
    background: #e30613;
    /* Red background */
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
}

.play-pause-btn:hover {
    background: #c70410;
    transform: scale(1.15);
}

.play-pause-btn i {
    margin-left: 4px;
}

/* Dots - Active red like image */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 2;
}

.hero-dots .dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.4s;
}

.hero-dots .dot.active {
    background: #e30613;
    /* Red active dot */
    width: 16px;
    height: 16px;
    transform: scale(1.2);
}


/* index-abb-section */
.abb-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

/* ================= HEADER ================= */
.abb-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.abb-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.abb-header p {
    margin-top: 12px;
    color: #555;
    max-width: 600px;
}

.abb-arrows {
    margin-top: 120px;
    /* <-- aa value vadha-ghata kari saki */
}

.abb-arrows button {
    width: 44px;
    height: 44px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
    margin-left: 6px;
}

.abb-arrows button:hover {
    background: #f2f2f2;
}

/* ================= SLIDER ================= */
.abb-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.abb-slider {
    display: flex;
    gap: 2px;
    transition: transform 0.6s ease;
}

/* ================= CARD ================= */
.abb-card {
    position: relative;
    min-width: 380px;
    height: 420px;
    overflow: hidden;
    cursor: pointer;
}

.abb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.abb-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
}

/* ================= TEXT (DEFAULT) ================= */
.card-text {
    position: absolute;
    bottom: 4px;
    left: 0px;
    width: 100%;
    background-color: #000000bf;
    right: 24px;
    color: #fff;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.card-text h4 {
    font-size: 18px;
    margin-bottom: 6px;
    text-align: center;
}

.card-text p {
    font-size: 13px;
    opacity: 0.85;
    text-align: center;
}

/* ================= HOVER OVERLAY ================= */
.card-overlay {
    position: absolute;
    inset: 0;
    background: #5b5cf0;
    color: #fff;
    padding: 30px;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.6s ease;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-overlay h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.card-overlay p {
    font-size: 14px;
    line-height: 1.4;
}

.card-overlay .arrow {
    margin-top: 20px;
    font-size: 26px;
}

/* ================= HOVER EFFECT ================= */
.abb-card:hover img {
    transform: scale(1.05);
}

.abb-card:hover .card-text {
    opacity: 0;
}

.abb-card:hover .card-overlay {
    opacity: 1;
    transform: translateX(0);
}

/* ================= BUTTON ================= */
.explore-btn {
    margin-top: 40px;
}

.explore-btn a {
    background: #e60000;
    color: #fff;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}


.abb-top {
    max-width: 820px;
    padding: 60px 20px;
}

.abb-top h1 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.abb-top p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* index-containerglobal  */
.containerglobal {
    max-width: 1409px;
    margin: auto;
    padding: 0 20px 80px;

}

/* LAYOUT */
.main-layout {
    display: flex;
    gap: 60px;
}

/* MENU */
.menu {
    width: 28%;
}

.menu ul {
    list-style: none;
}

.menu li {
    color: #9a9a9a;
    margin-bottom: 26px;
    cursor: pointer;
    padding-left: 22px;
    position: relative;
}

.menu li.active {
    color: #000;
    font-weight: 600;
}

.menu li.active::before {
    content: "→";
    position: absolute;
    left: 0;
}

/* CONTENT */
.content-area {
    width: 72%;
}

.image-section {
    display: none;
    position: relative;
}

.image-section.active {
    display: block;
}

.image-section img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* OVERLAY */
.overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 50px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, .85), rgba(0, 0, 0, .2));
    color: #fff;
}

.overlay h2 {
    font-size: 26px;
    margin-bottom: 14px;
}

.overlay p {
    font-size: 14px;
    max-width: 650px;
    line-height: 1.6;
}


/* index-stories */
.stories {
    max-width: 1320px;
    margin: 80px auto;
    padding: 0 20px;
}

/* HEADER */
.stories-header {
    display: block;
    margin-bottom: 40px;
}

.stories-header h2 {
    font-size: 39px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

/* BUTTON */
.btn-outline {
    border: 1.5px solid #111;
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: #111;
    display: inline-flex;
    align-items: center;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #111;
    color: #fff;
}

/* GRID */
.stories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* LEFT BIG STORY */
.story-big img {
    width: 97%;
    height: 540px;
    object-fit: cover;
}

.story-content {
    padding-top: 20px;
}

.story-tag {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
    display: block;
}

.story-big h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.story-big p {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
}

/* RIGHT SIDE */
.story-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* HORIZONTAL CARD */
.story-card.horizontal {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.story-card.horizontal img {
    width: 50%;
    height: 250px;
    object-fit: cover;
}

.story-text {
    width: 55%;
}

.story-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 8px 0;
}

.story-text p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* HOVER EFFECT (ABB-LIKE) */
.story-big img,
.story-card.horizontal img {
    transition: transform 0.5s ease;
}

.story-big:hover img,
.story-card.horizontal:hover img {
    transform: scale(1.03);
}



/* index-latest-news */
.latest-news {
    max-width: 1320px;
    margin: 80px auto;
    padding: 0 20px;
}

.news-title {
    font-size: 39px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-family: "ABBvoiceDisplay", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* GRID */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

/* CARD */
.news-card {
    cursor: pointer;
}

.news-img {
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover img {
    transform: scale(1.06);
}

/* CONTENT */
.news-content {
    padding-top: 18px;
}

.news-tag {
    font-size: 11px;
    font-weight: 600;
    color: #777;
    display: block;
    margin-bottom: 8px;
}

.news-content h3 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #111;
}

.news-date {
    font-size: 12px;
    color: #666;
}

/* BUTTON */
.news-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 9px 22px;
    border: 1.5px solid #111;
    border-radius: 999px;
    text-decoration: none;
    font-size: 13px;
    color: #111;
    transition: 0.3s ease;
}

.news-btn:hover {
    background: #111;
    color: #fff;
}

/* index-abb */
.abb-hero {
    position: relative;
    min-height: 75vh;
    background: url("images/technology.webp") no-repeat right center;
    background-size: cover;
    color: #fff;
    height: 650px;
}

.overlaynew {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, .8) 35%, rgb(0 0 0 / 69%) 55%, rgb(0 0 0 / 41%) 75%, rgb(0 0 0 / 54%) 100%);

}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 50vh;
    padding: 100px 80px;
}

/* LEFT */
.hero-left h1 {
    font-size: 38px;
    margin-bottom: 30px;
}

.hero-left ul {
    list-style: none;
    padding: 0;
}

.hero-left li {
    margin-bottom: -6px;
    font-size: 18px;
    padding-top: 32px;
}

.hero-left li.active {
    color: #fff;
    font-weight: 600;
}

/* RIGHT */
.hero-right {
    max-width: 520px;
    align-self: center;
    padding-top: 7px;
}

.hero-right h2 {
    font-size: 24px;
    margin-bottom: 14px;
}

.hero-right p {
    font-size: 20px;
    line-height: 1.6;
    color: #ddd;
}

.btn {
    border: 1.5px solid #fff;
    padding: 8px 18px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}



/* index-contact-section */
.contact-section {
    padding: 74px 24px;
    background: #fff;
}

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.card-textnew {
    font-size: 18px;
    margin: 25px 0;
    font-weight: 500;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1.5px solid #000;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: 0.3s ease;
}

.card-btn:hover {
    background: #000;
    color: #fff;
}

/* ────────────────────────────────────────────────
   RESPONSIVE – ONLY MEDIA QUERIES (paste at the very end)
───────────────────────────────────────────────── */

/* Tablet / iPad size (~1024px and below) */
@media (max-width: 1024px) {

    .home-hero {
        height: 75vh;
        min-height: 520px;
    }

    .hero-caption {
        left: 30px;
        right: 30px;
        text-align: center;
    }

    .hero-caption h1 {
        font-size: 46px;
    }

    .hero-caption .bottom-text {
        font-size: 18px;
    }

    .abb-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .abb-arrows {
        align-self: flex-end;
    }

    .abb-card {
        min-width: 48%;
        height: 380px;
    }

    .main-layout {
        flex-direction: column;
    }

    .menu,
    .content-area {
        width: 100%;
    }

    .main-layout {
        flex-direction: column;
    }

    .menu ul {
        justify-content: flex-start;
        gap: 8px;
    }

    .menu li {
        font-size: 13.5px;
        padding: 8px 14px;
    }

    .image-section img {
        height: 320px;
    }

    .stories-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 70px 40px;
        text-align: center;
    }

    .hero-right {
        margin: -13px auto;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-caption::before {
        margin-left: 34px;
        margin-bottom: 20px;
    }

    .abb-header h2 {
        font-size: 25px;
    }

    .abb-top h1 {
        font-size: 17px;
    }

    .news-title {
        font-size: 33px;
    }

    .abb-hero {
        height: auto !important;
        min-height: 400px;
        background-position: center 30%;
    }


}


/* Mobile phones (~768px and below) */
@media (max-width: 768px) {

    .hero-caption {
        left: 10px;
        right: 10px;
        padding: 0 10px;
    }

    .hero-caption h1 {
        font-size: clamp(24px, 7vw, 36px);
        margin: 8px 0 15px;
    }

    .hero-caption .top-text {
        font-size: clamp(12px, 3vw, 15px);
        letter-spacing: 3px;
    }

    .hero-caption .bottom-text {
        font-size: clamp(13px, 3vw, 16px);
        margin-bottom: 20px;
    }

    .btn-explore {
        padding: 10px 24px;
        font-size: 14px;
    }

    .video-control {
        bottom: 15px;
        right: 15px;
    }

    .play-pause-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .hero-dots {
        bottom: 15px;
        gap: 8px;
    }

    .hero-dots .dot {
        width: 8px;
        height: 8px;
    }

    .hero-dots .dot.active {
        width: 10px;
        height: 10px;
    }

    /* Cards swipe karva mate */
    .abb-slider-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .abb-slider-wrapper::-webkit-scrollbar {
        display: none;
    }

    .abb-card {
        min-width: 85%;
        height: 340px;
        scroll-snap-align: center;
    }

    .menu ul {
        flex-direction: column;
        /* ← mobile ma vertical list banavi do */
        align-items: stretch;
        gap: 10px;
    }

    .menu li {
        text-align: center;
        width: 100%;
        padding: 12px;
        border-radius: 10px;
        font-size: 15px;
    }

    .image-section img {
        height: 280px;
    }

    .overlay {
        padding: 25px 15px;
    }

    .overlay h2 {
        font-size: 20px;
    }

    .overlay p {
        font-size: 13.5px;
    }


    .stories-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .story-card.horizontal {
        flex-direction: column;
    }

    .story-card.horizontal img {
        width: 96%;
        height: 200px;
    }

    .news-img img {
        height: 220px;
    }

    .abb-hero {
        background-position: center 30%;
    }

    .hero-inner {
        padding: 50px 25px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left li {
        font-size: 16px;
        text-align: center;
        padding: 12px 0;
    }

    .hero-right h2,
    .hero-right p {
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card img {
        height: 260px;
    }
}

/* Chhota mobile (~480px and below) – 320px jode pan perfect */
@media (max-width: 480px) {

    .hero-caption h1 {
        font-size: clamp(20px, 6vw, 28px);
    }

    .hero-caption .bottom-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .btn-explore {
        padding: 8px 20px;
        font-size: 13px;
    }

    .play-pause-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .abb-card {
        min-width: 92%;
        height: 300px;
    }

    .menu li {
        font-size: 14px;
        padding: 0px;
    }

    .image-section img {
        height: 240px;
    }

    .overlay h2 {
        font-size: 18px;
    }

    .overlay p {
        font-size: 13px;
    }

    .story-big img {
        height: 240px;
    }

    .news-img img {
        height: 200px;
    }

    .hero-inner {
        padding: 40px 20px;
    }

    .hero-left h1 {
        font-size: 28px;
    }

    .hero-left li {
        font-size: 15px;
    }

    .hero-right h2 {
        font-size: 20px;
    }

    .hero-right p {
        font-size: 15px;
    }

    .section-title {
        font-size: 21px;
    }

    .contact-card img {
        height: 220px;
    }
}



/* all-footer */
.footer {
    background: #000;
    color: #ccc;
    padding: 80px 90px 0;
}

.footer-wrap {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
    gap: 90px;
}

/* LEFT */
.logofotter {
    color: #fff;
    font-size: 28px;
    margin-bottom: 22px;
}

.about p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.stay {
    color: #fff;
    margin-bottom: 14px;
}

/* NEWSLETTER */
.newsletter {
    width: 340px;
    background: #262626;
    border-radius: 40px;
    display: flex;
    overflow: hidden;
}

.newsletter input {
    flex: 1;
    padding: 15px 22px;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
}

.newsletter button {
    width: 60px;
    background: #2DB1B3;
    border: none;
    cursor: pointer;
    color: #000;
    font-size: 18px;
}

/* TITLES */
.title {
    color: #fff;
    margin-bottom: 26px;
    position: relative;
}

.title::after {
    content: "";
    width: 22px;
    height: 2px;
    background: #2DB1B3;
    position: absolute;
    left: 0;
    bottom: -8px;
}

/* LISTS */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 16px;
    position: relative;
    padding-left: -5px;
}

.footer-col ul li::before {
    content: "›";
    color: #2DB1B3;
    position: absolute;
    left: -33px;
    font-size: 22px;
    font-weight: 700;
    top: -6px;
}

/* CONTACT */
.info {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.icon {
    width: 42px;
    height: 42px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2DB1B3;
    margin-top: 10px;
}

/* SOCIAL */
.social {
    margin-top: 22px;
    display: flex;
    gap: 12px;
}

.social span {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.social span i {
    color: #fff;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 60px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-bottom .links a {
    color: #ccc;
    margin-left: 22px;
    text-decoration: none;
}

.design {
    margin-left: 22px;
    color: #2DB1B3;
}

/* TOP BUTTON */
.top-btn {
    width: 46px;
    height: 46px;
    background: #2DB1B3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
}

.address-section {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.address-box {
    flex: 1;
    background: #2fd4d48f;
    padding: 30px;
    border-radius: 14px;
    border-left: 4px solid #f5f5f5;
    /* off white */
}

.address-box h4 {
    color: #f5f5f5;
    /* off white */
    margin-bottom: 10px;
}

/* ==========================================================================
   FOOTER RESPONSIVE – ONLY MEDIA QUERIES
   ========================================================================== */

/* Tablet / Medium screens (≤1024px) */
@media (max-width: 1024px) {
    .footer {
        padding: 60px 40px 0;
    }

    .footer-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .newsletter {
        width: 100%;
        max-width: 380px;
        background: #262626;
        border-radius: 40px;
        display: flex;
        overflow: hidden;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom .links {
        margin-top: 10px;
    }

    .footer-bottom .links a {
        margin: 0 12px;
    }

    .top-btn {
        margin: 20px auto 0;
    }
}

/* Mobile phones (≤768px) */
@media (max-width: 768px) {
    .footer {
        padding: 50px 25px 0;
    }

    .footer-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about p {
        font-size: 14px;
    }

    .newsletter {
        flex-direction: row !important;
        /* input left, button right rakho */
        border-radius: 30px;
        height: 50px;
        /* fixed height rakho clean look mate */
        overflow: hidden;
    }

    .newsletter input {
        padding: 12px 16px;
        font-size: 13.5px;
        border-radius: 30px 0 0 30px;
    }

    .newsletter button {
        width: 60px !important;
        height: 100%;
        border-radius: 0 30px 30px 0;
        font-size: 16px;
        background: #2DB1B3;
        color: #000;
    }

    .title {
        font-size: 18px;
    }

    .footer-col ul li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .info {
        font-size: 14px;
    }

    .icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .social span {
        width: 36px;
        height: 36px;
    }

    .footer-bottom {
        font-size: 13px;
        padding: 20px 0;
    }

    .footer-bottom .links a {
        display: block;
        margin: 8px 0;
    }

    .top-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* Very small mobile (≤480px – 320px jode pan perfect) */
@media (max-width: 480px) {
    .footer {
        padding: 40px 20px 0;
    }

    .logofotter {
        font-size: 24px;
    }

    .about p {
        font-size: 13.5px;
        line-height: 1.7;
    }

    .stay {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .newsletter {
        height: 46px;
        border-radius: 25px;
    }

    .newsletter input {
        padding: 10px 14px;
        font-size: 13px;
    }

    .newsletter button {
        width: 50px !important;
        font-size: 15px;
    }

    .title {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .footer-col ul li {
        font-size: 13.5px;
    }

    .info p {
        font-size: 13.5px;
    }

    .social {
        gap: 10px;
        justify-content: center;
    }

    .footer-bottom p,
    .footer-bottom .links a,
    .design {
        font-size: 12px;
    }

    .footer-bottom {
        gap: 15px;
    }

    .top-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ///////////////////////////////////////////////////////////// */

/* about-about-hero */

.about-hero {
    background: #fff;
    padding: 160px 0 70px;
}

.about-container {
    max-width: 1473px;
    margin: auto;
    padding: 0 24px;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 80px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 200px;
    color: #111;
    text-transform: uppercase;
}

/* ABB Like Grid */
.about-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 0px;
    align-items: center;
}

/* LEFT */
.about-left {
    position: relative;
    z-index: 5;
    transform: translateX(55px);
    /* overlap on video like ABB */
    padding-right: 30px;
}

.about-left-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.05;
    margin: -135px 0 22px;
    color: #111;
    text-transform: uppercase;
}

.about-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    max-width: 520px;
    margin: 0 0 16px;
}

.about-small-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 18px 0 10px;
}

.about-values {
    margin: 0;
    padding-left: 18px;
    font-size: 17px;
}

.about-values li {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

/* RIGHT VIDEO */
.about-right {
    position: relative;
    z-index: 1;
}

.about-media {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}

/* thumbnail image */
.about-thumb {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* ABB gradient overlay */
.about-poster {
    height: 500px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;

    background: radial-gradient(circle at 20% 60%,
            rgba(255, 0, 0, 0.85) 0%,
            rgba(255, 0, 0, 0.55) 35%,
            rgba(255, 0, 0, 0.15) 60%,
            rgba(0, 0, 0, 0.00) 80%),

        radial-gradient(circle at 85% 60%,
            rgba(80, 90, 255, 0.75) 0%,
            rgba(80, 90, 255, 0.35) 40%,
            rgba(0, 0, 0, 0.00) 75%);
}

/* PLAY BUTTON */
.about-play-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border: none;
    outline: none;
    background: #e60000;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.about-play-badge i {
    font-size: 16px;
    margin-left: 2px;
}

/* CAPTION */
.about-media-caption {
    position: absolute;
    left: 80px;
    bottom: 14px;
    color: #fff;
    z-index: 4;
}

.about-media-caption h4 {
    font-size: 13px;
    margin: 0 0 4px;
    font-weight: 600;
}

.about-media-caption p {
    font-size: 11px;
    margin: 0;
    opacity: 0.9;
}

/* about-purpose-section */
.purpose-section {
    background: #fff;
    padding: 80px 0;
}

.purpose-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 24px;
    color: #111;
    text-transform: uppercase;
}

.purpose-text {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
    color: #111;
    max-width: 1414px;
}

/* about-videomodel */
.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999999;
}

.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999999;
}

.video-modal.open {
    display: block;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.video-modal-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(920px, 92vw);
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.video-modal-box video {
    width: 100%;
    display: block;
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    z-index: 2;
}

.about-big-title {
    position: absolute;
    left: 60px;
    bottom: 171px;
    z-index: 5;

    font-size: 70px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.65);
}

/* about-numbers-section */

.numbers-section {
    background: #fff;
    padding: 90px 0 70px;
}

.numbers-container {
    max-width: 1473px;
    margin: auto;
    padding: 0 24px;
}

/* Title */
.numbers-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 24px;
}

/* Optional button */
.numbers-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.6px solid #111;
    padding: 12px 22px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #111;
    transition: 0.25s ease;
    margin: 20px 0 45px;
}

.numbers-btn:hover {
    background: #111;
    color: #fff;
}

/* Grid */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

/* Item */
.num-item {
    position: relative;
    padding: 55px 18px;
    border: none;
}

/* Top separate line (___  ___  ___) */
.num-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    width: 93%;
    height: 1px;
    background: #111;
}

/* Show bottom line only for last row */
.num-item:nth-child(4)::after,
.num-item:nth-child(5)::after,
.num-item:nth-child(6)::after {
    opacity: 1;
}

/* Number */
.num-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 500;
    margin: 0 0 14px;
    color: #111;
}

/* Text */
.num-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 0;
    color: #111;
    opacity: 0.85;
    line-height: 1.5;
    max-width: 260px;
}

.numbers-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 40px;
}


/* about-quote-section */
.quote-section {
    background: #fff;
    padding: 90px 0;
}

.quote-container {
    max-width: 1473px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* PERFECT CIRCLE (NO BLACK BORDER) */
.quote-img {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    border: 0;
    /* remove border */
    box-shadow: none;
    /* remove shadow */
}

/* Image fit properly */
.quote-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* face center */
    display: block;
}

/* Right content */
.quote-content {
    max-width: 950px;
}

.quote-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.18;
    color: #111;
    margin: 0 0 24px;
}

.quote-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #111;
    opacity: 0.7;
    margin: 0;
}

/* about-business-areas */
.business-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 800;
    text-transform: uppercase;
    color: #111;
    margin: 65px 0 79px;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.business-card {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

/* Image */
.business-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

/* Default bottom strip (always visible) */
.business-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 22px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(0, 0, 0, 0.55);
    color: #fff;

    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;

    z-index: 5;
}

.strip-arrow {
    font-size: 22px;
    font-weight: 500;
    opacity: 0;
    /* arrow hidden normal */
    transform: translateX(-8px);
    transition: 0.3s ease;
}

/* Hover Blue Overlay */
.business-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #5b5bf0;
    /* ABB hover blue */
    opacity: 0;
    transition: 0.35s ease;
    z-index: 3;
}

/* Hover effect */
.business-card:hover::after {
    opacity: 1;
}

.business-card:hover img {
    opacity: 0;
}

/* strip stays but looks cleaner */
.business-card:hover .business-strip {
    background: transparent;
}

.business-card:hover .strip-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* about-how-business */
.how-business {
    background: #fff;
    padding: 90px 0;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    /* image part bigger */
    align-items: start;
}

/* Left */
.how-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.05;
    color: #111;
    text-transform: uppercase;
    margin-top: 0px;
}

.how-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #444;
    max-width: 511px;
    margin: 0 0 26px;
}

/* Button (ABB Red) */
.how-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #e60000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: 0.25s ease;
}

.how-btn:hover {
    background: #c80000;
}

.how-arrow {
    font-size: 18px;
    line-height: 1;
}

.how-right img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: left center;
    /* 👈 left side show more */
    display: block;
}

/* about-gs-innovation */
.gs-innovation {
    background: #fff;
    padding: 0px 0;
}

.gs-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 24px;
}

.gs-innovation-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    /* left image bigger */
    gap: 60px;
    align-items: start;
}

/* LEFT IMAGE */
.gs-innovation-left {
    overflow: hidden;
    background: #f4f4f4;
}

.gs-innovation-left img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* RIGHT CONTENT */
.gs-innovation-right {
    padding-top: 10px;
}

.gs-innovation-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: -36px 0 18px;
    color: #111;
}

.gs-innovation-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 16px;
    max-width: 520px;
}

/* RED BUTTON ABB STYLE */
.gs-btn-red {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 26px;
    background: #e60000;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
}

.gs-btn-red:hover {
    background: #c40000;
    transform: translateY(-2px);
}

.gs-arrow {
    font-size: 18px;
    line-height: 1;
}

/* about-gs-sustainability */
.gs-sustainability {
    background: #fff;
    padding: 90px 0;
}

.gs-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 24px;
}

.gs-sus-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    /* right image bigger */
    gap: 60px;
    align-items: start;
}

/* LEFT CONTENT */
.gs-sus-left {
    padding-top: 10px;
}

.gs-sus-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: -28px 0 18px;
    color: #111;
}

.gs-sus-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 16px;
    max-width: 520px;
}

/* RIGHT IMAGE */
.gs-sus-right {
    overflow: hidden;
    background: #f4f4f4;
}

.gs-sus-right img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* RED BUTTON */
.gs-btn-red {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 26px;
    background: #e60000;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
}

.gs-btn-red:hover {
    background: #c40000;
    transform: translateY(-2px);
}

.gs-arrow {
    font-size: 18px;
    line-height: 1;
}

/* about-gs-history */
.gs-history {
    background: #fff;
    padding: 90px 0;
}

.gs-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 24px;
}

.gs-history-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
    align-items: start;
}

/* LEFT IMAGE */
.gs-history-left {
    overflow: hidden;
    background: #f4f4f4;
}

.gs-history-left img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* RIGHT CONTENT */
.gs-history-right {
    padding-top: 10px;
}

.gs-history-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 18px;
    color: #111;
}

.gs-history-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 18px;
    max-width: 520px;
}

/* RED BUTTON ABB STYLE */
.gs-btn-red {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    background: #e60000;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
}

.gs-btn-red:hover {
    background: #c40000;
    transform: translateY(-2px);
}

.gs-arrow {
    font-size: 18px;
    line-height: 1;
}

/* about-follow-section */
.follow-section {
    background: #fff;
    padding: 80px 0;
}

.follow-container {
    max-width: 1450px;
    margin: auto;
    padding: 0 24px;
}

.follow-card {
    background: #f6f6f6;
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
}

/* LEFT SIDE */
.follow-left {
    padding: 70px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.follow-icon {
    margin-bottom: 40px;
}

.follow-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 18px;
    color: #111;
}

.follow-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-width: 560px;
    margin: 0 0 40px;
}

/* SOCIAL BUTTONS */
.follow-social {
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-btn {
    width: 52px;
    height: 52px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: 0.25s ease;
}

.social-btn:hover {
    background: #e60000;
    /* ABB red style */
    transform: translateY(-2px);
}

/* RIGHT IMAGE */
.follow-right {
    padding: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.follow-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}


/* about-more-about-section */

.more-about-section {
    background: #fff;
    padding: 80px 0;
}

.more-about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.more-about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0 0 40px;
    color: #111;
    text-transform: uppercase;
}

/* 3 Cards Grid */
.more-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Card */
.more-card {
    background: #fff;
}

.more-card-img {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 2px;
}

.more-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* hover zoom like ABB */
.more-card:hover .more-card-img img {
    transform: scale(1.05);
}

.more-card-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin: 18px 0 10px;
    color: #111;
}

.more-card-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    max-width: 95%;
    margin: 0 0 18px;
}

/* Button ABB style */
.more-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 2px solid #111;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
}

.more-card-btn span {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.more-card-btn:hover {
    background: #111;
    color: #fff;
}

.more-card-btn:hover span {
    transform: translateX(4px);
}

/* ==========================================================================
   ABOUT PAGE – ONLY RESPONSIVE MEDIA QUERIES (paste at the very end)
   ========================================================================== */

/* Tablet / Landscape (≤1024px) */
@media (max-width: 1024px) {

    .about-title {
        font-size: 60px;
        margin-bottom: 120px;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-left {
        transform: none;
        padding-right: 0;
        text-align: center;
    }

    .about-left-title {
        font-size: 42px;
        margin: -80px 0 20px;
    }

    .about-desc {
        max-width: 100%;
        font-size: 15px;
    }

    .about-media,
    .about-poster {
        height: 420px;
    }

    .about-big-title {
        font-size: 50px;
        left: 40px;
        bottom: 120px;
    }

    .purpose-text {
        font-size: 24px;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .quote-img {
        width: 280px;
        height: 280px;
    }

    .quote-content h2 {
        font-size: 26px;
    }

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-grid,
    .gs-innovation-grid,
    .gs-sus-grid,
    .gs-history-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-right img,
    .gs-innovation-left img,
    .gs-sus-right img,
    .gs-history-left img {
        height: 400px;
    }

    .follow-card {
        grid-template-columns: 1fr;
    }

    .follow-left {
        padding: 50px 30px;
        text-align: center;
    }

    .follow-social {
        justify-content: center;
    }

    .more-about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .more-card-img {
        height: 280px;
    }
}

/* Mobile phones (≤768px) */
@media (max-width: 768px) {

    .about-hero {
        padding: 100px 0 50px;
    }

    .about-title {
        font-size: 48px;
        margin-bottom: 80px;
    }

    .about-left-title {
        font-size: 36px;
        margin: -60px 0 15px;
    }

    .about-desc,
    .purpose-text {
        font-size: 16px;
    }

    .about-media,
    .about-poster {
        height: 340px;
    }

    .about-big-title {
        font-size: 40px;
        left: 30px;
        bottom: 100px;
    }

    .about-play-badge {
        width: 44px;
        height: 44px;
        bottom: 15px;
        left: 15px;
    }

    .numbers-title {
        font-size: 42px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .num-item {
        padding: 40px 15px;
    }

    .num-item h3 {
        font-size: 42px;
    }

    .quote-content h2 {
        font-size: 22px;
    }

    .quote-img {
        width: 240px;
        height: 240px;
    }

    .business-grid {
        grid-template-columns: 1fr;
    }

    .business-card {
        height: 380px;
    }

    .business-title {
        font-size: 42px;
    }

    .how-title,
    .gs-innovation-title,
    .gs-sus-title,
    .gs-history-title {
        font-size: 40px;
    }

    .how-right img,
    .gs-innovation-left img,
    .gs-sus-right img,
    .gs-history-left img {
        height: 320px;
    }

    .follow-left {
        padding: 27px 5px;
    }

    .follow-title {
        font-size: 30px;
    }

    .follow-text {
        font-size: 16px;
    }

    .more-about-title {
        font-size: 40px;
    }

    .more-about-grid {
        grid-template-columns: 1fr;
    }

    .more-card-img {
        height: 260px;
    }

    .more-card-heading {
        font-size: 18px;
    }
}

/* Very small mobile (≤480px – 320px jode perfect) */
@media (max-width: 480px) {

    .about-hero {
        padding: 80px 0 40px;
    }

    .about-title {
        font-size: 38px;
        margin-bottom: 143px;
    }

    .about-left-title {
        font-size: 30px;
        margin: -50px 0 12px;
    }

    .about-desc,
    .purpose-text {
        font-size: 15px;
    }

    .about-media,
    .about-poster {
        height: 280px;
    }

    .about-big-title {
        font-size: 32px;
        left: 20px;
        bottom: 80px;
    }

    .about-play-badge {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .numbers-title {
        font-size: 36px;
    }

    .num-item h3 {
        font-size: 36px;
    }

    .num-item p {
        font-size: 13px;
    }

    .quote-content h2 {
        font-size: 20px;
    }

    .quote-img {
        width: 200px;
        height: 200px;
    }

    .business-title {
        font-size: 34px;
    }

    .business-card {
        height: 320px;
    }

    .how-title,
    .gs-innovation-title,
    .gs-sus-title,
    .gs-history-title {
        font-size: 31px;
    }

    .how-right img,
    .gs-innovation-left img,
    .gs-sus-right img,
    .gs-history-left img {
        height: 168px;
    }

    .follow-title {
        font-size: 28px;
    }

    .follow-text {
        font-size: 15px;
    }

    .more-about-title {
        font-size: 34px;
    }

    .more-card-img {
        height: 220px;
    }

    .more-card-heading {
        font-size: 17px;
    }

    .more-card-text {
        font-size: 13px;
    }
}


/* //////////////////////////////////////////////////////////////////// */

/* product-part */
/* product-abb-style-hero */
.abb-style-hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Background */
.abb-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* White Box */
.abb-style-card {
    position: relative;
    z-index: 2;
    background: #fff;
    width: 20%;
    max-width: 950px;
    padding: 25px 50px;
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.15);
    margin-right: 500px;
}

/* Red small line */
.abb-red-line {
    display: inline-block;
    width: 35px;
    height: 3px;
    background: #e60000;
    margin-bottom: 18px;
}

/* Small title */
.abb-small-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 25px 0;
    color: #000;
}

/* Main heading */
.abb-main-title {
    font-size: 17px;
    font-weight: 800;
    line-height: 2.2;
    margin: 0;
    color: #000;
}

/* product-abb-portfolio */

.abb-portfolio {
    padding: 90px 0;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
}

.abb-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   TOP HEADING (ALAG BLOCK)
================================ */
.abb-top-heading {
    margin-bottom: 60px;
    margin-left: 106px;
}

.abb-line {
    display: inline-block;
    width: 55px;
    height: 4px;
    background: #ff0000;
    margin-bottom: 18px;
}

.abb-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #111;
    margin: 0;
}

/* ================================
   BOTTOM GRID (LEFT CONTENT + RIGHT IMAGE)
================================ */
.abb-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.45fr;
    /* LEFT small, RIGHT big */
    /* gap: 80px; */
    align-items: start;
    /* ⭐ ABB LIKE (top align) */
}

/* LEFT CONTENT */
.abb-left {
    padding-left: 110px;
    margin-top: 0;
}

.abb-line-small {
    width: 35px;
    height: 4px;
    background: #ff0000;
    display: inline-block;
    margin-bottom: 25px;
}

.abb-subtitle {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin: 0 0 18px 0;
}

.abb-text {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin: 0 0 22px 0;
    max-width: 308px;
    /* ⭐ content narrow */
}

/* BUTTON */
.abb-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    padding: 14px 60px;
    background: #ff0000;
    color: #fff;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.abb-btn:hover {
    background: #cc0000;
}

/* RIGHT IMAGE */
.abb-right {
    justify-content: flex-end;
    align-items: flex-start;
}

.abb-right img {
    width: 100%;
    max-width: 780px;
    height: 360px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* product-abb-split-section */

.abb-split-section {
    padding: 90px 0;
    background: #fff;
    font-family: "Poppins", sans-serif;
}

.abb-split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 70px;
    align-items: start;
}

/* LEFT IMAGE */
.abb-split-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

/* RIGHT CONTENT */
.abb-split-content {
    padding-top: 10px;
}

/* RED LINE */
.abb-red-line {
    display: inline-block;
    width: 55px;
    height: 4px;
    background: #ff0000;
    margin-bottom: 22px;
}

/* TITLE */
.abb-split-title {
    font-size: 37px;
    font-weight: 800;
    line-height: 1.15;
    color: #111;
    margin: 0 0 28px 0;
}

/* TEXT */
.abb-split-text {
    font-size: 17px;
    line-height: 2;
    color: #555;
    margin: 0 0 35px 0;
}

/* BUTTON */
.abb-split-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 14px 65px;
    background: #ff0000;
    color: #fff;
    border-radius: 40px;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.abb-split-btn:hover {
    background: #cc0000;
}

/* product-abb-products */
.abb-products {
    padding: 0 0;
    background: #fff;
    font-family: "Poppins", sans-serif;
}

.abb-products-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.abb-product-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    /* align-items: center; */
    margin-bottom: 105px;
}

/* Reverse Layout */
.abb-product-card.reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.abb-product-card.reverse .abb-product-content {
    order: 2;
}

.abb-product-card.reverse .abb-product-image {
    order: 1;
}

/* Red line */
.abb-red-line {
    display: inline-block;
    width: 45px;
    height: 4px;
    background: #ff0000;
    margin-bottom: 18px;
}

/* Title */
.abb-product-title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin: 0 0 18px 0;
    line-height: 1.2;
}

/* Text */
.abb-product-text {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    max-width: 423px;
    margin-bottom: 25px;
}

/* Button */
.abb-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 55px;
    background: #ff0000;
    color: #fff;
    border-radius: 35px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.abb-btn:hover {
    background: #cc0000;
}

/* Image */
.abb-product-image img {
    width: 100%;
    height: 391px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin-bottom: 148px;
}

.abb-product-imagee img {
    width: 100%;
    height: 391px;
    /* object-fit: cover; */
    border-radius: 4px;
    display: block;
    margin-bottom: 32px;
}

/* product-abb-collage-solution */
.abb-collage-solution {
    padding: 70px 0;
    background: #fff;
    font-family: "Poppins", sans-serif;
}

.abb-collage-container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 7px;
    position: relative;
}

/* ===== COLLAGE GRID (8 images) ===== */
.abb-collage-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 320px 320px;
    /* 🔥 height increased */
    gap: 0;
    overflow: hidden;
    /* border: 2px solid #ff0000; */

}

.abb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Layout */
.i1 {
    grid-column: 1/2;
    grid-row: 1/2;
}

.i2 {
    grid-column: 2/3;
    grid-row: 1/2;
}

.i3 {
    grid-column: 3/5;
    grid-row: 1/2;
}

/* big */
.i4 {
    grid-column: 1/2;
    grid-row: 2/3;
}

.i5 {
    grid-column: 2/3;
    grid-row: 2/3;
}

.i6 {
    grid-column: 3/4;
    grid-row: 2/3;
}

.i7 {
    grid-column: 4/5;
    grid-row: 2/3;
}

.i8 {
    grid-column: 1/3;
    grid-row: 1/2;
    display: none;
}

/* card position ABB style */
.abb-solution-card {
    position: absolute;
    left: 170px;
    top: 170px;
    /* 🔥 center-left */
    width: 420px;
    background: #fff;
    padding: 32px 34px;
    border-radius: 3px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

/* overlay lines */
.abb-overlay-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 6;
}

.abb-sol-title {
    font-size: 30px;
    font-weight: 800;
    color: #111;
    margin: 0 0 18px 0;
}

.abb-sol-list {
    margin: 0;
    padding-left: 18px;
}

.abb-sol-list li {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

/* Discover button */
.abb-sol-btn {
    margin-top: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 26px;
    background: #ff0000;
    color: #fff;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.abb-overlay-svg {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
}

.abb-overlay-svg svg {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   PRODUCT PAGE – ONLY RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet / iPad size (≤1024px) */
@media (max-width: 1024px) {

    .abb-split-content,
    .abb-product-content {
        margin-left: -19px !important;
    }

    .abb-style-hero {
        height: 420px;
    }

    .abb-style-card {
        width: 40%;
        max-width: 700px;
        padding: 20px 40px;
        margin-right: 0;
        text-align: center;
    }

    .abb-main-title {
        font-size: 28px;
        line-height: 1.4;
    }

    .abb-small-title {
        font-size: 18px;
    }

    .abb-portfolio {
        padding: 70px 0;
    }

    .abb-top-heading {
        margin-left: 0;
        text-align: center;
    }

    .abb-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .abb-left {
        padding-left: 0;
        text-align: center;
    }

    .abb-right img {
        max-width: 100%;
        height: 300px;
    }

    .abb-split-section {
        padding: 130px 0;
    }

    .abb-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .abb-split-image img {
        height: 320px;
    }

    .abb-split-title {
        font-size: 32px;
    }

    .abb-products {
        padding: 0;
    }

    .abb-product-card,
    .abb-product-card.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 80px;
    }

    .abb-product-image img,
    .abb-product-imagee img {
        height: 320px;
        margin-bottom: 0;
    }

    .abb-product-title {
        font-size: 26px;
    }

    .abb-product-text {
        font-size: 15px;
    }

    .abb-collage-solution {
        padding: 60px 0;
    }

    .abb-collage-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 130px;
        gap: 5px;
    }

    .abb-solution-card {
        width: 85%;
        padding: 25px 20px;
        margin: 30px auto;
    }

    .abb-sol-title {
        font-size: 26px;
    }

    .abb-sol-list li {
        font-size: 14px;
    }
}

/* Mobile phones (≤768px) */
@media (max-width: 768px) {

    .abb-style-hero {
        height: 360px;
    }

    .abb-style-card {
        width: 85%;
        padding: 20px 30px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .abb-main-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .abb-small-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .abb-red-line {
        width: 30px;
        height: 3px;
    }

    .abb-portfolio {
        padding: 60px 0;
    }

    .abb-title {
        font-size: 38px;
    }

    .abb-subtitle {
        font-size: 26px;
    }

    .abb-text {
        font-size: 14px;
    }

    .abb-right img {
        height: 260px;
    }

    .abb-split-title {
        font-size: 28px;
    }

    .abb-split-text {
        font-size: 14px;
    }

    .abb-split-btn {
        padding: 12px 40px;
        font-size: 13px;
    }

    .abb-product-title {
        font-size: 22px;
    }

    .abb-product-text {
        font-size: 14px;
        max-width: 100%;
    }

    .abb-btn {
        padding: 12px 40px;
        font-size: 13px;
    }

    .abb-product-image img,
    .abb-product-imagee img {
        height: 240px;
    }

    .abb-collage-solution {
        padding: 50px 0;
    }

    .abb-collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
        gap: 4px;
    }

    .abb-solution-card {
        width: 90%;
        padding: 20px 15px;
        margin: 25px auto;
    }

    .abb-sol-title {
        font-size: 26px;
    }

    .abb-sol-list li {
        font-size: 13.5px;
        line-height: 1.6;
    }

    .abb-sol-btn {
        padding: 10px 30px;
        font-size: 13px;
    }

}

/* Very small mobile (≤480px – 320px perfect) */
@media (max-width: 480px) {

    .abb-style-hero {
        height: 300px;
    }

    .abb-style-card {
        width: 61%;
        padding: 15px 15px;
    }

    .abb-main-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .abb-small-title {
        font-size: 14px;
    }

    .abb-red-line {
        width: 25px;
        height: 3px;
    }

    .abb-portfolio {
        padding: 50px 0;
    }

    .abb-title {
        font-size: 32px;
    }

    .abb-subtitle {
        font-size: 22px;
    }

    .abb-text {
        font-size: 13.5px;
    }

    .abb-btn {
        padding: 10px 35px;
        font-size: 13px;
    }

    .abb-right img {
        height: 220px;
    }

    .abb-split-title {
        font-size: 26px;
    }

    .abb-split-text {
        font-size: 13.5px;
    }

    .abb-product-title {
        font-size: 20px;
    }

    .abb-product-text {
        font-size: 13.5px;
    }

    .abb-product-image img,
    .abb-product-imagee img {
        height: 200px;
        margin-top: 121px;
    }

    .abb-collage-solution {
        padding: 40px 0;
    }

    .abb-collage-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 120px;
        gap: 4px;
    }

    .abb-solution-card {
        width: 82%;
        padding: 18px 12px;
        margin-left: -153px;
    }

    .abb-sol-title {
        font-size: 22px;
    }

    .abb-sol-list li {
        font-size: 13px;
    }

    .abb-sol-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}


/* ////////////////////////////////////////////////////// */

/* service-part */

/* service-abb-hero */
.abb-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.abb-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.abb-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.abb-hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    padding: 0 60px;
    color: #fff;
}

.abb-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.abb-hero-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.abb-hero-btns {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}


.abb-feasibility {
    padding: 80px 0;
    background: #fff;
}

.abb-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.abb-layout {
    position: relative;
    min-height: 520px;
}

/* Right side image like ABB */
.abb-img-box {
    width: 68%;
    margin-left: auto;
    /* right side push */
    height: 520px;
    overflow: hidden;
}

.abb-img-box img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    display: block;
}

/* Left white box overlap on image */
.abb-content-box {
    position: absolute;
    left: 24;
    top: 45%;
    transform: translateY(-50%);
    width: 45%;
    background: #fff;
    padding: 24px 24px;
    z-index: 2;

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

.abb-red-line {
    display: inline-block;
    width: 40px;
    height: 4px;
    background: #ff0000;
    margin-bottom: 20px;
}

.abb-content-box h2 {
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 18px 0;
    line-height: 1.2;
    color: #000;
}

.abb-content-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 18px;
}

.abb-red-btn {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
}

.abb-red-btn:hover {
    opacity: 0.9;
}

/* ABB Alternate Section */
.abb-alt-section {
    padding: 80px 0;
    background: #fff;
}

.abb-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0;
}

.abb-alt-layout {
    position: relative;
    min-height: 520px;
}

/* IMAGE BOX */
.abb-alt-image {
    width: 68%;
    height: 520px;
    overflow: hidden;
}

.abb-alt-image img {
    width: 90%;
    height: 90%;
    /* object-fit: cover; */
    display: block;
}

/* CONTENT BOX */
.abb-alt-content {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: min(620px, 92%);
    background: #fff;
    padding: 24px 24px;
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

.abb-red-line {
    display: inline-block;
    width: 40px;
    height: 4px;
    background: #ff0000;
    margin-bottom: 20px;
}

.abb-alt-content h2 {
    font-size: 44px;
    font-weight: 800;
    margin: 0 0 18px 0;
    line-height: 1.2;
    color: #000;
}

.abb-alt-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 18px;
}

.abb-red-btn {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
}

.abb-red-btn:hover {
    opacity: 0.9;
}

/* IMAGE LEFT + CONTENT RIGHT */
.abb-left-img .abb-alt-image {
    margin-right: auto;
}

.abb-left-img .abb-alt-content {
    right: 96px;
}

/* IMAGE RIGHT + CONTENT LEFT */
.abb-right-img .abb-alt-image {
    margin-left: auto;
}

.abb-right-img .abb-alt-content {
    left: 0;
}


/* service-next-step */
.next-steps {
    padding: 70px 0;
    color: #fff;
    margin-bottom: 86px;
    background: linear-gradient(90deg, #2b2b5f 0%, #ff0000 55%, #ff0000 100%);
}

.next-steps-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.next-steps-title {
    font-size: 60px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.next-card {
    background: transparent;
}

.next-card-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
}

.next-card-img img {
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.4s ease;
}

.next-card:hover .next-card-img img {
    transform: scale(1.05);
}

.next-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 18px 0 10px;
}

.next-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 18px;
    max-width: 95%;
}

.next-btn {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.next-btn:hover {
    opacity: 0.9;
}

/* ==========================================================================
   ALL LEFT-RIGHT SECTIONS – CENTER STACK ON MOBILE/TABLET
   ========================================================================== */

/* Tablet size (≤1024px) – 2 column → stack + center */
@media (max-width: 1024px) {

    /* Hero sections (abb-hero, abb-style-hero, etc.) */
    .abb-hero,
    .abb-style-hero {
        height: auto;
        min-height: 500px;
        padding: 60px 0;
        text-align: center;
    }

    .abb-hero-content,
    .abb-style-card {
        max-width: 90%;
        margin: 0 auto;
        padding: 18px 20px;
    }

    /* All grid layouts (portfolio, split, alt, product cards, etc.) */
    .abb-grid,
    .abb-layout,
    .abb-alt-layout,
    .abb-product-card,
    .abb-split-container,
    .abb-collage-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    /* Image boxes – full width + center */
    .abb-img-box,
    .abb-alt-image,
    .abb-right,
    .abb-left,
    .abb-product-image,
    .abb-product-imagee,
    .abb-split-image {
        width: 100% !important;
        margin: 0 auto !important;
        order: 1;
        /* image upar */
    }

    .abb-img-box {
        height: 204px;
    }

    .abb-img-box img,
    .abb-alt-image img,
    .abb-right img,
    .abb-product-image img,
    .abb-product-imagee img,
    .abb-split-image img {
        height: 280px;
        object-fit: cover;
        margin: 0 auto;
        display: block;
    }

    /* Content boxes – full width + center after image */
    .abb-content-box,
    .abb-alt-content,
    .abb-product-content,
    .abb-split-content {
        width: 100% !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        order: 2;
        /* text niche */
        padding: 20px;
        text-align: center;
    }

    .abb-red-line {
        margin: 0 auto 15px;
        display: block;
    }

    .abb-red-btn,
    .abb-btn,
    .abb-split-btn {
        margin: 20px auto;
        display: inline-block;
        width: auto;
        min-width: 180px;
    }

    .abb-left-img .abb-alt-content {
        margin-top: -267px;
        margin-left: -17px;
    }

    .abb-right-img .abb-alt-content {
        margin-top: -267px;
        margin-left: -17px;
    }

    .next-steps-title {
        font-size: 43px;
    }

    .next-steps-grid {
        display: inline;
    }

    .next-card-img img {
        margin-left: -45px;
        margin-top: 50px;
    }
}

/* Mobile phones (≤768px) – full center stack */
@media (max-width: 768px) {

    .abb-hero,
    .abb-style-hero {
        min-height: 420px;
    }

    .abb-hero-content h1,
    .abb-main-title {
        font-size: 32px;
    }

    .abb-hero-content p {
        font-size: 15px;
    }

    .abb-grid,
    .abb-layout,
    .abb-alt-layout,
    .abb-product-card,
    .abb-split-container {
        gap: 35px;
    }

    .abb-img-box img,
    .abb-alt-image img,
    .abb-right img,
    .abb-product-image img,
    .abb-product-imagee img {
        height: 240px;
    }

    .abb-content-box h2,
    .abb-alt-content h2,
    .abb-product-title,
    .abb-split-title {
        font-size: 28px;
    }

    .abb-content-box p,
    .abb-alt-content p,
    .abb-product-text,
    .abb-split-text {
        font-size: 14px;
    }

    .abb-red-btn,
    .abb-btn,
    .abb-split-btn {
        padding: 12px 35px;
        font-size: 14px;
        min-width: 160px;
    }
}

/* Very small mobile (≤480px – 320px perfect center) */
@media (max-width: 480px) {

    .abb-hero,
    .abb-style-hero {
        min-height: 360px;
        padding: 40px 0;
    }

    .abb-hero-content h1,
    .abb-main-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .abb-hero-content p {
        font-size: 13.5px;
    }

    .abb-img-box img,
    .abb-alt-image img,
    .abb-right img,
    .abb-product-image img,
    .abb-product-imagee img {
        height: 200px;
    }

    .abb-content-box h2,
    .abb-alt-content h2,
    .abb-product-title,
    .abb-split-title {
        font-size: 24px;
    }

    .abb-content-box p,
    .abb-alt-content p,
    .abb-product-text,
    .abb-split-text {
        font-size: 13.5px;
    }

    .abb-red-btn,
    .abb-btn,
    .abb-split-btn {
        padding: 10px 30px;
        font-size: 13px;
        min-width: 140px;
        width: 66%;
        text-align: center;
    }

    .abb-content-box {
        left: -21px !important;
    }

    .abb-red-line {
        width: 30px;
        height: 3px;
    }
}

/* //////////////////////////////////////////////////////////////// */

/* industry */
.ind-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.ind-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ind-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 77%);
}

.ind-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    color: #fff;
}

.ind-hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ind-hero-content p {
    font-size: 16px;
    opacity: 0.9;
}

/* INTRO */
.ind-intro {
    padding: 60px 0 20px;
}

.ind-intro h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ind-intro p {
    max-width: 850px;
    color: #333;
    line-height: 1.7;
}

/* HEADING */
.ind-grid-section {
    padding: 30px 0 80px;
}

.ind-heading {
    margin-bottom: 25px;
}

.ind-red-line {
    display: inline-block;
    width: 45px;
    height: 4px;
    background: #ff0000;
    margin-bottom: 15px;
}

.ind-heading h2 {
    font-size: 52px;
    font-weight: 800;
    margin: 0;
}

/* GRID */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.ind-card {
    text-decoration: none;
    color: #000;
}

.ind-card-img {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
    background: #f2f2f2;
}

.ind-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.ind-card:hover .ind-card-img img {
    transform: scale(1.05);
}

.ind-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 12px;
}

/* CTA */
.ind-cta {
    padding: 60px 0;
    background: #f7f7f7;
}

.ind-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ind-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px;
}

.ind-cta-box p {
    margin: 0;
    color: #444;
}

.ind-cta-btn {
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 700;
    white-space: nowrap;
}

.ind-cta-btn:hover {
    opacity: 0.9;
}

/* ==========================================================================
   INDUSTRIES PAGE – ONLY RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet / Landscape (≤1024px) */
@media (max-width: 1024px) {

    .ind-hero {
        height: 60vh;
        min-height: 450px;
    }

    .ind-hero-content {
        max-width: 85%;
        padding: 0 30px;
        text-align: center;
    }

    .ind-hero-content h1 {
        font-size: 48px;
    }

    .ind-hero-content p {
        font-size: 15px;
    }

    .ind-intro {
        padding: 50px 0 20px;
        text-align: center;
    }

    .ind-intro h2 {
        font-size: 32px;
    }

    .ind-intro p {
        font-size: 15px;
        max-width: 90%;
        margin: 0 auto;
    }

    .ind-grid-section {
        padding: 30px 0 60px;
    }

    .ind-heading {
        text-align: center;
    }

    .ind-heading h2 {
        font-size: 42px;
    }

    .ind-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .ind-card-img {
        height: 140px;
    }

    .ind-card h3 {
        font-size: 17px;
    }

    .ind-cta {
        padding: 50px 0;
    }

    .ind-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }

    .ind-cta-box h2 {
        font-size: 24px;
    }

    .ind-cta-btn {
        width: auto;
        min-width: 180px;
        margin: 0 auto;
    }

    .ind-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2px;
    }

    .ind-card-img img {
        width: 89%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: 0.4s ease;
        padding: 15px;
    }
}

/* Mobile phones (≤768px) */
@media (max-width: 768px) {

    .ind-hero {
        height: 50vh;
        min-height: 380px;
    }

    .ind-hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .ind-hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .ind-intro {
        padding: 40px 0 15px;
    }

    .ind-intro h2 {
        font-size: 28px;
    }

    .ind-intro p {
        font-size: 14px;
    }

    .ind-grid-section {
        padding: 20px 0 50px;
    }

    .ind-heading h2 {
        font-size: 36px;
    }

    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .ind-card-img {
        height: 130px;
    }

    .ind-card h3 {
        font-size: 16px;
        margin-top: 10px;
    }

    .ind-cta {
        padding: 40px 0;
    }

    .ind-cta-box {
        padding: 25px 15px;
    }

    .ind-cta-box h2 {
        font-size: 22px;
    }

    .ind-cta-box p {
        font-size: 14px;
    }

    .ind-cta-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Very small mobile (≤480px – 320px perfect) */
@media (max-width: 480px) {

    .ind-hero {
        height: 45vh;
        min-height: 320px;
    }

    .ind-hero-content h1 {
        font-size: 28px;
        line-height: 1.1;
    }

    .ind-hero-content p {
        font-size: 13.5px;
        margin-bottom: 15px;
    }

    .ind-intro {
        padding: 30px 0 10px;
    }

    .ind-intro h2 {
        font-size: 24px;
    }

    .ind-intro p {
        font-size: 13.5px;
    }

    .ind-grid-section {
        padding: 20px 0 40px;
    }

    .ind-heading h2 {
        font-size: 32px;
    }

    .ind-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ind-card-img {
        height: 160px;
    }

    .ind-card h3 {
        font-size: 17px;
        text-align: center;
    }

    .ind-cta {
        padding: 30px 0;
    }

    .ind-cta-box {
        padding: 20px 0px;
    }

    .ind-cta-box h2 {
        font-size: 20px;
    }

    .ind-cta-box p {
        font-size: 13.5px;
    }

    .ind-cta-btn {
        padding: 10px 25px;
        font-size: 13px;
        width: 68%;
        text-align: center;
    }
}

/* /////////////////////////////////////////////////////// */

/* awards & apperciation */
.aw-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HERO */
.aw-hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.aw-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aw-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 59%);
}

.aw-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 850px;
}

.aw-hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin: 0 0 12px;
}

.aw-hero-content p {
    font-size: 16px;
    opacity: 0.92;
    line-height: 1.6;
}

/* INTRO */
.aw-intro {
    padding: 70px 0 30px;
    background: #fff;
}

.aw-line {
    display: inline-block;
    width: 45px;
    height: 4px;
    background: #ff0000;
    margin-bottom: 18px;
}

.aw-intro h2 {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 12px;
}

.aw-intro p {
    max-width: 900px;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* AWARDS GRID */
.aw-grid-section {
    padding: 30px 0 80px;
    background: #fff;
}

.aw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.aw-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.aw-card:hover {
    transform: translateY(-4px);
}

.aw-img {
    height: 220px;
    overflow: hidden;
}

.aw-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.aw-card:hover .aw-img img {
    transform: scale(1.05);
}

.aw-card-body {
    padding: 18px 18px 20px;
}

.aw-card-body h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px;
}

.aw-card-body p {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin: 0 0 12px;
}

.aw-year {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #ff0000;
}

/* CERTIFICATES */
.aw-certificates {
    padding: 70px 0;
    background: #f7f7f7;
}

.aw-cert-head h2 {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 10px;
}

.aw-cert-head p {
    margin: 0 0 25px;
    color: #444;
    line-height: 1.7;
}

.aw-cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.aw-cert-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.aw-cert-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* CTA */
.aw-cta {
    padding: 70px 0;
    background: #fff;
}

.aw-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background: #fff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.aw-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px;
}

.aw-cta-box p {
    margin: 0;
    color: #444;
}

.aw-btn {
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    white-space: nowrap;
}

.aw-btn:hover {
    opacity: 0.9;
}

/* ==========================================================================
   AWARDS & APPRECIATION PAGE – ONLY RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet / Landscape (≤1024px) */
@media (max-width: 1024px) {

    .aw-hero {
        height: 60vh;
        min-height: 450px;
    }

    .aw-hero-content {
        max-width: 85%;
        padding: 0 30px;
        text-align: center;
    }

    .aw-hero-content h1 {
        font-size: 48px;
    }

    .aw-hero-content p {
        font-size: 15px;
    }

    .aw-intro {
        padding: 50px 0 20px;
        text-align: center;
    }

    .aw-intro h2 {
        font-size: 32px;
    }

    .aw-intro p {
        font-size: 15px;
        max-width: 90%;
        margin: 0 auto;
    }

    .aw-grid-section {
        padding: 30px 0 60px;
    }

    .aw-heading {
        text-align: center;
    }

    .aw-heading h2 {
        font-size: 42px;
    }

    .aw-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .aw-card-img {
        height: 180px;
    }

    .aw-card-body h3 {
        font-size: 17px;
    }

    .aw-certificates {
        padding: 60px 0;
    }

    .aw-cert-head h2 {
        font-size: 32px;
    }

    .aw-cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .aw-cert-card img {
        height: 220px;
    }

    .aw-cta {
        padding: 50px 0;
    }

    .aw-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }

    .aw-cta-box h2 {
        font-size: 24px;
    }

    .aw-btn {
        width: auto;
        min-width: 180px;
        margin: 0 auto;
    }

    .aw-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 0px;
    }

    .aw-img img {
        width: 92%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: 0.4s ease;
        padding: 15px;
    }
}

/* Mobile phones (≤768px) */
@media (max-width: 768px) {

    .aw-hero {
        height: 50vh;
        min-height: 380px;
    }

    .aw-hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .aw-hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .aw-intro {
        padding: 40px 0 15px;
    }

    .aw-intro h2 {
        font-size: 28px;
    }

    .aw-intro p {
        font-size: 14px;
    }

    .aw-grid-section {
        padding: 20px 0 50px;
    }

    .aw-heading h2 {
        font-size: 36px;
    }

    .aw-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .aw-card-img {
        height: 160px;
    }

    .aw-card-body h3 {
        font-size: 16px;
    }

    .aw-card-body p {
        font-size: 13.5px;
    }

    .aw-certificates {
        padding: 50px 0;
    }

    .aw-cert-head h2 {
        font-size: 28px;
    }

    .aw-cert-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aw-cert-card img {
        height: 200px;
    }

    .aw-cta {
        padding: 40px 0;
    }

    .aw-cta-box {
        padding: 25px 15px;
    }

    .aw-cta-box h2 {
        font-size: 22px;
    }

    .aw-cta-box p {
        font-size: 14px;
    }

    .aw-btn {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}

/* Very small mobile (≤480px – 320px perfect) */
@media (max-width: 480px) {

    .aw-hero {
        height: 45vh;
        min-height: 320px;
    }

    .aw-hero-content h1 {
        font-size: 28px;
        line-height: 1.1;
    }

    .aw-hero-content p {
        font-size: 13.5px;
        margin-bottom: 15px;
    }

    .aw-intro {
        padding: 30px 0 10px;
    }

    .aw-intro h2 {
        font-size: 24px;
    }

    .aw-intro p {
        font-size: 13.5px;
    }

    .aw-grid-section {
        padding: 20px 0 40px;
    }

    .aw-heading h2 {
        font-size: 32px;
    }

    .aw-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aw-card-img {
        height: 180px;
    }

    .aw-card-body h3 {
        font-size: 17px;
    }

    .aw-card-body p {
        font-size: 13.5px;
    }

    .aw-certificates {
        padding: 40px 29px;
        text-align: center;
    }

    .aw-cert-head h2 {
        font-size: 25px;
    }

    .aw-cert-card img {
        height: 180px;
    }

    .aw-cta {
        padding: 30px 0;
    }

    .aw-cta-box {
        padding: 20px 15px;
    }

    .aw-cta-box h2 {
        font-size: 20px;
    }

    .aw-cta-box p {
        font-size: 13.5px;
    }

    .aw-btn {
        padding: 10px 25px;
        font-size: 13px;
        width: 80%;
        text-align: center;
    }

    .aw-red-line {
        width: 35px;
        height: 3px;
    }
}

/* //////////////////////////////////////////////////////////////// */


/* careers */
.cr-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cr-line {
    display: inline-block;
    width: 45px;
    height: 4px;
    background: #ff0000;
    margin-bottom: 18px;
}

/* HERO */
.cr-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cr-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cr-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 84%);
}

.cr-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 820px;
}

.cr-hero-content h1 {
    font-size: 62px;
    font-weight: 800;
    margin: 0 0 12px;
}

.cr-hero-content p {
    font-size: 16px;
    opacity: 0.92;
    line-height: 1.7;
    margin: 0 0 22px;
}

.cr-hero-btns {
    display: flex;
    gap: 14px;
}

.cr-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.cr-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.cr-btn-primary:hover,
.cr-btn-outline:hover {
    opacity: 0.9;
}

/* INTRO */
.cr-intro {
    padding: 70px 0 30px;
}

.cr-intro h2 {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 10px;
}

.cr-intro p {
    max-width: 900px;
    line-height: 1.8;
    color: #333;
}

/* SECTION HEAD */
.cr-section-head {
    margin-bottom: 22px;
}

.cr-section-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 8px;
}

.cr-section-head p {
    margin: 0;
    color: #444;
    line-height: 1.7;
}

/* BENEFITS */
.cr-benefits {
    padding: 40px 0 80px;
}

.cr-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.cr-benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.cr-benefit-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 8px;
}

.cr-benefit-card p {
    margin: 0;
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* OPENINGS */
.cr-openings {
    padding: 60px 0 80px;
    background: #f7f7f7;
}

.cr-jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.cr-job-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.cr-job-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cr-job-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.cr-badge {
    background: #ffe5e5;
    color: #ff0000;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.cr-job-meta {
    margin: 10px 0 12px;
    color: #444;
    font-size: 14px;
}

.cr-job-points {
    margin: 0 0 18px;
    padding-left: 18px;
    color: #333;
    line-height: 1.8;
    font-size: 14px;
}

.cr-job-btn {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
}

/* APPLY */
.cr-apply {
    padding: 80px 0;
}

.cr-apply-box {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
    background: #fff;
    border-radius: 14px;
    padding: 35px 30px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.cr-apply-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 10px;
}

.cr-apply-left p {
    margin: 0;
    color: #444;
    line-height: 1.8;
}

.cr-form input,
.cr-form textarea {
    width: 94%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
}

.cr-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.cr-form textarea {
    margin-bottom: 14px;
    resize: none;

    width: 97%;
}

/* CTA */
.cr-cta {
    padding: 50px 0;
    background: #fff;
}

.cr-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   CAREERS PAGE – ONLY RESPONSIVE MEDIA QUERIES (perfect for mobile/laptop/tablet/PC)
   ========================================================================== */

/* Tablet / Landscape (≤1024px) */
@media (max-width: 1024px) {

    .cr-badge {
        width: 29%;
    }

    .cr-job-card {
        margin-right: 37px;
    }

    .cr-benefit-card {
        margin-right: 39px;
    }

    .cr-hero {
        height: 60vh;
        min-height: 450px;
    }

    .cr-hero-content {
        max-width: 85%;
        padding: 0 30px;
        text-align: center;
    }

    .cr-hero-content h1 {
        font-size: 48px;
    }

    .cr-hero-content p {
        font-size: 15px;
    }

    .cr-hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .cr-intro {
        padding: 50px 0 20px;
        text-align: center;
    }

    .cr-intro h2 {
        font-size: 32px;
    }

    .cr-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cr-openings {
        padding: 50px 0 60px;
    }

    .cr-jobs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cr-apply {
        padding: 60px 0;
    }

    .cr-apply-box {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cr-form .cr-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cr-cta {
        padding: 40px 0;
    }

    .cr-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .cr-hero-content {
        position: relative;
        /* z-index: 2; */
        max-width: 904px;
        color: #fff;
        margin: -30px;
        padding-top: 14px;
    }


}

/* Mobile phones (≤768px) */
@media (max-width: 768px) {

    .cr-hero {
        height: 50vh;
        min-height: 380px;
    }

    .cr-hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .cr-hero-content p {
        font-size: 14px;
    }

    .cr-hero-btns a {
        width: 100%;
        text-align: center;
    }

    .cr-intro {
        padding: 40px 0 15px;
    }

    .cr-intro h2 {
        font-size: 28px;
        margin-right: 41px;
    }

    .cr-intro p {
        margin-right: 41px;
    }

    .cr-benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cr-openings {
        padding: 40px 0 50px;
    }

    .cr-jobs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cr-job-card h3 {
        font-size: 18px;
    }

    .cr-apply {
        padding: 50px 0;
    }

    .cr-apply-box {
        padding: 25px 20px;
    }

    .cr-apply-left h2 {
        font-size: 30px;
    }

    .cr-form input,
    .cr-form textarea {
        width: 100%;
        padding: 12px 14px;
        font-size: 14px;
    }

    .cr-cta {
        padding: 40px 0;
    }

    .cr-cta-box h2 {
        font-size: 24px;
    }

    .cr-cta-btn {
        width: 100%;
        text-align: center;
    }


}

/* Very small mobile (≤480px – 320px perfect) */
@media (max-width: 480px) {

    .cr-hero {
        height: 45vh;
        min-height: 320px;
    }

    .cr-hero-content h1 {
        font-size: 28px;
        line-height: 1.1;
    }

    .cr-hero-content p {
        font-size: 13.5px;

    }

    .cr-hero-btns a {
        padding: 10px 20px;
        font-size: 13px;
        width: 41%;
        margin-left: 22%;
    }

    .cr-intro {
        padding: 30px 0 10px;
    }

    .cr-intro h2 {
        font-size: 24px;
    }

    .cr-benefits-grid {
        gap: 16px;
    }

    .cr-openings {
        padding: 30px 0 40px;
    }

    .cr-job-card h3 {
        font-size: 17px;
    }

    .cr-apply {
        padding: 40px 0;
    }

    .cr-apply-box {
        padding: 20px 15px;
        margin-right: 36px;
    }

    .cr-apply-left h2 {
        font-size: 26px;
    }

    .cr-form input,
    .cr-form textarea {
        font-size: 13.5px;
        width: 86%;
    }

    .cr-cta-box {
        margin-right: 35px;
    }

    .cr-cta {
        padding: 30px 0;
    }

    .cr-cta-box h2 {
        font-size: 20px;
    }

    .cr-cta-btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .cr-line {
        width: 35px;
        height: 3px;
    }
}

/* /////////////////////////////////////////////////////////////////////// */

/* contactus */
.ct-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.ct-line {
    display: inline-block;
    width: 45px;
    height: 4px;
    background: #ff0000;
    margin-bottom: 18px;
}

/* HERO */
.ct-hero {
    position: relative;
    height: 55vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ct-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.ct-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 820px;
}

.ct-hero-content h1 {
    font-size: 62px;
    font-weight: 800;
    margin: 0 0 12px;
}

.ct-hero-content p {
    font-size: 16px;
    opacity: 0.92;
    line-height: 1.7;
    margin: 0;
}

/* MAIN */
.ct-main {
    padding: 80px 0;
    background: #fff;
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 25px;
    align-items: start;
}

/* LEFT */
.ct-info .ct-box h2 {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 10px;
}

.ct-info .ct-box p {
    margin: 0 0 20px;
    color: #444;
    line-height: 1.8;
}

.ct-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ct-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ct-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 800;
}

.ct-card p {
    margin: 0;
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* FORM */
.ct-form-box {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ct-form-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 16px;
}

.ct-form input,
.ct-form textarea {
    width: 94%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
}

.ct-form textarea {
    resize: none;
    margin-bottom: 14px;
    width: 97%;
}

.ct-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.ct-btn {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.ct-btn:hover {
    opacity: 0.9;
}

/* MAP */
.ct-map {
    padding: 70px 0;
    background: #f7f7f7;
}

.ct-map-box {
    background: #fff;
    padding: 25px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ct-map-box h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 15px;
}

/* CTA */
.ct-cta {
    padding: 70px 0;
    background: #fff;
}

.ct-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ct-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 8px;
}

.ct-cta-box p {
    margin: 0;
    color: #444;
}

/* ==========================================================================
   CONTACT US PAGE – RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet / Medium screens (≤1024px) */
@media (max-width: 1024px) {

    .ct-hero {
        height: 60vh;
        min-height: 420px;
    }

    .ct-hero-content {
        max-width: 90%;
        padding: 0 30px;
        text-align: center;
    }

    .ct-hero-content h1 {
        font-size: 48px;
    }

    .ct-hero-content p {
        font-size: 15px;
    }

    .ct-main {
        padding: 60px 0;
    }

    .ct-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ct-info {
        text-align: center;
    }

    .ct-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ct-form-box {
        padding: 25px 20px;
    }

    .ct-form .ct-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ct-form input,
    .ct-form textarea {
        width: 100%;
    }

    .ct-map {
        padding: 60px 0;
    }

    .ct-map-box {
        padding: 20px 15px;
        margin-right: 35px;
    }

    .ct-cta {
        padding: 60px 0;
    }

    .ct-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
        margin-right: 41px;
    }

    .ct-cta-box h2 {
        font-size: 24px;
    }
}

/* Mobile phones (≤768px) */
@media (max-width: 768px) {

    .ct-hero {
        height: 50vh;
        min-height: 360px;
    }

    .ct-hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .ct-hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .ct-main {
        padding: 50px 0;
    }

    .ct-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ct-form-box h2 {
        font-size: 26px;
    }

    .ct-form input,
    .ct-form textarea {
        font-size: 14px;
        padding: 12px 14px;
    }

    .ct-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
    }

    .ct-map {
        padding: 50px 0;
    }

    .ct-map-box h2 {
        font-size: 24px;
    }

    .ct-map-box iframe {
        height: 320px;
    }

    .ct-cta {
        padding: 50px 0;
    }

    .ct-cta-box h2 {
        font-size: 22px;
    }

    .ct-cta-box p {
        font-size: 14px;
    }
}

/* Very small mobile (≤480px – 320px perfect) */
@media (max-width: 480px) {

    .ct-hero {
        height: 45vh;
        min-height: 300px;
    }

    .ct-hero-content h1 {
        font-size: 28px;
        line-height: 1.1;
    }

    .ct-hero-content p {
        font-size: 13.5px;
        margin-bottom: 15px;
    }

    .ct-main {
        padding: 40px 0;
        margin-right: 42px;
    }

    .ct-info .ct-box h2 {
        font-size: 28px;
    }

    .ct-info .ct-box p {
        font-size: 14px;
    }

    .ct-card h3 {
        font-size: 16px;
    }

    .ct-card p {
        font-size: 13.5px;
    }

    .ct-form-box h2 {
        font-size: 24px;
    }

    .ct-form input,
    .ct-form textarea {
        font-size: 13.5px;
        padding: 10px 12px;
        width: 90%;
    }

    .ct-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 94px;
    }

    .ct-map {
        padding: 40px 0;
    }

    .ct-map-box h2 {
        font-size: 22px;
    }

    .ct-map-box iframe {
        height: 280px;
    }

    .ct-cta {
        padding: 40px 0;
    }

    .ct-cta-box h2 {
        font-size: 20px;
    }

    .ct-cta-box p {
        font-size: 13.5px;
    }

    .ct-line {
        width: 35px;
        height: 3px;
    }
}

/* ///////////////////////////////////////////////////////////////////////////////////// */

/* scadapart */
.sc-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.sc-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -35px;
}

/* HERO */
.sc-hero {
    height: 65vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.sc-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.sc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    color: #fff;
}

.sc-hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 12px;
}

.sc-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.sc-hero-btns {
    display: flex;
    gap: 14px;
}

.sc-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.sc-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.sc-btn-primary:hover,
.sc-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.sc-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.sc-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.sc-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.sc-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.sc-overview {
    padding: 80px 0;
}

.sc-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.sc-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 650px;
}

.sc-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sc-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sc-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sc-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.sc-img-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sc-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Features */
.sc-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.sc-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sc-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.sc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sc-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sc-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sc-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Industries */
.sc-industries {
    padding: 80px 0;
    background: #fff;
}

.sc-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sc-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.sc-why {
    padding: 80px 0;
    background: #fff;
}

.sc-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.sc-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.sc-cta {
    padding: 70px 0;
    background: #fff;
}

.sc-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sc-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sc-cta-box p {
    color: #444;
    margin: 0;
}

/* ==========================================================================
   SCADA SYSTEM PAGE – ONLY RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet / Landscape (≤1024px) */
@media (max-width: 1024px) {
    .sc-hero-overlay {
        position: absolute;
        inset: 0;
        background: rgb(0 0 0 / 79%);
    }

    .sc-ind {
        width: 77%;
    }

    .sc-card {
        margin-right: 35px;
    }

    .sc-left {
        margin-right: 35px;
    }

    .sc-breadcrumb p {
        font-size: 12px;
        color: #444;
    }

    .sc-hero {
        height: 60vh;
        min-height: 450px;
    }

    .sc-hero-content {
        max-width: 85%;
        padding: 0 30px;
        text-align: center;
    }

    .sc-hero-content h1 {
        font-size: 48px;
    }

    .sc-hero-content p {
        font-size: 15px;
    }

    .sc-hero-btns {
        gap: 15px;
        width: 50%;
    }

    .sc-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .sc-right .sc-img-box {
        margin: 0 auto;
    }

    .sc-img-box img {
        height: 320px;
        margin-left: -36px;
    }

    .sc-features {
        padding: 60px 0;
    }

    .sc-head h2 {
        font-size: 36px;
    }

    .sc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sc-industries {
        padding: 60px 0;
    }

    .sc-ind-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .sc-why {
        padding: 60px 0;
    }

    .sc-cta {
        padding: 50px 0;
    }

    .sc-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }
}

/* Mobile phones (≤768px) */
@media (max-width: 768px) {

    .sc-hero {
        height: 50vh;
        min-height: 380px;
    }

    .sc-hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .sc-hero-content p {
        font-size: 14px;
    }

    .sc-hero-btns a {
        width: 100%;
        text-align: center;
    }

    .sc-overview {
        padding: 50px 0;
    }

    .sc-left h2 {
        font-size: 32px;
    }

    .sc-left p {
        font-size: 14px;
    }

    .sc-highlights {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sc-features {
        padding: 50px 0;
    }

    .sc-head h2 {
        font-size: 32px;
    }

    .sc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sc-industries {
        padding: 50px 0;
    }

    .sc-ind-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sc-why {
        padding: 50px 0;
    }

    .sc-list li {
        font-size: 14px;
    }

    .sc-cta {
        padding: 40px 0;
    }

    .sc-cta-box h2 {
        font-size: 24px;
    }

    .sc-cta-box p {
        font-size: 14px;
    }

    .sc-btn-primary,
    .sc-btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* Very small mobile (≤480px – 320px perfect) */
@media (max-width: 480px) {

    .sc-hero {
        height: 45vh;
        min-height: 320px;
    }

    .sc-hero-content h1 {
        font-size: 28px;
        line-height: 1.1;
    }

    .sc-hero-content p {
        font-size: 13.5px;
        margin-bottom: 15px;
    }

    .sc-overview {
        padding: 40px 0;
    }

    .sc-left h2 {
        font-size: 28px;
    }

    .sc-left p {
        font-size: 13.5px;
    }

    .sc-features {
        padding: 40px 0;
    }

    .sc-head h2 {
        font-size: 28px;
    }

    .sc-grid {
        gap: 18px;
    }

    .sc-card h3 {
        font-size: 17px;
    }

    .sc-card p {
        font-size: 13.5px;
    }

    .sc-industries {
        padding: 40px 0;
    }

    .sc-ind-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sc-why {
        padding: 40px 0;
    }

    .sc-list li {
        font-size: 13.5px;
    }

    .sc-cta {
        padding: 30px 0;
    }

    .sc-cta-box h2 {
        font-size: 22px;
    }

    .sc-cta-box p {
        font-size: 13.5px;
    }

    .sc-btn-primary,
    .sc-btn-outline {
        padding: 10px 20px;
        font-size: 13px;
        width: 51%;
    }

    .sc-line {
        width: 35px;
        height: 3px;
        margin: -2px;
    }
}

/* ////////////////////////////////////////////////////////////////// */


/* data acquisition system */
.da-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.da-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -37px;
}

/* HERO */
.da-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.da-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.da-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    color: #fff;
}

.da-hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 12px;
}

.da-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.da-hero-btns {
    display: flex;
    gap: 14px;
}

.da-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.da-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.da-btn-primary:hover,
.da-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.da-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.da-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.da-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.da-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.da-overview {
    padding: 80px 0;
}

.da-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.da-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 650px;
}

.da-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.da-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.da-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.da-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.da-img-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.da-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Features */
.da-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.da-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.da-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.da-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.da-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.da-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.da-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Applications */
.da-applications {
    padding: 80px 0;
    background: #fff;
}

.da-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.da-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.da-why {
    padding: 80px 0;
    background: #fff;
}

.da-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.da-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.da-cta {
    padding: 70px 0;
    background: #fff;
}

.da-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.da-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.da-cta-box p {
    color: #444;
    margin: 0;
}

/* ==========================================================================
   DATA ACQUISITION SYSTEM PAGE – RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet / Medium screens (≤1024px) */
@media (max-width: 1024px) {
    .da-ind {
        margin-right: 50px;
    }


    .da-card {
        margin-right: 40px;
    }

    .da-two-col {
        margin-left: -18px;
    }

    .da-breadcrumb p {
        font-size: 13px;
    }

    .da-hero {
        height: 60vh;
        min-height: 420px;
    }

    .da-hero-content {
        max-width: 90%;
        padding: 0 30px;
        text-align: center;
    }

    .da-hero-content h1 {
        font-size: 48px;
    }

    .da-hero-content p {
        font-size: 15px;
    }

    .da-hero-btns {
        /* flex-direction: column; */
        gap: 15px;
    }

    .da-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .da-right .da-img-box {
        margin: 0 auto;
    }



    .da-features {
        padding: 60px 0;
    }

    .da-head h2 {
        font-size: 36px;
    }

    .da-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .da-applications {
        padding: 60px 0;
    }

    .da-ind-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .da-why {
        padding: 60px 0;
    }

    .da-cta {
        padding: 50px 0;
    }

    .da-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
        margin-right: 50px;
    }

}

/* Mobile phones (≤768px) */
@media (max-width: 768px) {

    .da-hero {
        height: 50vh;
        min-height: 360px;
    }

    .da-hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .da-hero-content p {
        font-size: 14px;
    }

    .da-hero-btns a {
        width: 64%;
        text-align: center;
        /* margin-left: 21px; */
    }

    .da-overview {
        padding: 50px 0;
    }

    .da-left h2 {
        font-size: 32px;
    }

    .da-left p {
        font-size: 14px;
    }

    .da-highlights {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .da-features {
        padding: 50px 0;
    }

    .da-head h2 {
        font-size: 32px;
    }

    .da-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .da-applications {
        padding: 50px 0;
    }

    .da-ind-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .da-why {
        padding: 50px 0;
    }

    .da-list li {
        font-size: 14px;
    }

    .da-cta {
        padding: 40px 0;
    }

    .da-cta-box h2 {
        font-size: 24px;
    }

    .da-cta-box p {
        font-size: 14px;
    }

    .da-btn-primary,
    .da-btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* Very small mobile (≤480px – 320px perfect) */
@media (max-width: 480px) {

    .da-hero {
        height: 45vh;
        min-height: 328px;
    }

    .da-hero-content h1 {
        font-size: 24px;
        line-height: 1.1;
    }

    .da-hero-content p {
        font-size: 13.5px;
        margin-bottom: 15px;
    }

    .da-overview {
        padding: 40px 0;
    }

    .da-left h2 {
        font-size: 28px;
    }

    .da-left p {
        font-size: 13.5px;
    }

    .da-features {
        padding: 40px 0;
    }

    .da-head h2 {
        font-size: 28px;
    }

    .da-grid {
        gap: 18px;
    }

    .da-card h3 {
        font-size: 17px;
    }

    .da-card p {
        font-size: 13.5px;
    }

    .da-applications {
        padding: 40px 0;
    }

    .da-ind-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .da-why {
        padding: 40px 0;
    }

    .da-list li {
        font-size: 13.5px;
    }

    .da-cta {
        padding: 30px 0;
    }

    .da-cta-box h2 {
        font-size: 22px;
    }

    .da-cta-box p {
        font-size: 13.5px;
    }

    .da-btn-primary,
    .da-btn-outline {
        padding: 10px 20px;
        font-size: 13px;
        width: 50%;
    }

    .da-line {
        width: 0px;
        height: 3px;
    }
}

/* //////////////////////////////////////////////////////////////////// */


/* remote io */
.rio-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.rio-line {
    display: inline-block;
    width: 48px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -37px;
}

/* HERO */
.rio-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.rio-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.rio-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    color: #fff;
}

.rio-hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 12px;
}

.rio-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.rio-hero-btns {
    display: flex;
    gap: 14px;
}

.rio-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.rio-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.rio-btn-primary:hover,
.rio-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.rio-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.rio-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.rio-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.rio-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.rio-overview {
    padding: 80px 0;
}

.rio-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.rio-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 650px;
}

.rio-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.rio-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.rio-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rio-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.rio-img-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.rio-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Features */
.rio-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.rio-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rio-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.rio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.rio-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.rio-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rio-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Applications */
.rio-applications {
    padding: 80px 0;
    background: #fff;
}

.rio-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.rio-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.rio-why {
    padding: 80px 0;
    background: #fff;
}

.rio-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.rio-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.rio-cta {
    padding: 70px 0;
    background: #fff;
}

.rio-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.rio-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rio-cta-box p {
    color: #444;
    margin: 0;
}

/* ==========================================================================
   REMOTE IO PAGE – ONLY RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet / Landscape (≤1024px) */
@media (max-width: 1024px) {
    .rio-ind {
        width: 76%;
    }

    .rio-card {
        margin-right: 50px;
    }

    .rio-left {
        margin-right: 37px;
    }

    .rio-breadcrumb p {
        font-size: 12px;
    }

    .rio-hero-overlay {
        background: rgb(0 0 0 / 73%);
    }

    .rio-hero {
        height: 60vh;
        min-height: 450px;
    }

    .rio-hero-content {
        max-width: 85%;
        padding: 0 30px;
        text-align: center;
    }

    .rio-hero-content h1 {
        font-size: 48px;
    }

    .rio-hero-content p {
        font-size: 15px;
    }

    .rio-hero-btns {
        /* flex-direction: column; */
        gap: 15px;
    }

    .rio-breadcrumb {
        padding: 12px 0;
        text-align: center;
    }

    .rio-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .rio-right .rio-img-box {
        margin: 0 auto;
    }

    .rio-img-box img {
        height: 320px;
    }

    .rio-features {
        padding: 60px 0;
    }

    .rio-head h2 {
        font-size: 36px;
    }

    .rio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .rio-applications {
        padding: 60px 0;
    }

    .rio-ind-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .rio-why {
        padding: 60px 0;
    }

    .rio-cta {
        padding: 50px 0;
    }

    .rio-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
        margin-right: 38px;
    }
}

/* Mobile phones (≤768px) */
@media (max-width: 768px) {

    .rio-hero {
        height: 50vh;
        min-height: 380px;
    }

    .rio-hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .rio-hero-content p {
        font-size: 14px;
    }

    .rio-hero-btns a {
        width: 100%;
        text-align: center;
    }

    .rio-overview {
        padding: 50px 0;
    }

    .rio-left h2 {
        font-size: 32px;
    }

    .rio-left p {
        font-size: 14px;
    }

    .rio-highlights {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .rio-features {
        padding: 50px 0;
    }

    .rio-head h2 {
        font-size: 32px;
    }

    .rio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rio-applications {
        padding: 50px 0;
    }

    .rio-ind-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .rio-why {
        padding: 50px 0;
    }

    .rio-list li {
        font-size: 14px;
    }

    .rio-cta {
        padding: 40px 0;
    }

    .rio-cta-box h2 {
        font-size: 24px;
    }

    .rio-cta-box p {
        font-size: 14px;
    }

    .rio-btn-primary,
    .rio-btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* Very small mobile (≤480px – 320px perfect) */
@media (max-width: 480px) {

    .rio-hero {
        height: 45vh;
        min-height: 320px;
    }

    .rio-hero-content h1 {
        font-size: 28px;
        line-height: 1.1;
    }

    .rio-hero-content p {
        font-size: 13.5px;
        margin-bottom: 15px;
    }

    .rio-overview {
        padding: 40px 0;
    }

    .rio-left h2 {
        font-size: 28px;
    }

    .rio-left p {
        font-size: 13.5px;
    }

    .rio-features {
        padding: 40px 0;
    }

    .rio-head h2 {
        font-size: 28px;
    }

    .rio-grid {
        gap: 18px;
    }

    .rio-card h3 {
        font-size: 17px;
    }

    .rio-card p {
        font-size: 13.5px;
    }

    .rio-applications {
        padding: 40px 0;
    }

    .rio-ind-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .rio-why {
        padding: 40px 0;
    }

    .rio-list li {
        font-size: 13.5px;
    }

    .rio-cta {
        padding: 30px 0;
    }

    .rio-cta-box h2 {
        font-size: 22px;
    }

    .rio-cta-box p {
        font-size: 13.5px;
    }

    .rio-btn-primary,
    .rio-btn-outline {
        padding: 10px 20px;
        font-size: 13px;
        width: 53%;
    }

    .rio-line {
        width: 0px;
        height: 3px;
    }
}

/* /////////////////////////////////////////////////////////////////// */


/* gateway-converters */
.pg-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.pg-line {
    display: inline-block;
    width: 48px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -32px;
}

/* HERO */
.pg-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.pg-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.pg-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    color: #fff;
}

.pg-hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 12px;
}

.pg-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.pg-hero-btns {
    display: flex;
    gap: 14px;
}

.pg-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.pg-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.pg-btn-primary:hover,
.pg-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.pg-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.pg-breadcrumb p {
    font-size: 12px;
    color: #444;
}

.pg-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.pg-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.pg-overview {
    padding: 80px 0;
}

.pg-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pg-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 650px;
}

.pg-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pg-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.pg-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pg-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.pg-img-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.pg-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Features */
.pg-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.pg-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pg-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.pg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.pg-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.pg-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pg-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Applications */
.pg-applications {
    padding: 80px 0;
    background: #fff;
}

.pg-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pg-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
    width: 80%;
}

/* Why */
.pg-why {
    padding: 80px 0;
    background: #fff;
}

.pg-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.pg-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.pg-cta {
    padding: 70px 0;
    background: #fff;
}

.pg-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.pg-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pg-cta-box p {
    color: #444;
    margin: 0;
}

/* ==========================================================================
   PROTOCOL GATEWAY & CONVERTERS PAGE – RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet / Medium screens (≤1024px) */
@media (max-width: 1024px) {
    .pg-card {
        margin-right: 33px;
    }

    .pg-hero {
        height: 60vh;
        min-height: 420px;
    }

    .pg-hero-content {
        max-width: 107%;
        /* padding: 0 30px; */
        text-align: center;
    }

    .pg-hero-content h1 {
        font-size: 48px;
    }

    .pg-hero-content p {
        font-size: 15px;
    }

    .pg-hero-btns {
        /* flex-direction: column; */
        gap: 15px;
    }

    .pg-breadcrumb {
        padding: 12px 0;
        text-align: center;
    }

    .pg-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-left: -18px;
    }

    .pg-right .pg-img-box {
        margin: 0 auto;
    }

    .pg-img-box img {
        height: 320px;
    }

    .pg-features {
        padding: 60px 0;
    }

    .pg-head h2 {
        font-size: 36px;
    }

    .pg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pg-applications {
        padding: 60px 0;
    }

    .pg-ind-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .pg-why {
        padding: 60px 0;
    }

    .pg-cta {
        padding: 50px 0;
    }

    .pg-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
        margin-right: 28px;

    }
}

/* Mobile phones (≤768px) */
@media (max-width: 768px) {

    .pg-hero {
        height: 50vh;
        min-height: 360px;
    }

    .pg-hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .pg-hero-content p {
        font-size: 14px;
    }

    .pg-hero-btns a {
        width: 64%;
        text-align: center;
        margin-left: 12px;
    }

    .pg-overview {
        padding: 50px 0;
    }

    .pg-left h2 {
        font-size: 32px;
    }

    .pg-left p {
        font-size: 14px;
    }

    .pg-highlights {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pg-features {
        padding: 50px 0;
    }

    .pg-head h2 {
        font-size: 32px;
    }

    .pg-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pg-applications {
        padding: 50px 0;
    }

    .pg-ind-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .pg-why {
        padding: 50px 0;
    }

    .pg-list li {
        font-size: 14px;
    }

    .pg-cta {
        padding: 40px 0;
    }

    .pg-cta-box h2 {
        font-size: 24px;
    }

    .pg-cta-box p {
        font-size: 14px;
    }

    .pg-btn-primary,
    .pg-btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* Very small mobile (≤480px – 320px perfect) */
@media (max-width: 480px) {

    .pg-hero {
        height: 45vh;
        min-height: 390px;
    }

    .pg-hero-content h1 {
        font-size: 20px;
        line-height: 1.1;
    }

    .pg-hero-content p {
        font-size: 13.5px;
        margin-bottom: 15px;
    }

    .pg-overview {
        padding: 40px 0;
    }

    .pg-left h2 {
        font-size: 28px;
    }

    .pg-left p {
        font-size: 13.5px;
    }

    .pg-features {
        padding: 40px 0;
    }

    .pg-head h2 {
        font-size: 28px;
    }

    .pg-grid {
        gap: 18px;
    }

    .pg-card h3 {
        font-size: 17px;
    }

    .pg-card p {
        font-size: 13.5px;
    }

    .pg-applications {
        padding: 40px 0;
    }

    .pg-ind-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pg-why {
        padding: 40px 0;
    }

    .pg-list li {
        font-size: 13.5px;
    }

    .pg-cta {
        padding: 30px 0;
    }

    .pg-cta-box h2 {
        font-size: 21px;
    }

    .pg-cta-box p {
        font-size: 13.5px;
    }

    .pg-btn-primary,
    .pg-btn-outline {
        padding: 10px 20px;
        font-size: 13px;
        width: 50%;
    }

    .pg-line {
        width: 0px;
        height: 3px;
    }
}

/* /////////////////////////////////////////////////////////////////////////////////// */

/* edge-computing */
.ec-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.ec-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -38px;
}

/* HERO */
.ec-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.ec-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.ec-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.ec-hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 12px;
}

.ec-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.ec-hero-btns {
    display: flex;
    gap: 14px;
}

.ec-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.ec-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.ec-btn-primary:hover,
.ec-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.ec-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.ec-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.ec-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.ec-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.ec-overview {
    padding: 80px 0;
}

.ec-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ec-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 650px;
}

.ec-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ec-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ec-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ec-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.ec-img-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ec-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Features */
.ec-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.ec-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ec-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.ec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ec-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ec-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ec-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Applications */
.ec-applications {
    padding: 80px 0;
    background: #fff;
}

.ec-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ec-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.ec-why {
    padding: 80px 0;
    background: #fff;
}

.ec-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.ec-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.ec-cta {
    padding: 70px 0;
    background: #fff;
}

.ec-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ec-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ec-cta-box p {
    color: #444;
    margin: 0;
}

/* ==========================================================================
   EDGE COMPUTING PAGE – RESPONSIVE MEDIA QUERIES (perfect for all devices)
   ========================================================================== */

/* Tablet / Medium screens (≤1024px) */
@media (max-width: 1024px) {
    .ec-ind {
        width: 74%;
    }

    .ec-card {
        margin-right: 40px;
    }

    .ec-breadcrumb p {
        font-size: 13px;
    }

    .ec-hero {
        height: 60vh;
        min-height: 420px;
    }

    .ec-hero-content {
        max-width: 90%;
        padding: 0 30px;
        text-align: center;
    }

    .ec-hero-content h1 {
        font-size: 48px;
    }

    .ec-hero-content p {
        font-size: 15px;
    }

    .ec-hero-btns {
        /* flex-direction: column; */
        gap: 15px;
    }

    .ec-breadcrumb {
        padding: 12px 0;
        text-align: center;
    }

    .ec-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-left: -20px;
    }

    .ec-right .ec-img-box {
        margin: 0 auto;
    }

    .ec-img-box img {
        height: 320px;
        object-fit: cover;
    }

    .ec-features {
        padding: 60px 0;
    }

    .ec-head h2 {
        font-size: 36px;
    }

    .ec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ec-applications {
        padding: 60px 0;
    }

    .ec-ind-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .ec-why {
        padding: 60px 0;
    }

    .ec-cta {
        padding: 50px 0;
    }

    .ec-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }

    .ec-cta-box h2 {
        font-size: 24px;
    }
}

/* Mobile phones (≤768px) */
@media (max-width: 768px) {

    .ec-hero {
        height: 50vh;
        min-height: 360px;
    }

    .ec-hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .ec-hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .ec-hero-btns a {
        width: 100%;
        text-align: center;
    }

    .ec-overview {
        padding: 50px 0;
    }

    .ec-left h2 {
        font-size: 32px;
    }

    .ec-left p {
        font-size: 14px;
        max-width: 100%;
    }

    .ec-highlights {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ec-features {
        padding: 50px 0;
    }

    .ec-head h2 {
        font-size: 32px;
    }

    .ec-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ec-applications {
        padding: 50px 0;
    }

    .ec-ind-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .ec-why {
        padding: 50px 0;
    }

    .ec-list li {
        font-size: 14px;
    }

    .ec-cta {
        padding: 40px 0;
    }

    .ec-cta-box h2 {
        font-size: 24px;
    }

    .ec-cta-box p {
        font-size: 14px;
    }

    .ec-btn-primary,
    .ec-btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* Very small mobile (≤480px – 320px perfect) */
@media (max-width: 480px) {

    .ec-hero {
        height: 45vh;
        min-height: 391px;
    }

    .ec-hero-content h1 {
        font-size: 39px;
        line-height: 1.1;
    }

    .ec-hero-content p {
        font-size: 13.5px;
        margin-bottom: 15px;
    }

    .ec-overview {
        padding: 40px 0;
    }

    .ec-left h2 {
        font-size: 28px;
    }

    .ec-left p {
        font-size: 13.5px;
    }

    .ec-features {
        padding: 40px 0;
    }

    .ec-head h2 {
        font-size: 28px;
    }

    .ec-grid {
        gap: 18px;
    }

    .ec-card h3 {
        font-size: 17px;
    }

    .ec-card p {
        font-size: 13.5px;
    }

    .ec-applications {
        padding: 40px 0;
    }

    .ec-ind-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ec-why {
        padding: 40px 0;
    }

    .ec-list li {
        font-size: 13.5px;
    }

    .ec-cta {
        padding: 30px 0;
    }

    .ec-cta-box h2 {
        font-size: 22px;
    }

    .ec-cta-box p {
        font-size: 13.5px;
    }

    .ec-btn-primary,
    .ec-btn-outline {
        padding: 10px 20px;
        font-size: 13px;
        width: 50%;
    }

    .ec-line {
        width: 0px;
        height: 3px;
    }
}

/* //////////////////////////////////////////////////////////////////////// */

/* security-router */
.sr-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.sr-line {
    display: inline-block;
    width: 48px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -41px;
}

/* HERO */
.sr-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.sr-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.sr-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.sr-hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 12px;
}

.sr-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.sr-hero-btns {
    display: flex;
    gap: 14px;
}

.sr-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.sr-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.sr-btn-primary:hover,
.sr-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.sr-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.sr-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.sr-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.sr-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.sr-overview {
    padding: 80px 0;
}

.sr-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.sr-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 680px;
}

.sr-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sr-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sr-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sr-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.sr-img-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sr-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Features */
.sr-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.sr-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sr-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.sr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sr-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sr-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sr-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Applications */
.sr-applications {
    padding: 80px 0;
    background: #fff;
}

.sr-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sr-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Specs */
.sr-specs {
    padding: 80px 0;
    background: #fff;
}

.sr-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 22px;
}

.sr-spec {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
}

.sr-spec h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 6px;
}

.sr-spec p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.sr-diagram {
    margin-top: 16px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sr-diagram img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* CTA */
.sr-cta {
    padding: 70px 0;
    background: #fff;
}

.sr-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sr-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sr-cta-box p {
    color: #444;
    margin: 0;
}

/* ============================================= */
/*          RESPONSIVE STYLES ONLY (sr- prefix)  */
/* Mobile-first — tested patterns 2025/2026      */
/* ============================================= */

/* Mobile portrait & small screens (≤ 576px) */
@media (max-width: 576px) {
    .sr-img-box img {
        margin-right: 50px;
    }

    .sr-spec {
        margin-right: 39px;
    }

    .sr-ind {
        margin-right: 36px;
    }

    .sr-card {
        margin-right: 36px;
    }

    .sr-mini-card {
        margin-right: 38px;
    }

    .sr-left p {
        margin-right: 27px;
    }

    .sr-hero {
        height: 50vh;
        min-height: 360px;
    }

    .sr-hero-content h1 {
        font-size: 24px;
    }

    .sr-hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .sr-hero-btns {
        /* flex-direction: column; */
        gap: 14px;
    }

    .sr-btn-primary,
    .sr-btn-outline {
        width: 55%;
        text-align: center;
        padding: 9px 24px;
        font-size: 1.05rem;
    }

    .sr-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sr-highlights,
    .sr-grid,
    .sr-ind-grid,
    .sr-spec-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sr-head h2 {
        font-size: 2.1rem;
    }

    .sr-overview,
    .sr-features,
    .sr-applications,
    .sr-specs,
    .sr-cta {
        padding: 50px 0;
    }

    .sr-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 20px;
        margin-right: 36px;
    }

    .sr-breadcrumb p {
        font-size: 13px;
        line-height: 1.5;
    }

    .sr-line {
        margin-bottom: -24px;
    }
}

/* Tablets & small laptops / portrait tablets (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .sr-hero {
        height: 55vh;
        min-height: 420px;
    }

    .sr-hero-content h1 {
        font-size: 3.3rem;
    }

    .sr-two-col {
        grid-template-columns: 1fr;
    }

    .sr-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .sr-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sr-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sr-spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sr-head h2 {
        font-size: 2.5rem;
    }

    .sr-overview,
    .sr-features,
    .sr-applications,
    .sr-specs,
    .sr-cta {
        padding: 60px 0;
    }
}

/* Medium+ laptops & desktops (993px and up) */
@media (min-width: 993px) {

    .sr-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .sr-hero-content h1 {
        font-size: 3.8rem;
    }

    .sr-head h2 {
        font-size: 2.8rem;
    }

    .sr-spec-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1400px) {
    .sr-container {
        max-width: 1320px;
    }
}

.sr-img-box img,
.sr-diagram img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sr-diagram {
    max-width: 100%;
}

/* ///////////////////////////////////////////////////////////////// */

/* nms */
.nms-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nms-line {
    display: inline-block;
    width: 48px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -29px;
}

/* HERO */
.nms-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.nms-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.nms-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.nms-hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 12px;
}

.nms-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.nms-hero-btns {
    display: flex;
    gap: 14px;
}

.nms-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.nms-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.nms-btn-primary:hover,
.nms-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.nms-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.nms-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.nms-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.nms-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.nms-overview {
    padding: 80px 0;
}

.nms-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.nms-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 680px;
}

.nms-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.nms-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.nms-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.nms-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.nms-img-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.nms-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Features */
.nms-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.nms-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.nms-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.nms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.nms-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.nms-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.nms-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Benefits */
.nms-benefits {
    padding: 80px 0;
    background: #fff;
}

.nms-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.nms-benefit {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
}

.nms-benefit h4 {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 6px;
}

.nms-benefit p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* Usecases */
.nms-usecases {
    padding: 80px 0;
    background: #fff;
}

.nms-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.nms-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* CTA */
.nms-cta {
    padding: 70px 0;
    background: #fff;
}

.nms-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.nms-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.nms-cta-box p {
    color: #444;
    margin: 0;
}

/* ============================================= */
/*       RESPONSIVE STYLES ONLY – NMS page       */
/* Mobile-first approach – 2025/2026 patterns    */
/* ============================================= */

/* Mobile portrait & very small screens (≤ 576px) */
@media (max-width: 576px) {
    .nms-head p {
        font-size: 12px;
    }

    .nms-left p {
        margin-right: 27px !important;
    }

    .nms-hero {
        height: 50vh;
        min-height: 340px;
    }

    .nms-hero-content h1 {
        font-size: 18px;
    }

    .nms-hero-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .nms-hero-btns {
        /* flex-direction: column; */
        gap: 14px;
    }

    .nms-btn-primary,
    .nms-btn-outline {
        width: 50%;
        text-align: center;
        padding: 5px 24px;
        font-size: 1.05rem;
    }

    .nms-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nms-highlights,
    .nms-grid,
    .nms-benefit-grid,
    .nms-ind-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nms-head h2 {
        font-size: 2rem;
    }

    .nms-overview,
    .nms-features,
    .nms-benefits,
    .nms-usecases,
    .nms-cta {
        padding: 50px 0;
    }

    .nms-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 28px 20px;
        margin-right: 33px;

    }

    .nms-breadcrumb p {
        font-size: 10px;
        line-height: 1.5;
    }

    .nms-line {
        margin-bottom: -22px;
    }
}

/* Tablets & small laptops / portrait tablets (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {

    .nms-hero {
        height: 55vh;
        min-height: 400px;
    }

    .nms-hero-content h1 {
        font-size: 3.2rem;
    }

    .nms-two-col {
        grid-template-columns: 1fr;
    }

    .nms-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .nms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nms-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nms-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nms-head h2 {
        font-size: 2.4rem;
    }

    .nms-overview,
    .nms-features,
    .nms-benefits,
    .nms-usecases,
    .nms-cta {
        padding: 60px 0;
    }

    .nms-cta-box {
        padding: 30px 25px;
    }
}

/* Medium laptops & desktops (993px and up) */
@media (min-width: 993px) {

    .nms-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .nms-hero-content h1 {
        font-size: 3.6rem;
    }

    .nms-head h2 {
        font-size: 2.7rem;
    }

    .nms-benefit-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1400px) {
    .nms-container {
        max-width: 1320px;
    }
}

.nms-img-box img {
    width: 91%;
    height: auto;
    object-fit: cover;
}

.nms-benefit,
.nms-ind,
.nms-mini-card,
.nms-card {
    /* min-height: 140px; */
    margin-right: 40px;
}

/* ///////////////////////////////////////////////////////////////////////// */


/* managed-switch */
.ms-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.ms-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -33px;
}

/* HERO */
.ms-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.ms-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.ms-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.ms-hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 12px;
}

.ms-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.ms-hero-btns {
    display: flex;
    gap: 14px;
}

.ms-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.ms-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.ms-btn-primary:hover,
.ms-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.ms-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.ms-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.ms-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.ms-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.ms-overview {
    padding: 80px 0;
}

.ms-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ms-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 680px;
}

.ms-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ms-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ms-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ms-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.ms-img-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ms-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Features */
.ms-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.ms-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ms-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.ms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ms-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ms-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ms-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Applications */
.ms-applications {
    padding: 80px 0;
    background: #fff;
}

.ms-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ms-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.ms-why {
    padding: 80px 0;
    background: #fff;
}

.ms-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.ms-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.ms-cta {
    padding: 70px 0;
    background: #fff;
}

.ms-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ms-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ms-cta-box p {
    color: #444;
    margin: 0;
}

/* ==========================================================================
   INDUSTRIAL MANAGED SWITCH PAGE – RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet / Medium screens (≤1024px) */
@media (max-width: 1024px) {
    .ms-ind {
        width: 77%;
    }

    .ms-card {
        margin-right: 38px;
    }

    .ms-left {
        margin-right: 30px;
    }

    .ms-breadcrumb p {
        font-size: 12px;
    }

    .ms-hero {
        height: 60vh;
        min-height: 420px;
    }

    .ms-hero-content {
        max-width: 90%;
        padding: 0 30px;
        text-align: center;
    }

    .ms-hero-content h1 {
        font-size: 48px;
    }

    .ms-hero-content p {
        font-size: 15px;
    }

    .ms-hero-btns {
        /* flex-direction: column; */
        gap: 15px;
    }

    .ms-breadcrumb {
        padding: 12px 0;
        text-align: center;
    }

    .ms-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .ms-right .ms-img-box {
        margin: 0 auto;
    }

    .ms-img-box img {
        height: 320px;
        object-fit: cover;
        margin-left: -33px;
    }

    .ms-features {
        padding: 60px 0;
    }

    .ms-head h2 {
        font-size: 36px;
    }

    .ms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ms-applications {
        padding: 60px 0;
    }

    .ms-ind-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .ms-why {
        padding: 60px 0;
    }

    .ms-cta {
        padding: 50px 0;
    }

    .ms-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
        margin-right: 37px;
    }

    .ms-cta-box h2 {
        font-size: 24px;
    }
}

/* Mobile phones (≤768px) */
@media (max-width: 768px) {

    .ms-hero {
        height: 50vh;
        min-height: 360px;
    }

    .ms-hero-content h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .ms-hero-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .ms-hero-btns a {
        width: 100%;
        text-align: center;
    }

    .ms-overview {
        padding: 50px 0;
    }

    .ms-left h2 {
        font-size: 32px;
    }

    .ms-left p {
        font-size: 14px;
        max-width: 100%;
    }

    .ms-highlights {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ms-features {
        padding: 50px 0;
    }

    .ms-head h2 {
        font-size: 32px;
    }

    .ms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ms-applications {
        padding: 50px 0;
    }

    .ms-ind-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .ms-why {
        padding: 50px 0;
    }

    .ms-list li {
        font-size: 14px;
    }

    .ms-cta {
        padding: 40px 0;
    }

    .ms-cta-box h2 {
        font-size: 24px;
    }

    .ms-cta-box p {
        font-size: 14px;
    }

    .ms-btn-primary,
    .ms-btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* Very small mobile (≤480px – 320px perfect) */
@media (max-width: 480px) {

    .ms-hero {
        height: 45vh;
        min-height: 411px;
    }

    .ms-hero-content h1 {
        font-size: 28px;
        line-height: 1.1;
    }

    .ms-hero-content p {
        font-size: 13.5px;
        margin-bottom: 15px;
    }

    .ms-overview {
        padding: 40px 0;
    }

    .ms-left h2 {
        font-size: 28px;
    }

    .ms-left p {
        font-size: 13.5px;
    }

    .ms-features {
        padding: 40px 0;
    }

    .ms-head h2 {
        font-size: 28px;
    }

    .ms-grid {
        gap: 18px;
    }

    .ms-card h3 {
        font-size: 17px;
    }

    .ms-card p {
        font-size: 13.5px;
    }

    .ms-applications {
        padding: 40px 0;
    }

    .ms-ind-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ms-why {
        padding: 40px 0;
    }

    .ms-list li {
        font-size: 13.5px;
    }

    .ms-cta {
        padding: 30px 0;
    }

    .ms-cta-box h2 {
        font-size: 22px;
    }

    .ms-cta-box p {
        font-size: 13.5px;
    }

    .ms-btn-primary,
    .ms-btn-outline {
        padding: 10px 20px;
        font-size: 13px;
        width: 51%;
    }

    .ms-line {
        width: 0px;
        height: 3px;
    }
}

/* //////////////////////////////////////////////////////////////////////////////////////////// */

/* unmanged-switch */
.us-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.us-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -28px;
}

/* HERO */
.us-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.us-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.us-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.us-hero-content h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 12px;
}

.us-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.us-hero-btns {
    display: flex;
    gap: 14px;
}

.us-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.us-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.us-btn-primary:hover,
.us-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.us-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.us-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.us-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.us-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.us-overview {
    padding: 80px 0;
}

.us-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.us-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 680px;
}

.us-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.us-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.us-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.us-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.us-img-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.us-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Features */
.us-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.us-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.us-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.us-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.us-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.us-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Applications */
.us-applications {
    padding: 80px 0;
    background: #fff;
}

.us-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.us-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.us-why {
    padding: 80px 0;
    background: #fff;
}

.us-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.us-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.us-cta {
    padding: 70px 0;
    background: #fff;
}

.us-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.us-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.us-cta-box p {
    color: #444;
    margin: 0;
}

/* ============================================= */
/*          RESPONSIVE STYLES ONLY               */
/* Mobile-first — these rules override desktop   */
/* ============================================= */

/* Very small screens / mobile portrait (≤ 576px) */
@media (max-width: 576px) {
    .us-line {
        margin-bottom: -20px;
    }

    .us-img-box img {
        height: auto;
        object-fit: cover;
    }

    .us-cta-box {
        margin-right: 36px;
    }

    .us-btn-primary {
        width: 51% !important;
    }

    .us-ind {
        margin-right: 36px;
    }

    .us-card {
        margin-right: 35px;
    }

    .us-mini-card {
        margin-right: 36px;
    }

    .us-left p {
        margin-right: 7px;
    }

    .us-hero-overlay {
        background: rgb(0 0 0 / 83%);
    }

    .us-hero {
        height: 50vh;
        min-height: 360px;
    }

    .us-hero-content h1 {
        font-size: 18px;
    }

    .us-hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .us-hero-btns {
        /* flex-direction: column; */
        gap: 12px;
    }

    .us-btn-primary,
    .us-btn-outline {
        width: 100%;
        text-align: center;
        padding: 8px 24px;
        font-size: 1.05rem;
    }

    .us-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .us-highlights,
    .us-grid,
    .us-ind-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .us-head h2 {
        font-size: 2rem;
    }

    .us-overview,
    .us-features,
    .us-applications,
    .us-why,
    .us-cta {
        padding: 50px 0;
    }

    .us-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 20px;
    }

    .us-breadcrumb p {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .us-hero {
        height: 55vh;
        min-height: 420px;
    }

    .us-hero-content h1 {
        font-size: 3.2rem;
    }

    .us-two-col {
        grid-template-columns: 1fr;
    }

    .us-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .us-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .us-head h2 {
        font-size: 2.4rem;
    }

    .us-overview,
    .us-features,
    .us-applications,
    .us-why,
    .us-cta {
        padding: 60px 0;
    }
}

/* Medium+ laptops & desktops (993px and up) */
@media (min-width: 993px) {

    .us-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .us-hero-content h1 {
        font-size: 3.8rem;
    }

    .us-head h2 {
        font-size: 2.8rem;
    }
}

/* Very large screens — optional cap */
@media (min-width: 1400px) {
    .us-container {
        max-width: 1320px;
    }

    .us-line {
        margin-bottom: -20px;
    }
}



/* //////////////////////////////////////////////////////////////////////////////// */

/* rtu-for-power-secctor */
.rtu-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.rtu-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -40px;
}

/* HERO */
.rtu-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.rtu-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.rtu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.rtu-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
}

.rtu-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.rtu-hero-btns {
    display: flex;
    gap: 14px;
}

.rtu-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.rtu-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.rtu-btn-primary:hover,
.rtu-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.rtu-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.rtu-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.rtu-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.rtu-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.rtu-overview {
    padding: 80px 0;
}

.rtu-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.rtu-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 680px;
}

.rtu-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.rtu-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.rtu-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rtu-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.rtu-img-box {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.rtu-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Features */
.rtu-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.rtu-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rtu-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.rtu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.rtu-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.rtu-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rtu-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Applications */
.rtu-applications {
    padding: 80px 0;
    background: #fff;
}

.rtu-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.rtu-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.rtu-why {
    padding: 80px 0;
    background: #fff;
}

.rtu-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.rtu-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* Variants */
.rtu-variants {
    padding: 80px 0;
    background: #fff;
}

.rtu-variant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.rtu-variant-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.rtu-variant-img {
    height: 347px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
}

.rtu-variant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rtu-variant-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rtu-variant-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
}

.rtu-variant-btn {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
}

/* CTA */
.rtu-cta {
    padding: 70px 0;
    background: #fff;
}

.rtu-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.rtu-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.rtu-cta-box p {
    color: #444;
    margin: 0;
}

/* ============================================= */
/*     RESPONSIVE STYLES ONLY – RTU page         */
/* Mobile-first – optimized for 2025/2026 usage  */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {
    .rtu-list {
        margin: 14px 16px 21px;
    }

    .rtu-ind {
        margin-right: 42px;
    }

    .rtu-left p {
        margin-right: 20px;
    }

    .rtu-hero {
        height: 50vh;
        min-height: 360px;
    }

    .rtu-hero-content h1 {
        font-size: 19px;
    }

    .rtu-hero-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .rtu-hero-btns {
        /* flex-direction: column; */
        gap: 14px;
    }

    .rtu-btn-primary,
    .rtu-btn-outline,
    .rtu-variant-btn {
        width: 51%;
        text-align: center;
        padding: 9px 24px;
        font-size: 1.05rem;
    }

    .rtu-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rtu-highlights,
    .rtu-grid,
    .rtu-ind-grid,
    .rtu-variant-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rtu-head h2 {
        font-size: 2.1rem;
    }

    .rtu-overview,
    .rtu-features,
    .rtu-applications,
    .rtu-why,
    .rtu-variants,
    .rtu-cta {
        padding: 50px 0;
    }

    .rtu-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 20px;
        margin-right: 29px;
    }

    .rtu-breadcrumb p {
        font-size: 11px;
        line-height: 1.5;
    }

    .rtu-variant-img {
        height: 240px;
    }

    .rtu-line {
        margin-bottom: -24px;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .rtu-hero {
        height: 55vh;
        min-height: 420px;
    }

    .rtu-hero-content h1 {
        font-size: 3.3rem;
    }

    .rtu-two-col {
        grid-template-columns: 1fr;
    }

    .rtu-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .rtu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rtu-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rtu-variant-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rtu-head h2 {
        font-size: 2.5rem;
    }

    .rtu-overview,
    .rtu-features,
    .rtu-applications,
    .rtu-why,
    .rtu-variants,
    .rtu-cta {
        padding: 60px 0;
    }

    .rtu-variant-img {
        height: 280px;
    }

    .rtu-cta-box {
        padding: 32px 25px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {

    .rtu-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .rtu-hero-content h1 {
        font-size: 3.8rem;
    }

    .rtu-head h2 {
        font-size: 2.8rem;
    }

    .rtu-variant-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    .rtu-container {
        max-width: 1320px;
    }

    .rtu-img-box img,
    .rtu-variant-img img {
        width: 91%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .rtu-variant-card,
    .rtu-card,
    .rtu-mini-card {
        margin-right: 30px;
    }
}



/* /////////////////////////////////////////////////////////////////// */

/* plc panel */
.plc-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.plc-line {
    display: inline-block;
    width: 48px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -25px;
}

.plc-img-box {
    height: 420px;
    /* tame 380/450 pan kari sako */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.plc-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-top: 20px;
}

/* HERO */
.plc-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.plc-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.plc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.plc-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
}

.plc-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    margin: 12px 0 22px;
}

.plc-hero-btns {
    display: flex;
    gap: 14px;
}

.plc-btn-primary {
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.plc-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

/* Breadcrumb */
.plc-breadcrumb {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.plc-breadcrumb p {
    font-size: 14px;
}

/* Layout */
.plc-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.plc-overview {
    padding: 80px 0;
}

.plc-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.plc-mini-card {
    padding: 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* Grid Sections */
.plc-features,
.plc-applications {
    padding: 80px 0;
    background: #f7f7f7;
}

.plc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.plc-card {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
}

/* Applications */
.plc-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.plc-ind {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
}

/* CTA */
.plc-cta {
    padding: 70px 0;
}

.plc-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* ============================================= */
/*     RESPONSIVE STYLES ONLY – PLC Panel page   */
/* Mobile-first – balanced across phone/tablet/laptop/PC */
/* ============================================= */

/* Mobile portrait & small screens (≤ 576px) */
@media (max-width: 576px) {
    .plc-left p {
        margin-right: 28px !important;
    }

    .plc-hero {
        height: 50vh;
        min-height: 340px;
    }

    .plc-hero-content h1 {
        font-size: 2.4rem;
    }

    .plc-hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .plc-hero-btns {
        /* flex-direction: column; */
        gap: 14px;
    }

    .plc-btn-primary,
    .plc-btn-outline {
        width: 54%;
        text-align: center;
        padding: 7px 24px;
        font-size: 1.05rem;
    }

    .plc-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .plc-highlights,
    .plc-grid,
    .plc-ind-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plc-head h2 {
        font-size: 2.1rem;
    }

    .plc-overview,
    .plc-features,
    .plc-applications,
    .plc-why,
    .plc-cta {
        padding: 50px 0;
    }

    .plc-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 28px 20px;
    }

    .plc-breadcrumb p {
        font-size: 11px;
        line-height: 1.5;
    }

    .plc-img-box {
        height: 260px;
    }

    .plc-line {
        margin-bottom: -20px;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .plc-hero {
        height: 55vh;
        min-height: 415px;
    }

    .plc-hero-content h1 {
        font-size: 3.2rem;
    }

    .plc-two-col {
        grid-template-columns: 1fr;
    }

    .plc-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .plc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plc-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plc-head h2 {
        font-size: 2.5rem;
    }

    .plc-overview,
    .plc-features,
    .plc-applications,
    .plc-why,
    .plc-cta {
        padding: 60px 0;
    }

    .plc-img-box {
        height: 320px;
    }

    .plc-cta-box {
        padding: 30px 25px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {

    .plc-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .plc-hero-content h1 {
        font-size: 3.6rem;
    }

    .plc-head h2 {
        font-size: 2.8rem;
    }

    .plc-img-box {
        height: 420px;
    }
}

@media (min-width: 1400px) {
    .plc-container {
        max-width: 1320px;
    }

    .plc-img-box img {
        width: 91%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .plc-mini-card,
    .plc-card,
    .plc-ind {
        margin-right: 40px;
    }
}




/* ///////////////////////////////////////////////////////////////////////////////// */


/* celler-routers-4g-5g */
.cr-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cr-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -9px;
}

/* HERO */
.cr-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.cr-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 81%);
}

.cr-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.cr-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cr-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.cr-hero-btns {
    display: flex;
    gap: 14px;
}

.cr-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.cr-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.cr-btn-primary:hover,
.cr-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.cr-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.cr-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.cr-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.cr-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.cr-overview {
    padding: 80px 0;
}

.cr-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cr-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 680px;
}

.cr-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cr-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.cr-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cr-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.cr-img-box {
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.cr-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Features */
.cr-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.cr-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cr-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.cr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.cr-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.cr-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cr-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Applications */
.cr-applications {
    padding: 80px 0;
    background: #fff;
}

.cr-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cr-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.cr-why {
    padding: 80px 0;
    background: #fff;
}

.cr-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.cr-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.cr-cta {
    padding: 70px 0;
    background: #fff;
}

.cr-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.cr-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cr-cta-box p {
    color: #444;
    margin: 0;
}

/* ============================================= */
/*   RESPONSIVE STYLES ONLY – Cellular Routers   */
/* Mobile-first – good on phone / tablet / laptop / PC 2025/2026 */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {
    .cr-ind {
        margin-right: 36px;
    }

    .cr-card {
        margin-right: 35px;
    }

    .cr-img-box img {
        width: 100%;
        object-fit: contain;
    }

    .cr-left p {
        margin-right: 25px;
    }

    .cr-hero {
        height: 50vh;
        min-height: 360px;
    }

    .cr-hero-content h1 {
        font-size: 19px;
    }

    .cr-hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cr-hero-btns {
        flex-direction: column;
        gap: 14px;
    }

    .cr-btn-primary,
    .cr-btn-outline {
        width: 52%;
        text-align: center;
        padding: 14px 24px;
        font-size: 1.05rem;
    }

    .cr-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cr-highlights,
    .cr-grid,
    .cr-ind-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-right: 2px;
    }

    .cr-head h2 {
        font-size: 2.1rem;
    }

    .cr-overview,
    .cr-features,
    .cr-applications,
    .cr-why,
    .cr-cta {
        padding: 50px 0;
    }

    .cr-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 20px;
    }

    .cr-breadcrumb p {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .cr-img-box {
        height: 260px;
    }

    .cr-line {
        margin-bottom: 1px;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .cr-hero {
        height: 55vh;
        min-height: 420px;
    }

    .cr-hero-content h1 {
        font-size: 3.3rem;
    }

    .cr-two-col {
        grid-template-columns: 1fr;
    }

    .cr-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .cr-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cr-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cr-head h2 {
        font-size: 2.5rem;
    }

    .cr-overview,
    .cr-features,
    .cr-applications,
    .cr-why,
    .cr-cta {
        padding: 60px 0;
    }

    .cr-img-box {
        height: 320px;
    }

    .cr-cta-box {
        padding: 32px 25px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {

    .cr-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .cr-hero-content h1 {
        font-size: 3.8rem;
    }

    .cr-head h2 {
        font-size: 2.8rem;
    }

    .cr-img-box {
        height: 350px;
    }
}

@media (min-width: 1400px) {
    .cr-container {
        max-width: 1320px;
    }

    .cr-mini-card,
    .cr-card,
    .cr-ind {
        margin-right: 42px;
    }

}

/* ////////////////////////////////////////////////////////////////////////////////// */

/* long-backaul-system */

.lbs-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.lbs-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -33px;
}

/* HERO */
.lbs-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.lbs-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.lbs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.lbs-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
}

.lbs-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.lbs-hero-btns {
    display: flex;
    gap: 14px;
}

.lbs-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.lbs-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.lbs-btn-primary:hover,
.lbs-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.lbs-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.lbs-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.lbs-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.lbs-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.lbs-overview {
    padding: 80px 0;
}

.lbs-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.lbs-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 680px;
}

.lbs-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lbs-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.lbs-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.lbs-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.lbs-img-box {
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.lbs-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
}

/* Features */
.lbs-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.lbs-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.lbs-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.lbs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lbs-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.lbs-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.lbs-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Applications */
.lbs-applications {
    padding: 80px 0;
    background: #fff;
}

.lbs-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lbs-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.lbs-why {
    padding: 80px 0;
    background: #fff;
}

.lbs-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.lbs-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.lbs-cta {
    padding: 70px 0;
    background: #fff;
}

.lbs-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.lbs-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.lbs-cta-box p {
    color: #444;
    margin: 0;
}

/* ============================================= */
/*   RESPONSIVE STYLES ONLY – Long Backhaul System   */
/* Mobile-first – works well on mobile, tablet, laptop, PC */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {

    .lbs-mini-card,
    .lbs-card,
    .lbs-ind,
    .lbs-cta-box {
        margin-right: 50px;
    }

    .lbs-left p {
        margin-right: 50px;
    }

    .lbs-hero {
        height: 50vh;
        min-height: 360px;
    }

    .lbs-hero-content h1 {
        font-size: 21px;
    }

    .lbs-hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .lbs-hero-btns {
        /* flex-direction: column;  */
        gap: 14px;
    }

    .lbs-btn-primary,
    .lbs-btn-outline {
        width: 56%;
        text-align: center;
        padding: 10px 24px;
        font-size: 1.05rem;
    }

    .lbs-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lbs-highlights,
    .lbs-grid,
    .lbs-ind-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lbs-head h2 {
        font-size: 2.1rem;
    }

    .lbs-overview,
    .lbs-features,
    .lbs-applications,
    .lbs-why,
    .lbs-cta {
        padding: 50px 0;
    }

    .lbs-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 20px;
    }

    .lbs-breadcrumb p {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .lbs-img-box {
        height: 260px;
    }

    .lbs-line {
        margin-bottom: -22px;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .lbs-hero {
        height: 55vh;
        min-height: 420px;
    }

    .lbs-hero-content h1 {
        font-size: 3.3rem;
    }

    .lbs-two-col {
        grid-template-columns: 1fr;
    }

    .lbs-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .lbs-grid {
        grid-template-columns: repeat(2, 1fr);
        /* features 2-column on tablet */
    }

    .lbs-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lbs-head h2 {
        font-size: 2.5rem;
    }

    .lbs-overview,
    .lbs-features,
    .lbs-applications,
    .lbs-why,
    .lbs-cta {
        padding: 60px 0;
    }

    .lbs-img-box {
        height: 320px;
    }

    .lbs-cta-box {
        padding: 32px 25px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {

    .lbs-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .lbs-hero-content h1 {
        font-size: 3.8rem;
    }

    .lbs-head h2 {
        font-size: 2.8rem;
    }

    .lbs-img-box {
        height: 420px;
    }
}

@media (min-width: 1400px) {
    .lbs-container {
        max-width: 1320px;
    }
}

/* //////////////////////////////////////////////////////////////////////////////// */


/* ot-cyebr-security */
.ot-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.ot-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -40px;
}

/* HERO */
.ot-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.ot-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(121 128 128 / 74%);
}

.ot-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.ot-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
}

.ot-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.ot-hero-btns {
    display: flex;
    gap: 14px;
}

.ot-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.ot-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.ot-btn-primary:hover,
.ot-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.ot-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.ot-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.ot-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.ot-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.ot-overview {
    padding: 80px 0;
}

.ot-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.ot-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 680px;
}

.ot-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ot-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ot-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ot-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.ot-img-box {
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ot-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Features */
.ot-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.ot-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ot-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.ot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ot-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ot-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ot-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Solutions */
.ot-solutions {
    padding: 80px 0;
    background: #fff;
}

.ot-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ot-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Industries */
.ot-industries {
    padding: 80px 0;
    background: #fff;
}

.ot-industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.ot-industry {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.ot-why {
    padding: 80px 0;
    background: #fff;
}

.ot-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.ot-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.ot-cta {
    padding: 70px 0;
    background: #fff;
}

.ot-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.ot-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.ot-cta-box p {
    color: #444;
    margin: 0;
}

/* ============================================= */
/*   RESPONSIVE STYLES ONLY – OT Cyber Security   */
/* Mobile-first – balanced on mobile, tablet, laptop, PC */
/* ============================================= */

/* Mobile portrait & small screens (≤ 576px) */
@media (max-width: 576px) {

    .ot-mini-card,
    .ot-card,
    .ot-ind,
    .ot-industry,
    .ot-left p,
    .ot-list,
    .ot-cta-box {
        margin-right: 38px;
    }

    .ot-hero {
        height: 50vh;
        min-height: 360px;
    }

    .ot-hero-content h1 {
        font-size: 22px;
    }

    .ot-hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .ot-hero-btns {
        /* flex-direction: column; */
        gap: 14px;
    }

    .ot-btn-primary,
    .ot-btn-outline {
        width: 51%;
        text-align: center;
        padding: 14px 24px;
        font-size: 1.05rem;
    }

    .ot-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ot-highlights,
    .ot-grid,
    .ot-ind-grid,
    .ot-industry-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ot-head h2 {
        font-size: 20px;
    }

    .ot-overview,
    .ot-features,
    .ot-solutions,
    .ot-industries,
    .ot-why,
    .ot-cta {
        padding: 50px 0;
    }

    .ot-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 20px;
    }

    .ot-breadcrumb p {
        font-size: 13px;
        line-height: 1.5;
    }

    .ot-img-box {
        height: 260px;
        /* smaller fixed height on mobile */
    }

    .ot-line {
        margin-bottom: -24px;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .ot-hero {
        height: 55vh;
        min-height: 420px;
    }

    .ot-hero-content h1 {
        font-size: 3.3rem;
    }

    .ot-two-col {
        grid-template-columns: 1fr;
        /* overview & why stack on tablets */
    }

    .ot-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .ot-grid {
        grid-template-columns: repeat(2, 1fr);
        /* features 2-column */
    }

    .ot-ind-grid,
    .ot-industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ot-head h2 {
        font-size: 2.5rem;
    }

    .ot-overview,
    .ot-features,
    .ot-solutions,
    .ot-industries,
    .ot-why,
    .ot-cta {
        padding: 60px 0;
    }

    .ot-img-box {
        height: 320px;
    }

    .ot-cta-box {
        padding: 32px 25px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {
    /* Your original layouts are preserved here */

    .ot-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .ot-hero-content h1 {
        font-size: 3.8rem;
        /* or keep 56px if you prefer very large */
    }

    .ot-head h2 {
        font-size: 2.8rem;
    }

    .ot-img-box {
        height: 420px;
        /* your original value – good on wide screens */
    }
}

/* Very large screens – prevent excessive width */
@media (min-width: 1400px) {
    .ot-container {
        max-width: 1320px;
    }
}

/* ///////////////////////////////////////////////////////////////////// */

/* it-cyber-security */
.fw-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.fw-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -38px;
}

/* HERO */
.fw-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.fw-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.fw-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.fw-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
}

.fw-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.fw-hero-btns {
    display: flex;
    gap: 14px;
}

.fw-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.fw-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.fw-btn-primary:hover,
.fw-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.fw-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.fw-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.fw-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.fw-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.fw-overview {
    padding: 80px 0;
}

.fw-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.fw-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 680px;
}

.fw-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fw-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.fw-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.fw-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.fw-img-box {
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.fw-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
}

/* Features */
.fw-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.fw-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.fw-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.fw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.fw-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.fw-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.fw-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Use Cases */
.fw-usecases {
    padding: 80px 0;
    background: #fff;
}

.fw-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.fw-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.fw-why {
    padding: 80px 0;
    background: #fff;
}

.fw-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.fw-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.fw-cta {
    padding: 70px 0;
    background: #fff;
}

.fw-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.fw-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.fw-cta-box p {
    color: #444;
    margin: 0;
}

/* ============================================= */
/*     RESPONSIVE STYLES ONLY – IT Firewall      */
/* Mobile-first – good on mobile, tablet, laptop, PC */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {
    .fw-left h2 {
        font-size: 32px;
    }

    .fw-mini-card,
    .fw-card,
    .fw-ind,
    .fw-list,
    .fw-cta-box {
        margin-right: 44px;
    }

    .fw-left p {
        margin-right: 36px;
    }

    .fw-hero {
        height: 50vh;
        min-height: 425px;
    }

    .fw-hero-content h1 {
        font-size: 2.4rem;
    }

    .fw-hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .fw-hero-btns {
        /* flex-direction: column; */
        gap: 14px;
    }

    .fw-btn-primary,
    .fw-btn-outline {
        width: 51%;
        text-align: center;
        padding: 10px 24px;
        font-size: 1.05rem;
    }

    .fw-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fw-highlights,
    .fw-grid,
    .fw-ind-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fw-head h2 {
        font-size: 2.1rem;
    }

    .fw-overview,
    .fw-features,
    .fw-usecases,
    .fw-why,
    .fw-cta {
        padding: 50px 0;
    }

    .fw-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 20px;
    }

    .fw-breadcrumb p {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .fw-img-box {
        height: 260px;
    }

    .fw-line {
        margin-bottom: -24px;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .fw-hero {
        height: 55vh;
        min-height: 420px;
    }

    .fw-hero-content h1 {
        font-size: 3.3rem;
    }

    .fw-two-col {
        grid-template-columns: 1fr;
        /* overview & why sections stack */
    }

    .fw-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .fw-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fw-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fw-head h2 {
        font-size: 2.5rem;
    }

    .fw-overview,
    .fw-features,
    .fw-usecases,
    .fw-why,
    .fw-cta {
        padding: 60px 0;
    }

    .fw-img-box {
        height: 320px;
    }

    .fw-cta-box {
        padding: 32px 25px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {

    .fw-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .fw-hero-content h1 {
        font-size: 3.8rem;
    }

    .fw-head h2 {
        font-size: 2.8rem;
    }

    .fw-img-box {
        height: 420px;
    }
}

@media (min-width: 1400px) {
    .fw-container {
        max-width: 1320px;
    }
}

/* ///////////////////////////////////////////////////////////// */

/* automation-system-design-installation */

.as-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.as-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -26px;
}

/* HERO */
.as-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.as-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.as-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.as-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}

.as-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.as-hero-btns {
    display: flex;
    gap: 14px;
}

.as-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.as-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.as-btn-primary:hover,
.as-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.as-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.as-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.as-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.as-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.as-overview {
    padding: 80px 0;
}

.as-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.as-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 680px;
}

.as-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.as-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.as-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.as-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.as-img-box {
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.as-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
}

/* Features */
.as-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.as-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.as-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.as-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.as-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.as-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.as-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Applications */
.as-applications {
    padding: 80px 0;
    background: #fff;
}

.as-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.as-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.as-why {
    padding: 80px 0;
    background: #fff;
}

.as-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.as-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* Extra 2 Sections */
.as-extra {
    padding: 80px 0;
    background: #fff;
}

.as-extra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.as-extra-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.as-extra-img {
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
}

.as-extra-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.as-extra-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.as-extra-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
}

.as-extra-btn {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
}

/* CTA */
.as-cta {
    padding: 70px 0;
    background: #fff;
}

.as-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.as-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.as-cta-box p {
    color: #444;
    margin: 0;
}

/* ============================================= */
/* RESPONSIVE STYLES ONLY – Automation Services   */
/* Mobile-first – balanced on mobile, tablet, laptop, PC */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {
    .as-head p {
        font-size: 12px;
    }

    .as-mini-card,
    .as-card,
    .as-ind,
    .as-extra-card,
    .as-left p,
    .as-list,
    .as-cta-box {

        margin-right: 30px;
    }

    .as-hero-overlay {
        background: rgb(0 0 0 / 74%);
    }

    .as-hero {
        height: 50vh;
        min-height: 441px;
    }

    .as-hero-content h1 {
        font-size: 26px;
    }

    .as-hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .as-hero-btns {
        /* flex-direction: column; */
        gap: 14px;
    }

    .as-btn-primary,
    .as-btn-outline,
    .as-extra-btn {
        width: 51%;
        text-align: center;
        padding: 14px 24px;
        font-size: 1.05rem;
    }

    .as-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .as-highlights,
    .as-grid,
    .as-ind-grid,
    .as-extra-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .as-head h2 {
        font-size: 24px;
    }

    .as-overview,
    .as-features,
    .as-applications,
    .as-why,
    .as-extra,
    .as-cta {
        padding: 50px 0;
    }

    .as-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 28px 20px;
    }

    .as-breadcrumb p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .as-img-box {
        height: 240px;
        /* smaller on mobile */
    }

    .as-extra-img {
        height: 200px;
    }

    .as-line {
        margin-bottom: -20px;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .as-hero {
        height: 55vh;
        min-height: 400px;
    }

    .as-hero-content h1 {
        font-size: 3.2rem;
    }

    .as-two-col {
        grid-template-columns: 1fr;
        /* overview & why stack */
    }

    .as-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-grid {
        grid-template-columns: repeat(2, 1fr);
        /* services 2-column */
    }

    .as-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-extra-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-head h2 {
        font-size: 2.4rem;
    }

    .as-overview,
    .as-features,
    .as-applications,
    .as-why,
    .as-extra,
    .as-cta {
        padding: 60px 0;
    }

    .as-img-box {
        height: 300px;
    }

    .as-extra-img {
        height: 240px;
    }

    .as-cta-box {
        padding: 30px 25px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {
    /* Original layout preserved */

    .as-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .as-hero-content h1 {
        font-size: 3.6rem;
        /* or keep 42px if you prefer */
    }

    .as-head h2 {
        font-size: 2.7rem;
    }

    .as-img-box {
        height: 420px;
        /* your original value */
    }

    .as-extra-img {
        height: 260px;
        /* your original value */
    }
}

/* Very large screens – cap width to avoid ultra-wide text */
@media (min-width: 1400px) {
    .as-container {
        max-width: 1320px;
    }
}

/* /////////////////////////////////////////////////////////////////////// */

/* managed-network-design-network */

.mn-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.mn-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -26px;
}

/* HERO */
.mn-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.mn-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.mn-hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    color: #fff;
}

.mn-hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.mn-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.mn-hero-btns {
    display: flex;
    gap: 14px;
}

.mn-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.mn-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.mn-btn-primary:hover,
.mn-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.mn-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.mn-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.mn-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.mn-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.mn-overview {
    padding: 80px 0;
}

.mn-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.mn-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 720px;
}

.mn-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mn-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.mn-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.mn-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.mn-img-box {
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.mn-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
}

/* Features */
.mn-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.mn-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.mn-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.mn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mn-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.mn-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.mn-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Applications */
.mn-applications {
    padding: 80px 0;
    background: #fff;
}

.mn-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mn-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.mn-why {
    padding: 80px 0;
    background: #fff;
}

.mn-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.mn-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* Extra */
.mn-extra {
    padding: 80px 0;
    background: #fff;
}

.mn-extra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mn-extra-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.mn-extra-img {
    height: 299px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
}

.mn-extra-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
}

.mn-extra-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.mn-extra-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
}

.mn-extra-btn {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
}

/* CTA */
.mn-cta {
    padding: 70px 0;
    background: #fff;
}

.mn-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.mn-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.mn-cta-box p {
    color: #444;
    margin: 0;
}

/* ============================================= */
/* RESPONSIVE STYLES ONLY – Managed Network + NMS */
/* Mobile-first – balanced on mobile, tablet, laptop, PC */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {
    .mn-hero {
        height: 50vh;
        min-height: 412px;
    }

    .mn-head p {
        font-size: 15px;
    }

    .mn-mini-card,
    .mn-card,
    .mn-ind,
    .mn-extra-card,
    .mn-cta-box {
        margin-right: 40px;
    }

    .mn-left p {
        margin-right: 25px;
    }

    .mn-hero-overlay {
        background: rgb(0 0 0 / 68%);
    }

    .mn-hero-content h1 {
        font-size: 19px;
        line-height: 1.25;
    }

    .mn-hero-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .mn-hero-btns {
        /* flex-direction: column; */
        gap: 14px;
    }

    .mn-btn-primary,
    .mn-btn-outline,
    .mn-extra-btn {
        width: 51%;
        text-align: center;
        padding: 10px 24px;
        font-size: 1.05rem;
    }

    .mn-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mn-highlights,
    .mn-grid,
    .mn-ind-grid,
    .mn-extra-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mn-head h2,
    .mn-left h2 {
        font-size: 25px;
    }

    .mn-overview,
    .mn-features,
    .mn-applications,
    .mn-why,
    .mn-extra,
    .mn-cta {
        padding: 50px 0;
    }

    .mn-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 20px;
    }

    .mn-breadcrumb p {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .mn-img-box {
        height: 260px;
    }

    .mn-extra-img {
        height: 220px;
    }

    .mn-line {
        margin-bottom: -20px;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .mn-hero {
        height: 55vh;
        min-height: 420px;
    }

    .mn-hero-content h1 {
        font-size: 3.3rem;
        line-height: 1.2;
    }

    .mn-two-col {
        grid-template-columns: 1fr;
    }

    .mn-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .mn-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mn-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mn-extra-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mn-head h2 {
        font-size: 2.5rem;
    }

    .mn-overview,
    .mn-features,
    .mn-applications,
    .mn-why,
    .mn-extra,
    .mn-cta {
        padding: 60px 0;
    }

    .mn-img-box {
        height: 320px;
    }

    .mn-extra-img {
        height: 260px;
    }

    .mn-cta-box {
        padding: 32px 25px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {

    .mn-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .mn-hero-content h1 {
        font-size: 3.8rem;
    }

    .mn-head h2 {
        font-size: 2.8rem;
    }

    .mn-img-box {
        height: 420px;
    }

    .mn-extra-img {
        height: 299px;
    }
}

@media (min-width: 1400px) {
    .mn-container {
        max-width: 1320px;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////// */

/* rtu-plc-installation */

.sldc-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.sldc-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -18px;
}

/* HERO */
.sldc-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.sldc-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.sldc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    color: #fff;
}

.sldc-hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.sldc-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.sldc-hero-btns {
    display: flex;
    gap: 14px;
}

.sldc-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.sldc-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.sldc-btn-primary:hover,
.sldc-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.sldc-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.sldc-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.sldc-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.sldc-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.sldc-overview {
    padding: 80px 0;
}

.sldc-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.sldc-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 720px;
}

.sldc-highlights-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sldc-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sldc-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sldc-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.sldc-img-box {
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sldc-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
}

/* Features */
.sldc-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.sldc-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sldc-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.sldc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sldc-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sldc-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sldc-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Scope */
.sldc-scope {
    padding: 80px 0;
    background: #fff;
}

.sldc-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sldc-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.sldc-why {
    padding: 80px 0;
    background: #fff;
}

.sldc-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.sldc-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.sldc-cta {
    padding: 70px 0;
    background: #fff;
}

.sldc-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sldc-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.sldc-cta-box p {
    color: #444;
    margin: 0;
}

/* ============================================= */
/* RESPONSIVE STYLES ONLY – RTU/PLC SLDC Service  */
/* Mobile-first – good on mobile, tablet, laptop, PC */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {
    .sldc-left p {
        margin-right: 20px;
    }

    .sldc-head p {
        font-size: 15px;
    }

    .sldc-hero {
        height: 50vh;
        min-height: 427px;
    }

    .sldc-mini-card,
    .sldc-card,
    .sldc-ind,
    .sldc-cta-box {
        margin-right: 35px;
    }

    .sldc-breadcrumb,
    .sldc-list {
        margin-right: 14px;
    }

    .sldc-hero-content h1 {
        font-size: 20px;
        line-height: 1.25;
    }

    .sldc-hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .sldc-hero-btns {
        /* flex-direction: column; */
        gap: 14px;
    }

    .sldc-btn-primary,
    .sldc-btn-outline {
        width: 51%;
        text-align: center;
        padding: 5px 12px;
        font-size: 1.05rem;
    }

    .sldc-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sldc-highlights-mini,
    .sldc-grid,
    .sldc-ind-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sldc-head h2 {
        font-size: 2rem;
    }

    .sldc-overview,
    .sldc-features,
    .sldc-scope,
    .sldc-why,
    .sldc-cta {
        padding: 50px 0;
    }

    .sldc-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 28px 20px;
    }

    .sldc-breadcrumb p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .sldc-img-box {
        height: 240px;
        /* smaller image on mobile */
    }

    .sldc-line {
        margin-bottom: -18px;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .sldc-hero {
        height: 55vh;
        min-height: 420px;
    }

    .sldc-hero-content h1 {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .sldc-two-col {
        grid-template-columns: 1fr;
        /* overview & why sections stack */
    }

    .sldc-highlights-mini {
        grid-template-columns: repeat(2, 1fr);
    }

    .sldc-grid {
        grid-template-columns: repeat(2, 1fr);
        /* highlights 2-column on tablet */
    }

    .sldc-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sldc-head h2 {
        font-size: 2.4rem;
    }

    .sldc-overview,
    .sldc-features,
    .sldc-scope,
    .sldc-why,
    .sldc-cta {
        padding: 60px 0;
    }

    .sldc-img-box {
        height: 300px;
    }

    .sldc-cta-box {
        padding: 30px 25px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {
    /* Original multi-column + fixed heights preserved here */

    .sldc-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .sldc-hero-content h1 {
        font-size: 3.6rem;
        /* or keep 44px if you prefer larger title */
    }

    .sldc-head h2 {
        font-size: 2.7rem;
    }

    .sldc-img-box {
        height: 420px;
        /* your original value – good on wide screens */
    }
}

/* Very large screens – cap container width */
@media (min-width: 1400px) {
    .sldc-container {
        max-width: 1320px;
    }
}

/* ////////////////////////////////////////////////////////////////////////////// */

/* mpls-cellular-based */
.mp-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.mp-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -25px;
}

/* HERO */
.mp-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.mp-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 75%);
}

.mp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    color: #fff;
}

.mp-hero-content h1 {
    font-size: 49px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.mp-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.mp-hero-btns {
    display: flex;
    gap: 14px;
}

.mp-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.mp-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.mp-btn-primary:hover,
.mp-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.mp-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.mp-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.mp-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.mp-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.mp-overview {
    padding: 80px 0;
}

.mp-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.mp-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 720px;
}

.mp-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mp-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.mp-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.mp-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.mp-img-box {
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.mp-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
}

/* Features */
.mp-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.mp-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.mp-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.mp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mp-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.mp-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.mp-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Applications */
.mp-applications {
    padding: 80px 0;
    background: #fff;
}

.mp-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mp-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.mp-why {
    padding: 80px 0;
    background: #fff;
}

.mp-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.mp-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.mp-cta {
    padding: 70px 0;
    background: #fff;
}

.mp-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.mp-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.mp-cta-box p {
    color: #444;
    margin: 0;
}

/* ============================================= */
/* RESPONSIVE STYLES ONLY – MPLS + Cellular + Wireless Design */
/* Mobile-first – works well on mobile, tablet, laptop, PC */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {
    .mp-hero {
        height: 50vh;
        min-height: 360px;
    }

    .mp-head p {
        font-size: 15px;
    }

    .mp-mini-card,
    .mp-card,
    .mp-ind,
    .mp-list,
    .mp-cta-box {
        margin-right: 33px;
    }

    .mp-left p {
        margin-right: 25px;
    }

    .mp-hero-content h1 {
        font-size: 19px;
        line-height: 1.25;
    }

    .mp-hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .mp-hero-btns {
        /* flex-direction: column; */
        gap: 14px;
    }

    .mp-btn-primary,
    .mp-btn-outline {
        width: 51%;
        text-align: center;
        padding: 14px 21px;
        font-size: 1.05rem;
    }

    .mp-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mp-highlights,
    .mp-grid,
    .mp-ind-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mp-head h2 {
        font-size: 26px;
    }

    .mp-overview,
    .mp-features,
    .mp-applications,
    .mp-why,
    .mp-cta {
        padding: 50px 0;
    }

    .mp-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 20px;
    }

    .mp-breadcrumb p {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .mp-img-box {
        height: 260px;
        /* smaller image on mobile */
    }

    .mp-line {
        margin-bottom: -20px;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .mp-hero {
        height: 55vh;
        min-height: 420px;
    }

    .mp-hero-content h1 {
        font-size: 3.3rem;
        line-height: 1.2;
    }

    .mp-two-col {
        grid-template-columns: 1fr;
    }

    .mp-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mp-head h2 {
        font-size: 2.5rem;
    }

    .mp-overview,
    .mp-features,
    .mp-applications,
    .mp-why,
    .mp-cta {
        padding: 60px 0;
    }

    .mp-img-box {
        height: 320px;
    }

    .mp-cta-box {
        padding: 32px 25px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {

    .mp-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .mp-hero-content h1 {
        font-size: 3.8rem;
    }

    .mp-head h2 {
        font-size: 2.8rem;
    }

    .mp-img-box {
        height: 420px;
    }
}

@media (min-width: 1400px) {
    .mp-container {
        max-width: 1320px;
    }
}

/* ///////////////////////////////////////////////////////////////////////////// */

/* turkey project */
.tk-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.tk-line {
    display: inline-block;
    width: 47px;
    height: 4px;
    background: #ff0000;
    margin-bottom: -37px;
}

/* HERO */
.tk-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.tk-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.tk-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #fff;
}

.tk-hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 12px;
}

.tk-hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

.tk-hero-btns {
    display: flex;
    gap: 14px;
}

.tk-btn-primary {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.tk-btn-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
}

.tk-btn-primary:hover,
.tk-btn-outline:hover {
    opacity: 0.9;
}

/* Breadcrumb */
.tk-breadcrumb {
    padding: 16px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.tk-breadcrumb p {
    font-size: 14px;
    color: #444;
}

.tk-breadcrumb span {
    margin: 0 6px;
    color: #999;
}

/* Layout */
.tk-two-col {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Overview */
.tk-overview {
    padding: 80px 0;
}

.tk-left h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.tk-left p {
    color: #333;
    line-height: 1.9;
    margin-bottom: 22px;
    max-width: 720px;
}

.tk-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tk-mini-card {
    background: #fff;
    padding: 18px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.tk-mini-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.tk-mini-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.tk-img-box {
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.tk-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    /* object-fit: cover; */
}

/* Features */
.tk-features {
    padding: 80px 0;
    background: #f7f7f7;
}

.tk-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
}

.tk-head p {
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
}

.tk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.tk-card {
    background: #fff;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.tk-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.tk-card p {
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

/* Flow */
.tk-flow {
    padding: 80px 0;
    background: #fff;
}

.tk-flow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.tk-step {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 800;
}

.tk-step h3 {
    font-size: 28px;
    color: #ff0000;
    margin-bottom: 8px;
}

.tk-step p {
    font-size: 14px;
    color: #111;
}

/* Industries */
.tk-industries {
    padding: 80px 0;
    background: #fff;
}

.tk-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tk-ind {
    background: #f7f7f7;
    padding: 18px 16px;
    border-radius: 12px;
    font-weight: 800;
    color: #111;
}

/* Why */
.tk-why {
    padding: 80px 0;
    background: #fff;
}

.tk-list {
    margin: 14px 0 18px;
    padding-left: 0;
    list-style: none;
}

.tk-list li {
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

/* CTA */
.tk-cta {
    padding: 70px 0;
    background: #fff;
}

.tk-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 35px 30px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.tk-cta-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.tk-cta-box p {
    color: #444;
    margin: 0;
}

/* ============================================= */
/* RESPONSIVE STYLES ONLY – Turnkey Projects     */
/* Mobile-first – good on mobile, tablet, laptop, PC */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {
    .tk-hero {
        height: 50vh;
        min-height: 470px;
    }

    .tk-head p {
        font-size: 13px;
    }

    .tk-left h2 {
        font-size: 21px;
    }

    .tk-mini-card,
    .tk-card,
    .tk-ind,
    .tk-step,
    .tk-cta-box {
        margin-right: 36px;
    }

    .tk-left p,
    .tk-list li {
        margin-right: 20px;
    }

    .tk-hero-content h1 {
        font-size: 2.3rem;
        /* ≈36–38px – readable on small screens */
        line-height: 1.25;
    }

    .tk-hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .tk-hero-btns {
        /* flex-direction: column; */
        gap: 14px;
    }

    .tk-btn-primary,
    .tk-btn-outline {
        width: 51%;
        text-align: center;
        padding: 14px 24px;
        font-size: 1.05rem;
    }

    .tk-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tk-highlights,
    .tk-grid,
    .tk-ind-grid,
    .tk-flow-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Project Flow – stack vertically on mobile */
    .tk-flow-grid {
        grid-template-columns: 1fr;
    }

    .tk-head h2 {
        font-size: 2rem;
    }

    .tk-overview,
    .tk-features,
    .tk-flow,
    .tk-industries,
    .tk-why,
    .tk-cta {
        padding: 50px 0;
    }

    .tk-cta-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 28px 20px;
    }

    .tk-breadcrumb p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .tk-img-box {
        height: 240px;
        /* smaller image on mobile */
    }

    .tk-line {
        margin-bottom: -22px;
    }

    .tk-step h3 {
        font-size: 24px;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .tk-hero {
        height: 55vh;
        min-height: 400px;
    }

    .tk-hero-content h1 {
        font-size: 3.2rem;
        line-height: 1.2;
    }

    .tk-two-col {
        grid-template-columns: 1fr;
        /* overview & why stack on tablets */
    }

    .tk-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .tk-grid {
        grid-template-columns: repeat(2, 1fr);
        /* services 2-column */
    }

    .tk-ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Project Flow – 2 or 3 columns on tablet depending on space */
    .tk-flow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .tk-head h2 {
        font-size: 2.4rem;
    }

    .tk-overview,
    .tk-features,
    .tk-flow,
    .tk-industries,
    .tk-why,
    .tk-cta {
        padding: 60px 0;
    }

    .tk-img-box {
        height: 300px;
    }

    .tk-cta-box {
        padding: 30px 25px;
    }

    .tk-step h3 {
        font-size: 26px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {
    /* Your original layouts are preserved here */

    .tk-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .tk-hero-content h1 {
        font-size: 3.8rem;
        /* or keep 56px if you prefer very large */
    }

    .tk-head h2 {
        font-size: 2.8rem;
    }

    .tk-img-box {
        height: 420px;
        /* your original value */
    }

    /* Project Flow – full 5-column on desktop */
    .tk-flow-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Very large screens – cap container width */
@media (min-width: 1400px) {
    .tk-container {
        max-width: 1320px;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////// */

/* power part */
.abbPower {
    width: 100%;
    background: #ffffff;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* HERO */
.abbPower-hero {
    position: relative;
    height: 92vh;
    overflow: hidden;
}

.abbPower-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.abbPower-heroOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
}

.abbPower-heroText {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 85px 8%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    max-width: 950px;
}

.abbPower-pill {
    width: max-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.abbPower-heroText h1 {
    font-size: 66px;
    font-weight: 900;
    margin: 0 0 12px;
    line-height: 1.05;
}

.abbPower-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 22px;
}

.abbPower-heroStats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.abbPower-stat {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    min-width: 150px;
}

.abbPower-stat h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 900;
}

.abbPower-stat p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

/* WRAP */
.abbPower-wrap {
    padding: 95px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

/* INTRO */
.abbPower-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
    align-items: end;
    margin-bottom: 45px;
}

.abbPower-introLeft h2 {
    margin: 0 0 12px;
    font-size: 42px;
    font-weight: 900;
    color: #0b1f33;
}

.abbPower-introLeft p {
    margin: 0;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.8;
    color: #4f6274;
}

/* BIG IMAGE */
.abbPower-introImage {
    width: 100%;
    height: 230px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.abbPower-introImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.abbPower-introImage:hover img {
    transform: scale(1.05);
}

/* LINE CARD */
.abbPower-lineCard {
    border-radius: 22px;
    padding: 22px 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.abbPower-lineCard::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff0000, #1b74ff);
}

.abbPower-lineCard h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    color: #0b1f33;
}

.abbPower-lineCard p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: #5a6c7e;
}

/* GRID */
.abbPower-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* CARD IMAGE */
.abbPower-cardImg {
    width: 100%;
    height: 190px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
}

.abbPower-cardImg img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: 0.35s ease;
}

.abbPower-card:hover .abbPower-cardImg img {
    transform: scale(1.06);
}

/* CARD */
.abbPower-card {
    border-radius: 22px;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.abbPower-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(255, 0, 0, 0.12), transparent 55%);
    opacity: 0;
    transition: 0.35s ease;
}

.abbPower-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
}

.abbPower-card:hover::after {
    opacity: 1;
}

.abbPower-cardHead {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.abbPower-no {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    color: #ff0000;
    background: rgba(255, 0, 0, 0.08);
}

.abbPower-card h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: #0b1f33;
    line-height: 1.2;
}

.abbPower-card ul {
    margin: 0;
    padding-left: 18px;
    position: relative;
    z-index: 2;
}

.abbPower-card li {
    font-size: 13.5px;
    line-height: 1.7;
    color: #4a5d70;
    margin-bottom: 8px;
}

.abbPower-card li b {
    color: #0b1f33;
}

/* ============================================= */
/* RESPONSIVE STYLES ONLY – Power Automation Page */
/* Mobile-first – looks good on mobile, tablet, laptop, PC */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {
    .abbPower-hero {
        height: 70vh;
        min-height: 614px;
    }

    .abbPower-heroText {
        padding: 60px 6% 80px;
        justify-content: center;
        text-align: center;
    }

    .abbPower-heroText h1 {
        font-size: 28px;
        line-height: 1.15;
    }

    .abbPower-desc {
        font-size: 1rem;
        max-width: 90%;
        margin: 0 auto 24px;
    }

    .abbPower-pill {
        font-size: 11px;
        padding: 6px 12px;
    }

    .abbPower-heroStats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .abbPower-stat {
        min-width: 140px;
        padding: 12px 14px;
    }

    .abbPower-stat h3 {
        font-size: 18px;
    }

    .abbPower-wrap {
        padding: 60px 6%;
    }

    .abbPower-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .abbPower-introLeft h2 {
        font-size: 2.2rem;
    }

    .abbPower-introLeft p {
        font-size: 0.95rem;
    }

    .abbPower-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .abbPower-cardImg {
        height: 180px;
    }

    .abbPower-card h3 {
        font-size: 1.1rem;
    }

    .abbPower-card li {
        font-size: 0.9rem;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .abbPower-hero {
        height: 80vh;
        min-height: 520px;
    }

    .abbPower-heroText {
        padding: 70px 8% 100px;
        max-width: 800px;
    }

    .abbPower-heroText h1 {
        font-size: 3.4rem;
    }

    .abbPower-desc {
        font-size: 1.05rem;
    }

    .abbPower-heroStats {
        gap: 16px;
    }

    .abbPower-wrap {
        padding: 70px 8%;
    }

    .abbPower-intro {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .abbPower-introLeft h2 {
        font-size: 2.6rem;
    }

    .abbPower-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .abbPower-cardImg {
        height: 200px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {
    .abbPower-heroText {
        padding: 90px 8% 120px;
        max-width: 1100px;
    }

    .abbPower-heroText h1 {
        font-size: 4.2rem;
    }

    .abbPower-wrap {
        padding: 95px 8%;
    }

    .abbPower-intro {
        grid-template-columns: 1.2fr 1fr;
        text-align: left;
    }

    .abbPower-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .abbPower-wrap,
    .abbPower-container {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1400px) {
    .abbPower-heroText {
        max-width: 1200px;
    }

    .abbPower-wrap {
        padding-left: 10%;
        padding-right: 10%;
    }
}

/* ///////////////////////////////////////////////////////////////////////////// */

/* water part */
.abbWater {
    width: 100%;
    background: #ffffff;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* HERO */
.abbWater-hero {
    position: relative;
    height: 92vh;
    overflow: hidden;
}

.abbWater-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.abbWater-heroOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
}

.abbWater-heroText {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 85px 8%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    max-width: 950px;
}

.abbWater-pill {
    width: max-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.abbWater-heroText h1 {
    font-size: 66px;
    font-weight: 900;
    margin: 0 0 12px;
    line-height: 1.05;
}

.abbWater-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 22px;
}

.abbWater-heroStats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.abbWater-stat {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    min-width: 150px;
}

.abbWater-stat h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 900;
}

.abbWater-stat p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

/* WRAP */
.abbWater-wrap {
    padding: 95px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

/* INTRO */
.abbWater-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
    align-items: end;
    margin-bottom: 45px;
}

.abbWater-introLeft h2 {
    margin: 0 0 12px;
    font-size: 42px;
    font-weight: 900;
    color: #0b1f33;
}

.abbWater-introLeft p {
    margin: 0;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.8;
    color: #4f6274;
}

/* BIG IMAGE */
.abbWater-introImage {
    width: 100%;
    height: 230px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.abbWater-introImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.abbWater-introImage:hover img {
    transform: scale(1.05);
}

/* LINE CARD */
.abbWater-lineCard {
    border-radius: 22px;
    padding: 22px 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.abbWater-lineCard::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0077ff, #00b3b3);
}

.abbWater-lineCard h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    color: #0b1f33;
}

.abbWater-lineCard p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: #5a6c7e;
}

/* GRID */
.abbWater-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* CARD IMAGE */
.abbWater-cardImg {
    width: 100%;
    height: 190px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
}

.abbWater-cardImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.abbWater-card:hover .abbWater-cardImg img {
    transform: scale(1.06);
}

/* CARD */
.abbWater-card {
    border-radius: 22px;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.abbWater-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(0, 140, 255, 0.14), transparent 55%);
    opacity: 0;
    transition: 0.35s ease;
}

.abbWater-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
}

.abbWater-card:hover::after {
    opacity: 1;
}

.abbWater-cardHead {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.abbWater-no {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    color: #0077ff;
    background: rgba(0, 119, 255, 0.10);
}

.abbWater-card h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: #0b1f33;
    line-height: 1.2;
}

.abbWater-card ul {
    margin: 0;
    padding-left: 18px;
    position: relative;
    z-index: 2;
}

.abbWater-card li {
    font-size: 13.5px;
    line-height: 1.7;
    color: #4a5d70;
    margin-bottom: 8px;
}

.abbWater-card li b {
    color: #0b1f33;
}

/* ============================================= */
/* RESPONSIVE STYLES ONLY – Water Automation Page */
/* Mobile-first – good on mobile, tablet, laptop, PC */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {
    .abbWater-hero {
        height: 70vh;
        min-height: 700px;
    }

    .abbWater-heroText {
        padding: 60px 6% 80px;
        justify-content: center;
        text-align: center;
    }

    .abbWater-heroText h1 {
        font-size: 2.6rem;
        line-height: 1.15;
    }

    .abbWater-desc {
        font-size: 15px;
        max-width: 90%;
        margin: 0 auto 24px;
    }

    .abbWater-pill {
        font-size: 11px;
        padding: 6px 12px;
    }

    .abbWater-heroStats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .abbWater-stat {
        min-width: 140px;
        padding: 12px 14px;
    }

    .abbWater-stat h3 {
        font-size: 18px;
    }

    .abbWater-wrap {
        padding: 60px 6%;
    }

    .abbWater-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .abbWater-introLeft h2 {
        font-size: 2.2rem;
    }

    .abbWater-introLeft p {
        font-size: 0.95rem;
    }

    .abbWater-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .abbWater-cardImg {
        height: 180px;
    }

    .abbWater-card h3 {
        font-size: 1.1rem;
    }

    .abbWater-card li {
        font-size: 0.9rem;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .abbWater-hero {
        height: 80vh;
        min-height: 520px;
    }

    .abbWater-heroText {
        padding: 70px 8% 100px;
        max-width: 800px;
    }

    .abbWater-heroText h1 {
        font-size: 3.4rem;
    }

    .abbWater-desc {
        font-size: 1.05rem;
    }

    .abbWater-heroStats {
        gap: 16px;
    }

    .abbWater-wrap {
        padding: 70px 8%;
    }

    .abbWater-intro {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .abbWater-introLeft h2 {
        font-size: 2.6rem;
    }

    .abbWater-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .abbWater-cardImg {
        height: 200px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {

    .abbWater-heroText {
        padding: 90px 8% 120px;
        max-width: 1100px;
    }

    .abbWater-heroText h1 {
        font-size: 4.2rem;
    }

    .abbWater-wrap {
        padding: 95px 8%;
    }

    .abbWater-intro {
        grid-template-columns: 1.2fr 1fr;
        text-align: left;
    }

    .abbWater-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .abbWater-wrap {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1400px) {
    .abbWater-heroText {
        max-width: 1200px;
    }

    .abbWater-wrap {
        padding-left: 10%;
        padding-right: 10%;
    }
}

/* //////////////////////////////////////////////////////////////////////////// */

/* oil and gas */
.abbOilGas {
    width: 100%;
    background: #ffffff;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* HERO */
.abbOilGas-hero {
    position: relative;
    height: 92vh;
    overflow: hidden;
}

.abbOilGas-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.abbOilGas-heroOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25));
}

.abbOilGas-heroText {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 85px 8%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    max-width: 950px;
}

.abbOilGas-pill {
    width: max-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.abbOilGas-heroText h1 {
    font-size: 66px;
    font-weight: 900;
    margin: 0 0 12px;
    line-height: 1.05;
}

.abbOilGas-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 22px;
}

.abbOilGas-heroStats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.abbOilGas-stat {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    min-width: 150px;
}

.abbOilGas-stat h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 900;
}

.abbOilGas-stat p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

/* WRAP */
.abbOilGas-wrap {
    padding: 95px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

/* INTRO */
.abbOilGas-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
    align-items: end;
    margin-bottom: 45px;
}

.abbOilGas-introLeft h2 {
    margin: 0 0 12px;
    font-size: 42px;
    font-weight: 900;
    color: #0b1f33;
}

.abbOilGas-introLeft p {
    margin: 0;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.8;
    color: #4f6274;
}

/* BIG IMAGE */
.abbOilGas-introImage {
    width: 100%;
    height: 230px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.abbOilGas-introImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.abbOilGas-introImage:hover img {
    transform: scale(1.05);
}

/* LINE CARD */
.abbOilGas-lineCard {
    border-radius: 22px;
    padding: 22px 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.abbOilGas-lineCard::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ff7a00, #ff0000);
}

.abbOilGas-lineCard h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    color: #0b1f33;
}

.abbOilGas-lineCard p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: #5a6c7e;
}

/* GRID */
.abbOilGas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* CARD IMAGE */
.abbOilGas-cardImg {
    width: 100%;
    height: 190px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
}

.abbOilGas-cardImg img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: 0.35s ease;
}

.abbOilGas-card:hover .abbOilGas-cardImg img {
    transform: scale(1.06);
}

/* CARD */
.abbOilGas-card {
    border-radius: 22px;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.abbOilGas-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(255, 122, 0, 0.16), transparent 55%);
    opacity: 0;
    transition: 0.35s ease;
}

.abbOilGas-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
}

.abbOilGas-card:hover::after {
    opacity: 1;
}

.abbOilGas-cardHead {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.abbOilGas-no {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    color: #ff7a00;
    background: rgba(255, 122, 0, 0.12);
}

.abbOilGas-card h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: #0b1f33;
    line-height: 1.2;
}

.abbOilGas-card ul {
    margin: 0;
    padding-left: 18px;
    position: relative;
    z-index: 2;
}

.abbOilGas-card li {
    font-size: 13.5px;
    line-height: 1.7;
    color: #4a5d70;
    margin-bottom: 8px;
}

.abbOilGas-card li b {
    color: #0b1f33;
}

/* ============================================= */
/* RESPONSIVE STYLES ONLY – Oil & Gas Automation Page */
/* Mobile-first – looks good on mobile, tablet, laptop, PC */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {
    .abbOilGas-hero {
        height: 70vh;
        min-height: 700px;
    }

    .abbOilGas-heroText {
        padding: 60px 6% 80px;
        justify-content: center;
        text-align: center;
    }

    .abbOilGas-heroText h1 {
        font-size: 2.6rem;
        /* ≈42px – readable */
        line-height: 1.15;
    }

    .abbOilGas-desc {
        font-size: 1rem;
        max-width: 90%;
        margin: 0 auto 24px;
    }

    .abbOilGas-pill {
        font-size: 11px;
        padding: 6px 12px;
    }

    .abbOilGas-heroStats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .abbOilGas-stat {
        min-width: 140px;
        padding: 12px 14px;
    }

    .abbOilGas-stat h3 {
        font-size: 18px;
    }

    .abbOilGas-wrap {
        padding: 60px 6%;
    }

    .abbOilGas-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .abbOilGas-introLeft h2 {
        font-size: 2.2rem;
    }

    .abbOilGas-introLeft p {
        font-size: 0.95rem;
    }

    .abbOilGas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .abbOilGas-cardImg {
        height: 180px;
    }

    .abbOilGas-card h3 {
        font-size: 1.1rem;
    }

    .abbOilGas-card li {
        font-size: 0.9rem;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .abbOilGas-hero {
        height: 80vh;
        min-height: 520px;
    }

    .abbOilGas-heroText {
        padding: 70px 8% 100px;
        max-width: 800px;
    }

    .abbOilGas-heroText h1 {
        font-size: 3.4rem;
    }

    .abbOilGas-desc {
        font-size: 1.05rem;
    }

    .abbOilGas-heroStats {
        gap: 16px;
    }

    .abbOilGas-wrap {
        padding: 70px 8%;
    }

    .abbOilGas-intro {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .abbOilGas-introLeft h2 {
        font-size: 2.6rem;
    }

    .abbOilGas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .abbOilGas-cardImg {
        height: 200px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {
    /* Original layout preserved here */

    .abbOilGas-heroText {
        padding: 90px 8% 120px;
        max-width: 1100px;
    }

    .abbOilGas-heroText h1 {
        font-size: 4.2rem;
        /* or keep closer to 66px if you prefer big title */
    }

    .abbOilGas-wrap {
        padding: 95px 8%;
    }

    .abbOilGas-intro {
        grid-template-columns: 1.2fr 1fr;
        text-align: left;
    }

    .abbOilGas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    /* Optional: cap max width on ultra-wide screens */
    .abbOilGas-wrap {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Very large screens (> 1400px) – optional cap */
@media (min-width: 1400px) {
    .abbOilGas-heroText {
        max-width: 1200px;
    }

    .abbOilGas-wrap {
        padding-left: 10%;
        padding-right: 10%;
    }
}

/* ///////////////////////////////////////////////////////////////////////////////////////// */

/* manufatare */
.abbManufacturing {
    width: 100%;
    background: #ffffff;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* HERO */
.abbManufacturing-hero {
    position: relative;
    height: 92vh;
    overflow: hidden;
}

.abbManufacturing-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.abbManufacturing-heroOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.25));
}

.abbManufacturing-heroText {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 85px 8%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    max-width: 950px;
}

.abbManufacturing-pill {
    width: max-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.abbManufacturing-heroText h1 {
    font-size: 66px;
    font-weight: 900;
    margin: 0 0 12px;
    line-height: 1.05;
}

.abbManufacturing-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 22px;
}

.abbManufacturing-heroStats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.abbManufacturing-stat {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    min-width: 150px;
}

.abbManufacturing-stat h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 900;
}

.abbManufacturing-stat p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

/* WRAP */
.abbManufacturing-wrap {
    padding: 95px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

/* INTRO */
.abbManufacturing-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
    align-items: end;
    margin-bottom: 45px;
}

.abbManufacturing-introLeft h2 {
    margin: 0 0 12px;
    font-size: 42px;
    font-weight: 900;
    color: #0b1f33;
}

.abbManufacturing-introLeft p {
    margin: 0;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.8;
    color: #4f6274;
}

/* BIG IMAGE */
.abbManufacturing-introImage {
    width: 100%;
    height: 230px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.abbManufacturing-introImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.abbManufacturing-introImage:hover img {
    transform: scale(1.05);
}

/* LINE CARD */
.abbManufacturing-lineCard {
    border-radius: 22px;
    padding: 22px 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.abbManufacturing-lineCard::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #00a3a3, #1b74ff);
}

.abbManufacturing-lineCard h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    color: #0b1f33;
}

.abbManufacturing-lineCard p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: #5a6c7e;
}

/* GRID */
.abbManufacturing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* CARD IMAGE */
.abbManufacturing-cardImg {
    width: 100%;
    height: 190px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
}

.abbManufacturing-cardImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.abbManufacturing-card:hover .abbManufacturing-cardImg img {
    transform: scale(1.06);
}

/* CARD */
.abbManufacturing-card {
    border-radius: 22px;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.abbManufacturing-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(0, 163, 163, 0.14), transparent 55%);
    opacity: 0;
    transition: 0.35s ease;
}

.abbManufacturing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
}

.abbManufacturing-card:hover::after {
    opacity: 1;
}

.abbManufacturing-cardHead {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.abbManufacturing-no {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    color: #00a3a3;
    background: rgba(0, 163, 163, 0.12);
}

.abbManufacturing-card h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: #0b1f33;
    line-height: 1.2;
}

.abbManufacturing-card ul {
    margin: 0;
    padding-left: 18px;
    position: relative;
    z-index: 2;
}

.abbManufacturing-card li {
    font-size: 13.5px;
    line-height: 1.7;
    color: #4a5d70;
    margin-bottom: 8px;
}

.abbManufacturing-card li b {
    color: #0b1f33;
}

/* ============================================= */
/* RESPONSIVE STYLES ONLY – Manufacturing Automation Page */
/* Mobile-first – looks good on mobile, tablet, laptop, PC */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {
    .abbManufacturing-hero {
        height: 70vh;
        min-height: 700px;
    }

    .abbManufacturing-heroText {
        padding: 60px 6% 80px;
        justify-content: center;
        text-align: center;
    }

    .abbManufacturing-heroText h1 {
        font-size: 2.6rem;
        /* ≈42px – readable on small phones */
        line-height: 1.15;
    }

    .abbManufacturing-desc {
        font-size: 1rem;
        max-width: 90%;
        margin: 0 auto 24px;
    }

    .abbManufacturing-pill {
        font-size: 11px;
        padding: 6px 12px;
    }

    .abbManufacturing-heroStats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .abbManufacturing-stat {
        min-width: 140px;
        padding: 12px 14px;
    }

    .abbManufacturing-stat h3 {
        font-size: 18px;
    }

    .abbManufacturing-wrap {
        padding: 60px 6%;
    }

    .abbManufacturing-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .abbManufacturing-introLeft h2 {
        font-size: 2.2rem;
    }

    .abbManufacturing-introLeft p {
        font-size: 0.95rem;
    }

    .abbManufacturing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .abbManufacturing-cardImg {
        height: 180px;
    }

    .abbManufacturing-card h3 {
        font-size: 1.1rem;
    }

    .abbManufacturing-card li {
        font-size: 0.9rem;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .abbManufacturing-hero {
        height: 80vh;
        min-height: 520px;
    }

    .abbManufacturing-heroText {
        padding: 70px 8% 100px;
        max-width: 800px;
    }

    .abbManufacturing-heroText h1 {
        font-size: 3.4rem;
    }

    .abbManufacturing-desc {
        font-size: 1.05rem;
    }

    .abbManufacturing-heroStats {
        gap: 16px;
    }

    .abbManufacturing-wrap {
        padding: 70px 8%;
    }

    .abbManufacturing-intro {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .abbManufacturing-introLeft h2 {
        font-size: 2.6rem;
    }

    .abbManufacturing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .abbManufacturing-cardImg {
        height: 200px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {
    /* Original layout preserved here */

    .abbManufacturing-heroText {
        padding: 90px 8% 120px;
        max-width: 1100px;
    }

    .abbManufacturing-heroText h1 {
        font-size: 4.2rem;
        /* or keep closer to 66px if you prefer big title */
    }

    .abbManufacturing-wrap {
        padding: 95px 8%;
    }

    .abbManufacturing-intro {
        grid-template-columns: 1.2fr 1fr;
        text-align: left;
    }

    .abbManufacturing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    /* Optional: cap max width on ultra-wide screens */
    .abbManufacturing-wrap {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Very large screens (> 1400px) – optional cap */
@media (min-width: 1400px) {
    .abbManufacturing-heroText {
        max-width: 1200px;
    }

    .abbManufacturing-wrap {
        padding-left: 10%;
        padding-right: 10%;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////// */

/* invehical & itms */
.abbITMS {
    width: 100%;
    background: #ffffff;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* HERO */
.abbITMS-hero {
    position: relative;
    height: 92vh;
    overflow: hidden;
}

.abbITMS-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.abbITMS-heroOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.25));
}

.abbITMS-heroText {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 85px 8%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    max-width: 950px;
}

.abbITMS-pill {
    width: max-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.abbITMS-heroText h1 {
    font-size: 61px;
    font-weight: 900;
    margin: 0 0 12px;
    line-height: 1.05;
}

.abbITMS-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 22px;
}

.abbITMS-heroStats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.abbITMS-stat {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    min-width: 150px;
}

.abbITMS-stat h3 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 900;
}

.abbITMS-stat p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

/* WRAP */
.abbITMS-wrap {
    padding: 95px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

/* INTRO */
.abbITMS-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
    align-items: end;
    margin-bottom: 45px;
}

.abbITMS-introLeft h2 {
    margin: 0 0 12px;
    font-size: 42px;
    font-weight: 900;
    color: #0b1f33;
}

.abbITMS-introLeft p {
    margin: 0;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.8;
    color: #4f6274;
}

/* BIG IMAGE */
.abbITMS-introImage {
    width: 100%;
    height: 230px;
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.abbITMS-introImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.abbITMS-introImage:hover img {
    transform: scale(1.05);
}

/* LINE CARD */
.abbITMS-lineCard {
    border-radius: 22px;
    padding: 22px 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.abbITMS-lineCard::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #7c3aed, #2563eb);
}

.abbITMS-lineCard h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 900;
    color: #0b1f33;
}

.abbITMS-lineCard p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: #5a6c7e;
}

/* GRID */
.abbITMS-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* CARD IMAGE */
.abbITMS-cardImg {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
}

.abbITMS-cardImg img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: 0.35s ease;
}

.abbITMS-card:hover .abbITMS-cardImg img {
    transform: scale(1.06);
}

/* CARD */
.abbITMS-card {
    border-radius: 22px;
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.abbITMS-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(124, 58, 237, 0.14), transparent 55%);
    opacity: 0;
    transition: 0.35s ease;
}

.abbITMS-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
}

.abbITMS-card:hover::after {
    opacity: 1;
}

.abbITMS-cardHead {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.abbITMS-no {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.12);
}

.abbITMS-card h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
    color: #0b1f33;
    line-height: 1.2;
}

.abbITMS-card ul {
    margin: 0;
    padding-left: 18px;
    position: relative;
    z-index: 2;
}

.abbITMS-card li {
    font-size: 13.5px;
    line-height: 1.7;
    color: #4a5d70;
    margin-bottom: 8px;
}

.abbITMS-card li b {
    color: #0b1f33;
}

/* ============================================= */
/* RESPONSIVE STYLES ONLY – In-Vehicles & ITMS Automation Page */
/* Mobile-first – looks good on mobile, tablet, laptop, PC */
/* ============================================= */

/* Mobile portrait & small phones (≤ 576px) */
@media (max-width: 576px) {
    .abbITMS-heroOverlay {
        background: linear-gradient(120deg, rgb(0 0 0 / 72%), rgb(0 0 0 / 82%));
    }

    .abbITMS-hero {
        height: 70vh;
        min-height: 730px;
    }

    .abbITMS-heroText {
        padding: 60px 6% 80px;
        justify-content: center;
        text-align: center;
    }

    .abbITMS-heroText h1 {
        font-size: 30px;
        line-height: 1.15;
    }

    .abbITMS-desc {
        font-size: 13px;
        max-width: 90%;
        margin: 0 auto 24px;
    }

    .abbITMS-pill {
        font-size: 11px;
        padding: 6px 12px;
    }

    .abbITMS-heroStats {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .abbITMS-stat {
        min-width: 140px;
        padding: 12px 14px;
    }

    .abbITMS-stat h3 {
        font-size: 18px;
    }

    .abbITMS-wrap {
        padding: 60px 6%;
    }

    .abbITMS-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .abbITMS-introLeft h2 {
        font-size: 2.2rem;
    }

    .abbITMS-introLeft p {
        font-size: 0.95rem;
    }

    .abbITMS-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .abbITMS-cardImg {
        height: 180px;
    }

    .abbITMS-card h3 {
        font-size: 1.1rem;
    }

    .abbITMS-card li {
        font-size: 0.9rem;
    }
}

/* Tablets & small laptops (577px – 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .abbITMS-hero {
        height: 80vh;
        min-height: 520px;
    }

    .abbITMS-heroText {
        padding: 70px 8% 100px;
        max-width: 800px;
    }

    .abbITMS-heroText h1 {
        font-size: 3.4rem;
    }

    .abbITMS-desc {
        font-size: 1.05rem;
    }

    .abbITMS-heroStats {
        gap: 16px;
    }

    .abbITMS-wrap {
        padding: 70px 8%;
    }

    .abbITMS-intro {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .abbITMS-introLeft h2 {
        font-size: 2.6rem;
    }

    .abbITMS-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .abbITMS-cardImg {
        height: 200px;
    }
}

/* Laptops & desktops (993px and up) */
@media (min-width: 993px) {

    .abbITMS-heroText {
        padding: 90px 8% 120px;
        max-width: 1100px;
    }

    .abbITMS-heroText h1 {
        font-size: 4.0rem;
        line-height: 1.1;
    }

    .abbITMS-wrap {
        padding: 95px 8%;
    }

    .abbITMS-intro {
        grid-template-columns: 1.2fr 1fr;
        text-align: left;
    }

    .abbITMS-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .abbITMS-wrap {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Very large screens (> 1400px) – optional cap */
@media (min-width: 1400px) {
    .abbITMS-heroText {
        max-width: 1200px;
    }

    .abbITMS-wrap {
        padding-left: 10%;
        padding-right: 10%;
    }
}