html body {
    overflow-x: hidden;
    background-color: #023047;
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: #000;
    /* padding-top: 95px; */
    /* FIX for fixed header */
}


/* ================= HEADER ================= */

.sochiot-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.web-navbar {
    height: 95px;
    padding: 0 40px;
    background: #020e20ab;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* On scroll */

.sochiot-header.scrolled {
    background: #000;
    /* black */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}


/* ================= LOGO ================= */

.logo-wrap img {
    width: 190px;
}


/* ================= DESKTOP MENU ================= */

.main-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-menu ul li {
    position: relative;
}

.main-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: color 0.3s ease;
}

.main-menu ul li a:hover {
    color: #06cfff;
}


/* ================= DROPDOWN ================= */

.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 14px;
    width: 270px;
    background: linear-gradient(180deg, #0b1224, #060b18);
    border-radius: 16px;
    padding: 18px 0;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    z-index: 10000;
}


/* SHOW DROPDOWN */

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
}


/* DROPDOWN ARROW */

.dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #0b1224;
}


/* FIX LIST STRUCTURE */

.dropdown ul {
    display: block !important;
}

.dropdown li {
    list-style: none;
    width: 100%;
    display: block;
}


/* LINK STYLE */

.dropdown li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 26px;
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #0b1224;
    transition: 0.3s ease;
    z-index: 9999;
    padding: 20px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-dropdown ul {
    display: none;
}

.mobile-dropdown.open ul {
    display: block;
}


/* ICON */

.dropdown li a img {
    width: 20px;
    height: auto;
}


/* HOVER */

.dropdown li a:hover {
    background: rgba(6, 207, 255, 0.12);
    color: #06cfff;
}


/* ================= HAMBURGER ================= */

.menu-toggle {
    display: none;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
}


/* ================= MOBILE NAV ================= */

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #050b18, #08162b);
    z-index: 99999;
    transition: right 0.35s ease;
}

.mobile-nav.active {
    right: 0;
}


/* Mobile header */

.mobile-header {
    height: 90px;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo img {
    width: 170px;
}

.close-menu {
    font-size: 34px;
    color: #ffffff;
    cursor: pointer;
}


/* Mobile menu list */

.mobile-menu {
    list-style: none;
    padding: 20px 30px;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a,
.mobile-dropdown span {
    display: block;
    padding: 16px 0;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}


/* Mobile dropdown */

.mobile-dropdown ul {
    list-style: none;
    padding-left: 15px;
    display: none;
}

.mobile-dropdown.active ul {
    display: block;
}

.mobile-dropdown ul li a {
    font-size: 15px;
    opacity: 0.85;
}

.iot-about-block {
    padding: 40px 20px;
    background: linear-gradient(135deg, #0c1b2a, #07111d);
    color: #ffffff;
}

.iot-about-grid {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}


/* LEFT SIDE */

.iot-about-left {
    flex: 1 1 520px;
}

.iot-about-title {
    font-size: 35px;
    font-weight: 700;
    font-family: popins;
    margin-bottom: 10px;
    color: #ffffff;
}

.iot-about-para {
    font-size: 16px;
    line-height: 1.8;
    color: #c7d4e2;
    margin-bottom: 18px;
}


/* BUTTONS */

.iot-about-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.iot-btn-solid {
    padding: 14px 30px;
    background: #00e0ff;
    color: #000;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.iot-btn-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 224, 255, 0.4);
}

.iot-btn-border {
    padding: 14px 30px;
    border: 1px solid #00e0ff;
    color: #00e0ff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.iot-btn-border:hover {
    background: #00e0ff;
    color: #000;
}


/* RIGHT IMAGE */

.iot-about-right {
    flex: 1 1 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.iot-about-right img {
    width: 100%;
    height: 350px;
    display: block;
}


/* RESPONSIVE */

@media (max-width: 992px) {
    .iot-about-grid {
        flex-direction: column;
        text-align: center;
    }
    .iot-about-actions {
        justify-content: center;
    }
    .iot-about-title {
        font-size: 32px;
    }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .main-menu {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}


/*** hero section **/

.sochiot-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}


/* Video */

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}


/* Dark Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(6, 11, 24, 0.75); */
    z-index: 2;
}


/* Content */

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 725px;
    padding: 0 40px;
    color: #fff;
}

.hero-top-text {
    margin-top: 50px;
    color: #06cfff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    font-family: bobin;
    margin-bottom: 24px;
}

.hero-btn {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid #06cfff;
    border-radius: 30px;
    color: #06cfff;
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #06cfff;
    color: #000;
}

.hero-desc h4 {
    margin-bottom: 8px;
}

.hero-desc p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    color: #fff;
}


/* Responsive */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content {
        padding: 0 20px;
    }
}


/** logo carosel **/

.logo-carousel {
    width: 100%;
    overflow: hidden;
    background: #023047;
    padding: 20px 0;
}


/* Tablet */

@media (max-width: 991px) {
    .logo-carousel {
        padding: 16px 0;
    }
}


/* Mobile */

@media (max-width: 767px) {
    .logo-carousel {
        padding: 14px 0;
    }
}

@media (max-width: 767px) {
    .logo-carousel img {
        max-height: 40px;
    }
}


/* Small Mobile */

@media (max-width: 480px) {
    .logo-carousel {
        padding: 12px 0;
    }
}

.logo-track {
    display: flex;
    gap: 40px;
    animation: scroll 40s linear infinite;
}

.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

.logo-track img {
    width: calc(100vw / 8 - 40px);
    max-width: 180px;
    object-fit: contain;
    height: 100px;
    /* filter: grayscale(100%); */
    /* opacity: 0.75; */
    /* transition: all 0.3s ease; */
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* Tablet */

@media (max-width: 991px) {
    .logo-track {
        gap: 30px;
        animation-duration: 30s;
    }
}


/* Mobile */

@media (max-width: 767px) {
    .logo-track {
        gap: 20px;
        animation-duration: 25s;
    }
}


/* Small Mobile */

@media (max-width: 480px) {
    .logo-track {
        gap: 16px;
        animation-duration: 20s;
    }
}


/* Tablet */

@media (max-width: 991px) {
    .logo-track img {
        width: 150px;
        height: 85px;
    }
}


/* Mobile */

@media (max-width: 767px) {
    .logo-track img {
        width: 120px;
        height: 70px;
    }
}


/* Small Mobile */

@media (max-width: 480px) {
    .logo-track img {
        width: 100px;
        height: 60px;
    }
}

🔥 .logo-track img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.sochiot-hero1 {
    background: #000;
    color: #fff;
    padding: 20px 20px;
}

.sochiot-hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.sochiot-hero-left {
    flex: 1;
}

.sochiot-hero-tagline {
    color: #44d1f3;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.sochiot-hero-title {
    font-size: 40px;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 600;
}

.sochiot-hero-right {
    flex: 1;
}

.sochiot-hero-text {
    font-size: 16px;
    line-height: 1.7;
    color: #cfcfcf;
    margin-bottom: 20px;
}

.sochiot-hero-btn {
    display: inline-block;
    padding: clamp(10px, 2vw, 14px) clamp(18px, 4vw, 28px);
    border: 1px solid #06cfff;
    border-radius: 30px;
    color: #06cfff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(14px, 2vw, 16px);
}

.sochiot-hero-btn:hover {
    background: #fff;
    color: #000;
}


/* Responsive */

@media (max-width: 900px) {
    .sochiot-hero-container {
        flex-direction: column;
        gap: 40px;
    }
    .sochiot-hero-title {
        font-size: 36px;
    }
}

.sochiot-features {
    background: #dee2e6;
    padding: 20px 20px;
}

.sochiot-features-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    padding: 20px;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sochiot-feature-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 420px;
    opacity: .9;
    /* lower default opacity */
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.sochiot-feature-card:hover {
    opacity: 1;
    /* full opacity on hover */
    transform: scale(1.04);
    /* subtle zoom */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.sochiot-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sochiot-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3));
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sochiot-feature-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.sochiot-feature-overlay p {
    font-size: 15px;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.sochiot-feature-btn {
    width: fit-content;
    padding: 10px 22px;
    border: 1px solid #44d1f3;
    border-radius: 25px;
    color: #44d1f3;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sochiot-feature-btn:hover {
    background: #fff;
    color: #000 !important;
}


/* Responsive */

@media (max-width: 900px) {
    .sochiot-features-container {
        grid-template-columns: 1fr;
    }
    .sochiot-feature-card {
        height: 380px;
    }
}

.offer-section {
    position: relative;
    padding: 50px 20px;
    background: url("img/bg1.png") center/cover no-repeat;
    text-align: center;
    color: #fff;
    background-attachment: fixed;
}

.offer-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 3 8 / 90%);
}

.offer-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.offer-title {
    font-family: bobin;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 25px;
}

.offer-subtitle {
    font-size: 30px;
    font-family: bobin;
    margin-bottom: 15px;
}


/* Typing Effect */

.typing-wrapper {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    height: 42px;
    margin-bottom: 25px;
    min-width: 320px;
    /* keeps layout stable */
}

.typing-text {
    display: inline;
    white-space: nowrap;
}

.cursor {
    display: inline;
    margin-left: 2px;
    animation: none;
}

@keyframes blink {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

.offer-desc {
    font-size: 16px;
    line-height: 1.7;
    max-width: 780px;
    margin: auto;
    color: #e6ecff;
}


/* Responsive */

@media (max-width: 768px) {
    .offer-title {
        font-size: 26px;
    }
    .offer-subtitle {
        font-size: 22px;
    }
    .typing-wrapper {
        font-size: 20px;
    }
}


/* home section */

.sochiot-automation-section {
    padding: 70px 20px 50px;
    font-family: "Segoe UI", sans-serif;
}

.sochiot-container {
    max-width: 1200px;
    margin: auto;
    margin-top: -40px;
}

.sochiot-title {
    text-align: center;
    color: #fff;
    font-family: bobin;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: clamp(8px, 2vw, 10px);
}

.sochiot-subtitle {
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
    font-size: 16px;
}

.sochiot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.sochiot-card {
    text-align: left;
}

.sochiot-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
}

.sochiot-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.sochiot-card p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}


/* ===== why sochiot ==== */

.why-sochiot {
    background: #dee2e6;
    padding: 30px 20px 50px;
    text-align: center;
}

.why-title {
    font-family: bobin;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}


/* Carousel */

.why-carousel {
    overflow: hidden;
    max-width: 1100px;
    margin: auto;
}

.why-track {
    display: flex;
    gap: 40px;
    animation: scroll 25s linear infinite;
}

.why-item {
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.why-item p {
    font-family: bobin;
    font-size: 18px;
    font-weight: 500;
}


/* Auto scroll animation */

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* Pause on hover */

.why-carousel:hover .why-track {
    animation-play-state: paused;
}


/* Mobile */

@media (max-width: 768px) {
    .why-track {
        animation-duration: 18s;
    }
}

.sochiot-testimonial {
    padding: 40px 20px 70px;
    background: #060b18;
    text-align: center;
}

.testimonial-title {
    font-size: 35px;
    font-family: popins;
    color: #ffffff;
    margin-bottom: 40px;
}

.testimonial-box {
    max-width: 700px;
    margin: auto;
    background: linear-gradient(180deg, #0b1224, #060b18);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(6, 207, 255, 0.3);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-box.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

.testimonial-box.fade-in {
    opacity: 1;
    transform: translateY(0);
}

#review-text {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
}


/* ===== Text-only animation (no box movement) ===== */

#review-text {
    display: inline-block;
}


/* exit animation */

.text-out {
    animation: textFadeOut 0.4s ease forwards;
}


/* entry animation */

.text-in {
    animation: textFadeIn 0.5s ease forwards;
}

@keyframes textFadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-12px);
    }
}

.reviewer {
    font-family: popins;
    margin-top: 20px;
    font-size: 20px;
    color: #06cfff;
}

.stars {
    display: block;
    font-size: 20px;
    /* margin-top: 6px; */
    color: #ffc107;
}


/*====== Contact page ======= */

.contact-section {
    /* margin-top: 90px; */
    height: 400px;
    background: linear-gradient(rgba(6, 11, 24, 0.6), rgba(6, 11, 24, 0.6)), url("img/bg2.png");
    /* change image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact h1 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
    font-family: popins;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sochiot-contact {
    background: #060b18;
    padding: 70px 20px 50px;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-left,
.contact-right {
    background: linear-gradient(180deg, #0b1224, #060b18);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(6, 207, 255, 0.3);
}

.contact-left h2,
.contact-right h2 {
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 20px;
}

.contact-left p,
.contact-right p {
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.contact-left strong {
    color: #06cfff;
}


/* Responsive */

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

.sochiot-map {
    background: #060b18;
    padding: 0px 20px 50px;
    text-align: center;
}

.map-title {
    color: #ffffff;
    font-size: 35px;
    text-decoration: underline;
    font-family: popins;
    margin-bottom: 30px;
}

.map-container {
    max-width: 1100px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(6, 207, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}


/* Responsive */

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}


/* ======== About us page =========== */

.about-section {
    height: 400px;
    background: linear-gradient(rgba(6, 11, 24, 0.6), rgba(6, 11, 24, 0.6)), url("img/bg3.png");
    /* change image path */
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us h1 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
    font-family: popins;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sochiot-about-content {
    background: radial-gradient(circle at top, #0b1224, #060b18);
    padding: 60px 20px 20px;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.about-top-title {
    color: #06cfff;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-main-title {
    font-size: 38px;
    font-family: popins;
    color: #ffffff;
    margin-bottom: 30px;
}

.about-text {
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-highlight {
    margin: 60px 0 40px;
    padding: 30px;
    border-radius: 18px;
    background: linear-gradient(180deg, #0b1224, #060b18);
    border: 1px solid rgba(6, 207, 255, 0.3);
}

.about-highlight h3 {
    color: #ffffff;
    font-size: 24px;
}

.about-text.muted {
    color: #b0b0b0;
    font-size: 15px;
}


/* Responsive */

@media (max-width: 768px) {
    .about-main-title {
        font-size: 30px;
    }
}

.sochiot-iot-about-section {
    padding: 40px 20px 50px;
    background: radial-gradient(circle at top, #0b1224, #060b18);
}

.sochiot-iot-about-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


/* Text Area */

.sochiot-iot-about-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    font-family: popins;
    margin-bottom: 28px;
}

.sochiot-iot-about-title::after {
    content: "";
    display: block;
    width: 65px;
    height: 3px;
    margin-top: 14px;
    background: linear-gradient(90deg, #06cfff, transparent);
}

.sochiot-iot-about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #cfd6e0;
    text-align: justify;
    margin-bottom: 22px;
}

.sochiot-iot-about-highlight {
    margin-top: 30px;
    padding-left: 18px;
    border-left: 4px solid #06cfff;
    font-size: 17px;
    color: #ffffff;
    font-weight: 600;
}


/* Image Area */

.sochiot-iot-about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}


/* Responsive */

@media (max-width: 900px) {
    .sochiot-iot-about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sochiot-iot-about-highlight {
        border-left: none;
        padding-left: 0;
    }
}

.sochiot-mission-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, #060b18, #050816);
    position: relative;
    overflow: hidden;
}


/* Soft tech glow */

.sochiot-mission-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 40%, rgba(6, 207, 255, 0.12), transparent 45%), radial-gradient(circle at 85% 60%, rgba(0, 153, 255, 0.08), transparent 50%);
    pointer-events: none;
}

.sochiot-mission-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}


/* IMAGE */

.sochiot-mission-image img {
    width: 100%;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(6, 207, 255, 0.2);
}


/* CONTENT */

.sochiot-mission-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    font-family: popins;
    margin-bottom: 26px;
}

.sochiot-mission-title::after {
    content: "";
    display: block;
    width: 65px;
    height: 3px;
    margin-top: 12px;
    background: linear-gradient(90deg, #06cfff, transparent);
}

.sochiot-mission-content p {
    font-size: 16px;
    line-height: 1.85;
    color: #c7d2e0;
    margin-bottom: 18px;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .sochiot-mission-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sochiot-mission-title::after {
        margin-left: auto;
        margin-right: auto;
    }
}

.sochiot-promise-section {
    padding: 40px 20px;
    background: linear-gradient(180deg, #050816, #060b18);
    position: relative;
    overflow: hidden;
}


/* subtle tech glow */

.sochiot-promise-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(6, 207, 255, 0.12), transparent 45%), radial-gradient(circle at 80% 50%, rgba(0, 153, 255, 0.08), transparent 50%);
    pointer-events: none;
}

.sochiot-promise-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* gap: 80px; */
    align-items: center;
    position: relative;
    z-index: 1;
}


/* CONTENT */

.sochiot-promise-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    font-family: popins;
    margin-bottom: 28px;
}

.sochiot-promise-title::after {
    content: "";
    display: block;
    width: 65px;
    height: 3px;
    margin-top: 14px;
    background: linear-gradient(90deg, #06cfff, transparent);
}

.sochiot-promise-text {
    font-size: 17px;
    line-height: 1.9;
    color: #c7d2e0;
    max-width: 520px;
}


/* IMAGE */

.sochiot-promise-image img {
    width: 550px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(6, 207, 255, 0.18);
    transition: transform 0.5s ease;
}

.sochiot-promise-image img:hover {
    transform: translateY(-6px) scale(1.02);
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .sochiot-promise-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sochiot-promise-text {
        margin: auto;
    }
    .sochiot-promise-title::after {
        margin-left: auto;
        margin-right: auto;
    }
}

.sochiot-team-section {
    padding: 40px 20px 70px;
    background: linear-gradient(180deg, rgba(5, 8, 22, 0.92), rgba(6, 11, 24, 0.95)), url("img/team-bg.jpg") center / cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* STORY TEXT */

.sochiot-team-story {
    max-width: 1100px;
    margin: auto auto 80px;
}

.sochiot-team-story p {
    font-size: 16px;
    line-height: 1.9;
    color: #c7d2e0;
    text-align: justify;
    margin-bottom: 18px;
}


/* TITLE */

.sochiot-team-title {
    margin-top: -61px;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.sochiot-team-title::after {
    content: "";
    display: block;
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, #06cfff, transparent);
    margin: 16px auto 0;
}


/* TEAM LAYOUT */

.sochiot-team-members {
    display: flex;
    justify-content: center;
    gap: 90px;
}


/* CARD */

.sochiot-team-card {
    text-align: center;
}


/* IMAGE */

.sochiot-team-card img {
    width: 216px;
    height: 266px;
    /* border-radius: 50%; */
    object-fit: cover;
    border: 4px solid rgba(6, 207, 255, 0.45);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(6, 207, 255, 0.25);
    transition: transform 0.4s ease;
}

.sochiot-team-card img:hover {
    transform: translateY(-6px) scale(1.05);
}


/* NAME */

.sochiot-team-card h4 {
    margin-top: 18px;
    font-size: 16px;
    color: #06cfff;
    font-weight: 600;
}


/* LINKEDIN ICON */

.sochiot-team-linkedin {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(6, 207, 255, 0.12);
    border: 1px solid rgba(6, 207, 255, 0.45);
    color: #06cfff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.sochiot-team-linkedin:hover {
    background: #06cfff;
    color: #050816;
    transform: translateY(-3px);
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .sochiot-team-members {
        flex-direction: column;
        gap: 50px;
    }
    .sochiot-team-card img {
        width: 170px;
        height: 170px;
    }
}


/* ======== blog page =========*/

.blog-section {
    position: relative;
    width: 100%;
    height: 60vh;
    /* adjust height as needed */
    background-image: url("img/bg4.png");
    /* change image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Optional dark overlay for better text visibility */

.blog-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.blog {
    position: relative;
    text-align: center;
    z-index: 2;
}

.blog h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}


/* Responsive */

@media (max-width: 768px) {
    .blog h1 {
        font-size: 32px;
    }
}


/* ======== event page ======= */

.event-section {
    position: relative;
    width: 100%;
    height: 400px;
    /* you can change height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("img/bg5.png") no-repeat center center/cover;
    overflow: hidden;
}


/* Dark Overlay */

.event-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    /* dark effect */
}


/* Content */

.event {
    position: relative;
    text-align: center;
    z-index: 2;
}

.event h1 {
    color: #ffffff;
    font-size: 45px;
    font-family: popins;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ===== SECTION ===== */

.custom-gallery-section {
    padding: 40px 8%;
    background: #060b18;
}


/* Title */

.custom-gallery-title {
    text-align: center;
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    font-family: popins;
    text-decoration: underline;
    margin-bottom: 40px;
}


/* ===== GRID STRUCTURE ===== */

.custom-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px 320px;
    /* bottom row bigger */
    gap: 20px;
}


/* Base */

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* ===== CUSTOM POSITIONS ===== */


/* Left small images */

.small-top {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.small-bottom {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}


/* Center big image */

.big-center {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
}


/* Right tall image */

.tall-right {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}


/* Bottom wide */

.wide-bottom {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}


/* Bottom medium */

.medium-bottom {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
}


/* ============================ */


/*        MAGAZINE SECTION      */


/* ============================ */

.sochiot-magazine-section {
    padding: 90px 8%;
    background: linear-gradient(180deg, #050b18, #0a1224);
    text-align: center;
}


/* Heading */

.sochiot-mag-title {
    font-size: 36px;
    color: #06cfff;
    margin-bottom: 60px;
    letter-spacing: 1px;
}


/* Grid */

.sochiot-mag-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


/* Card */

.sochiot-mag-card {
    background: #0b162c;
    padding: 15px;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.08);
}

.sochiot-mag-card img {
    width: 100%;
    height: 280px;
    /* object-fit: cover; */
    border-radius: 12px;
    transition: 0.4s ease;
}


/* Hover Effect */

.sochiot-mag-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0, 207, 255, 0.4);
}

.sochiot-mag-card:hover img {
    transform: scale(1.05);
}


/* Responsive */

@media (max-width: 1024px) {
    .sochiot-mag-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sochiot-mag-grid {
        grid-template-columns: 1fr;
    }
}


/* ======== Peoject peage ======== */

.project-section {
    position: relative;
    height: 400px;
    background: url("img/image5.jpg") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


/* Dark Overlay */

.project-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 25, 0.75);
    /* Dark blue overlay */
}


/* Content */

.project {
    position: relative;
    z-index: 2;
    text-align: center;
}

.project h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    /* Sochiot cyan */
    font-family: popins;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.7);
    margin: 0;
}


/* Responsive */

@media (max-width: 768px) {
    .project-section {
        height: 280px;
    }
    .project h1 {
        font-size: 32px;
    }
}


/** ======== Residential page ========== **/


/* =============================== */


/*    RESIDENTIAL IMAGE CARDS      */


/* =============================== */

.soch-residential-section {
    background: url(img/bg6.jpg)no-repeat center center/cover;
    padding: 100px 8%;
    text-align: center;
}

.soch-res-title {
    font-size: 45px;
    margin-top: 50px;
    color: #ffffff;
    font-family: popins;
    margin-bottom: 60px;
}


/* Grid Layout */

.soch-res-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}


/* Card */

.soch-res-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    height: 280px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 207, 255, 0.08);
    transition: 0.4s ease;
}

.soch-res-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}


/* Overlay */

.soch-res-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25px;
    transition: 0.4s ease;
}

.soch-res-overlay h3 {
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}


/* Hover Effects */

.soch-res-card:hover img {
    transform: scale(1.1);
}

.soch-res-card:hover {
    box-shadow: 0 0 30px rgba(0, 207, 255, 0.5);
}

.soch-res-card:hover .soch-res-overlay h3 {
    color: #06cfff;
}


/* Responsive */

@media (max-width: 992px) {
    .soch-res-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .soch-res-grid {
        grid-template-columns: 1fr;
    }
}


/* ======= Smart hotel =======*/


/* =============================== */


/*        SMART HOTELS SECTION     */


/* =============================== */

.hotel-section {
    position: relative;
    height: 420px;
    background: url("img/H1.jpg") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


/* Dark Overlay */

.hotel-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient( 180deg, rgba(0, 10, 25, 0.85), rgba(0, 20, 40, 0.85)); */
}


/* Center Content */

.hotrls {
    position: relative;
    z-index: 2;
    text-align: center;
}


/* Heading Style */

.hotrls h1 {
    font-size: 45px;
    font-weight: 700;
    color: #ffffff;
    font-family: popins;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 25px rgba(0, 234, 255, 0.7);
    margin: 0;
}


/* Responsive */

@media (max-width: 768px) {
    .hotel-section {
        height: 300px;
    }
    .hotrls h1 {
        font-size: 32px;
    }
}


/** ==== retrofit ====*/

.retrofit-section {
    position: relative;
    width: 100%;
    height: 60vh;
    /* Adjust height if needed */
    background: url("img/bg8.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}


/* Dark overlay */

.retrofit-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}


/* Text container */

.retrofit {
    position: relative;
    z-index: 2;
}


/* Heading style */

.retrofit h1 {
    color: #ffffff;
    text-transform: uppercase;
    font-family: popins;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* ===== SX RETROFIT SECTION ===== */

.sx-retrofit-zone {
    padding: 40px 70px 1px;
    background: linear-gradient(135deg, #0b1224, #060b18);
    color: #ffffff;
}

.sx-retrofit-wrapper {
    width: 1300px;
    max-width: 100%;
}


/* Heading */

.sx-retrofit-heading {
    font-size: 35px;
    font-weight: 700;
    font-family: popins;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ffffff, #06cfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Description */

.sx-retrofit-description {
    font-size: 18px;
    line-height: 1.5;
    color: #cbd5e1;
    text-align: justify;
    margin-bottom: 20px;
    max-width: 1200px;
}


/* Responsive */

@media (max-width: 768px) {
    .sx-retrofit-heading {
        font-size: 36px;
    }
    .sx-retrofit-description {
        font-size: 16px;
        line-height: 1.7;
    }
    .sx-retrofit-zone {
        padding: 70px 6%;
    }
}


/* ===== PRODUCT SECTION ===== */

.sx-product-showcase {
    padding: 40px;
    background: linear-gradient(135deg, #0b1224, #060b18);
}

.sx-product-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Card */

.sx-product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    width: 480px;
    transition: 0.4s ease;
    border: 1px solid rgba(6, 207, 255, 0.15);
}

.sx-product-card:hover {
    transform: translateY(-10px);
    border: 1px solid #06cfff;
    box-shadow: 0 15px 40px rgba(6, 207, 255, 0.25);
}


/* Image */

.sx-product-image img {
    width: 100%;
    display: block;
}


/* Content */

.sx-product-content {
    padding: 20px;
    text-align: center;
}

.sx-product-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 1px;
}

.sx-product-content p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
}


/* Button */

.sx-product-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: #06cfff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.sx-product-btn:hover {
    background: #ffffff;
    color: #000 !important;
}


/* Responsive */

@media (max-width: 768px) {
    .sx-product-container {
        flex-direction: column;
        align-items: center;
    }
    .sx-product-card {
        width: 100%;
    }
}


/* ===== CONTROL SECTION ===== */

.sx-control-section {
    padding: 20px;
    background: linear-gradient(135deg, #0b1224, #060b18);
    color: #ffffff;
    text-align: center;
}


/* Section Heading */

.sx-section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    font-family: popins;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.sx-underline {
    width: 430px;
    height: 3px;
    background: #ffffff;
    margin: 0 auto 40px;
}

.sx-underline1 {
    width: 150px;
    height: 3px;
    background: #ffffff;
    margin: 0 auto 20px;
}


/* Appliance Grid */

.sx-appliance-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.sx-appliance-item {
    text-align: center;
    transition: 0.3s ease;
}

.sx-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #06cfff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.sx-icon-circle i {
    font-size: 28px;
    color: #06cfff;
}

.sx-appliance-item:hover .sx-icon-circle {
    background: #06cfff;
}

.sx-appliance-item:hover i {
    color: #000;
}

.sx-appliance-item p {
    font-size: 15px;
    color: #cbd5e1;
}


/* Feature Grid */

.sx-feature-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    text-align: left;
    flex-wrap: wrap;
}

.sx-feature-grid ul {
    list-style: none;
    padding: 0;
    max-width: 500px;
}

.sx-feature-grid li {
    margin-bottom: 2px;
    position: relative;
    padding-left: 30px;
    color: #cbd5e1;
    line-height: 1.7;
}

.sx-feature-grid li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #06cfff;
    font-weight: bold;
}


/* Responsive */

@media (max-width: 768px) {
    .sx-appliance-grid {
        gap: 25px;
    }
    .sx-feature-grid {
        flex-direction: column;
        align-items: center;
    }
    .sx-feature-grid ul {
        text-align: left;
    }
}


/* ===== DEVICE SHOWCASE SECTION ===== */

.zx-device-showcase {
    padding: 40px;
    background: linear-gradient(135deg, #0c1428, #070c18);
}

.zx-device-wrapper {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Card */

.zx-device-card {
    width: 500px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(6, 207, 255, 0.1);
}

.zx-device-card:hover {
    transform: translateY(-12px);
    border-color: #06cfff;
    box-shadow: 0 20px 50px rgba(6, 207, 255, 0.2);
}


/* Image */

.zx-device-image img {
    width: 100%;
    height: 300px;
    display: block;
}


/* Content */

.zx-device-content {
    padding: 20px;
    text-align: center;
}

.zx-device-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.zx-device-content p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 15px;
}


/* Responsive */

@media (max-width: 768px) {
    .zx-device-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .zx-device-card {
        width: 100%;
    }
}


/* ===== CONTROL SECTION ===== */

.qx-control-area {
    padding: 10px 40px;
    background: linear-gradient(135deg, #0c1428, #070c18);
    text-align: center;
    color: #ffffff;
}


/* Title */

.qx-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.qx-main-title1 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
}

.qx-title-line {
    width: 400px;
    height: 3px;
    background: #06cfff;
    margin: 0 auto 15px;
}


/* Icon Row */

.qx-icon-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.qx-icon-box {
    text-align: center;
    transition: 0.3s ease;
}

.qx-icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.qx-icon-circle i {
    font-size: 28px;
    color: #facc15;
}


/* Hover */

.qx-icon-box:hover .qx-icon-circle {
    border-color: #06cfff;
    transform: scale(1.1);
}

.qx-icon-box p {
    font-size: 15px;
    color: #cbd5e1;
}


/* Features */

.qx-feature-list ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.qx-feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 6px;
    color: #cbd5e1;
    line-height: 1.7;
}

.qx-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #06cfff;
    font-weight: bold;
    font-size: 18px;
}


/* Responsive */

@media (max-width: 768px) {
    .qx-icon-row {
        gap: 25px;
    }
    .qx-main-title {
        font-size: 24px;
    }
    .qx-feature-list ul {
        padding: 0 10px;
    }
}


/* ===== FEATURES SECTION ===== */

.rx-feature-section {
    padding: 20px 40px;
    background: linear-gradient(135deg, #0c1428, #070c18);
    color: #ffffff;
}

.rx-feature-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


/* Title */

.rx-feature-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.rx-feature-line {
    width: 70px;
    height: 3px;
    background: #06cfff;
    margin: 0 auto 40px;
}


/* Feature List */

.rx-feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.rx-feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.7;
}


/* Check Icon */

.rx-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #06cfff;
    font-size: 18px;
}


/* Hover effect */

.rx-feature-list li:hover {
    color: #ffffff;
    transition: 0.3s ease;
}


/* Responsive */

@media (max-width: 768px) {
    .rx-feature-title {
        font-size: 22px;
    }
    .rx-feature-list li {
        font-size: 15px;
    }
}


/* ===== WHY RETROFIT SECTION ===== */

.ss-why-retrofit {
    padding: 40px 8%;
    background: linear-gradient(135deg, #0b1224, #060b18);
    color: #ffffff;
}


/* Heading */

.ss-why-heading {
    text-align: center;
    margin-bottom: 30px;
}

.ss-why-heading h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ss-why-line {
    width: 180px;
    height: 3px;
    background: #ffffff;
    margin: 0 auto;
}


/* Grid */

.ss-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 40px;
}


/* Item */

.ss-why-item {
    text-align: center;
    transition: 0.4s ease;
}

.ss-why-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 2px solid #06cfff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.4s ease;
}

.ss-why-icon i {
    font-size: 28px;
    color: #06cfff;
}


/* Hover Effect */

.ss-why-item:hover .ss-why-icon {
    background: #06cfff;
    box-shadow: 0 0 25px rgba(6, 207, 255, 0.6);
}

.ss-why-item:hover .ss-why-icon i {
    color: #000;
}

.ss-why-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #06cfff;
}

.ss-why-item p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
}


/* Responsive */

@media (max-width: 992px) {
    .ss-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ss-why-grid {
        grid-template-columns: 1fr;
    }
}

.proactive-maintenance {
    padding: 40px 20px 10px;
    text-align: center;
    background: linear-gradient(135deg, #0b1224, #060b18);
}

.proactive-maintenance h2 {
    font-size: 32px;
    color: #ffffff;
    font-family: popins;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.proactive-maintenance h2::after {
    content: "";
    width: 320px;
    height: 3px;
    background: #ffffff;
    display: block;
    margin: 12px auto 0;
}

.maintenance-image {
    margin: 40px 0;
}

.maintenance-image img {
    max-width: 420px;
    width: 100%;
    height: 320px;
}

.maintenance-text {
    max-width: 1150px;
    margin: auto;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
}


/* Responsive */

@media (max-width: 768px) {
    .proactive-maintenance h2 {
        font-size: 26px;
    }
    .maintenance-text {
        font-size: 15px;
        padding: 0 10px;
    }
}

.product-description {
    padding: 0px 20px 10px;
    background: linear-gradient(135deg, #0b1224, #060b18);
    text-align: center;
}

.product-description h2 {
    font-size: 35px;
    color: #ffffff;
    font-weight: 600;
    padding-top: 20px;
    font-family: popins;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 1px;
}

.product-description h2::after {
    content: "";
    width: 140px;
    height: 3px;
    background: #ffffff;
    display: block;
    margin: 10px auto 0;
}

.desc-text {
    max-width: 1000px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
}

.desc-points {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
}

.desc-points ul {
    list-style: none;
    padding: 0;
}

.desc-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #ffffff;
}

.desc-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}


/* Responsive */

@media (max-width: 768px) {
    .desc-points {
        grid-template-columns: 1fr;
    }
    .desc-text {
        font-size: 15px;
    }
}

.jarwis-section {
    padding: 70px 20px 10px;
    text-align: center;
    background: linear-gradient(135deg, #0b1224, #060b18);
}

.jarwis-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
}

.jarwis-section h2::after {
    content: "";
    width: 220px;
    height: 3px;
    background: #ffffff;
    display: block;
    margin: 12px auto 0;
}

.jarwis-text {
    max-width: 1100px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
}

.product-card {
    text-align: center;
}

.product-card img {
    max-width: 260px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}


/* Responsive */

@media (max-width: 992px) {
    .jarwis-products {
        gap: 60px;
    }
}

@media (max-width: 576px) {
    .jarwis-section h2 {
        font-size: 26px;
    }
    .jarwis-text {
        font-size: 15px;
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 100px 30px;
    text-align: center;
    background: linear-gradient(135deg, #0b1224, #060b18);
}

.feature-box {
    padding: 10px;
}

.feature-box .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border: 2px solid #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #007bff;
}


/* Hover Effect */

.feature-box:hover .icon {
    background: #007bff;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
    transform: scale(1.1);
}

.feature-box h3 {
    color: #007bff;
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #fff;
    text-align: justify;
    line-height: 1.6;
}


/* Responsive */

@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features {
        grid-template-columns: 1fr;
    }
}


/*======== Mobile app ========*/

.mobile-section {
    position: relative;
    width: 100%;
    height: 400px;
    /* You can change height */
    background: url("img/D7.jpg") top center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* Dark overlay for Sochiot theme */

.mobile-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.342);
}


/* Content */

.mobile_app {
    position: relative;
    z-index: 2;
}

.mobile_app h1 {
    font-size: 45px;
    font-weight: 700;
    margin-top: 100px;
    text-transform: uppercase;
    font-family: popins;
    color: #ffffff;
    letter-spacing: 2px;
}


/* Responsive */

@media (max-width: 768px) {
    .mobile-section {
        height: 300px;
    }
    .mobile_app h1 {
        font-size: 32px;
    }
}


/* Section Background */

.sochiot-mobile-section {
    background: linear-gradient(135deg, #0b1224, #060b18);
    padding: 40px 20px;
    text-align: left;
    color: #ffffff;
}


/* Container */

.sochiot-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* Heading */

.sochiot-mobile-section h1 {
    font-size: 45px;
    font-weight: 600;
    font-family: popins;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: 1px;
}


/* Description */

.sochiot-mobile-section p {
    font-size: 18px;
    color: #cfd8dc;
    max-width: 1200px;
    text-align: left;
    /* margin: 0 auto 60px; */
    line-height: 1.8;
}


/* Image Center */

.sochiot-mobile-image {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.sochiot-mobile-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 207, 255, 0.15);
    transition: transform 0.4s ease;
}


/* Hover Effect */

.sochiot-mobile-image img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .sochiot-mobile-section h1 {
        font-size: 32px;
    }
    .sochiot-mobile-section p {
        font-size: 16px;
    }
    .sochiot-mobile-image img {
        max-width: 100%;
    }
}


/* Text Below Image */

.action-info {
    margin-top: 10px;
    text-align: center;
}

.action-info h2 {
    font-size: 30px;
    color: #ffffff;
    font-family: popins;
    margin-bottom: 15px;
    font-weight: 600;
}

.action-info p {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    color: #cfd8dc;
    line-height: 1.8;
}


/* Section Background */

.sochiot-power-section {
    background: linear-gradient(135deg, #0b1224, #060b18);
    padding: 40px 70px;
    color: #ffffff;
}


/* Flex Container */

.sochiot-power-container {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    gap: 60px;
    margin: 20px 0;
}

.power-phone {
    text-align: center;
}


/* Left Image */

.power-left {
    flex: 1;
}

.power-left img {
    width: 100%;
    height: 425px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 207, 255, 0.15);
}


/* Right Content */

.power-right {
    flex: 1;
}

.power-right h2 {
    text-align: center;
    font-size: 35px;
    font-family: popins;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
}

.power-right p {
    text-align: center;
    font-size: 18px;
    color: #cfd8dc;
    line-height: 1.7;
    margin-bottom: 20px;
}


/* Phone Image */

.power-phone img {
    width: 280px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 207, 255, 0.2);
    transition: transform 0.4s ease;
}

.power-phone img:hover {
    transform: translateY(-8px);
}


/*======== Smart-Touch ==========*/

.touch-section {
    position: relative;
    width: 100%;
    height: 400px;
    background: url("img/T1.jpeg") top center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* Dark overlay */

.touch-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.342);
}


/* Content */

.smart_touch {
    position: relative;
    z-index: 2;
}

.smart_touch h1 {
    font-size: 45px;
    font-weight: 700;
    margin-top: 80px;
    text-transform: uppercase;
    font-family: poppins;
    color: #ffffff;
    letter-spacing: 2px;
}

.touch-section1 {
    background: linear-gradient(135deg, #0b1224, #060b18);
    padding: 40px 70px;
    font-family: Arial, Helvetica, sans-serif;
}

.touch-container1 {
    width: 100%;
    margin: auto;
}

.touch-title {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    font-family: popins;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.touch-text {
    font-size: 18px;
    line-height: 1.8;
    color: #e5e5e5;
    max-width: 1200px;
}

.sochiot-touch-wrapper {
    padding: 40px 20px;
    background: linear-gradient(135deg, #0b1224, #060b18);
}

.sochiot-touch-row {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.sochiot-touch-box {
    flex: 1 1 480px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    padding-bottom: 25px;
    transition: all 0.3s ease;
}


/* Tablet */

@media (max-width: 1024px) {
    .sochiot-touch-box {
        flex: 1 1 90%;
        max-width: 85%;
    }
}


/* Mobile */

@media (max-width: 768px) {
    .sochiot-touch-box {
        flex: 1 1 90%;
        padding-bottom: 20px;
        border-radius: 14px;
    }
}


/* Small Mobile */

@media (max-width: 480px) {
    .sochiot-touch-box {
        padding: 15px;
        border-radius: 12px;
    }
}

.sochiot-touch-box:hover {
    transform: translateY(-10px);
    border: 1px solid #06cfff;
    box-shadow: 0 15px 40px rgba(6, 207, 255, 0.25);
}

.sochiot-touch-box img {
    width: 100%;
    border-radius: 24px;
    padding: 20px;
    height: 280px;
    object-fit: unset;
}

.sochiot-touch-title {
    font-size: 20px;
    font-family: popins;
    text-transform: uppercase;
    margin: 0px 0 10px;
    font-weight: 600;
    color: #ffffff;
}

.sochiot-touch-desc {
    font-size: 15px;
    color: #ffffff;
    padding: 0 25px;
    line-height: 1.6;
}


/* Responsive */

@media (max-width: 768px) {
    .sochiot-touch-row {
        flex-direction: column;
        gap: 30px;
    }
    .sochiot-touch-box img {
        height: 250px;
    }
}