@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-VariableFont_wght.ttf') format('truetype');
    font-weight: 400 900;
    font-style: normal;
}

:root {
    --primary-blue: #0A192F;
    --secondary-blue: #172A45;
    --metallic: #8892B0;
    --white: #E6F1FF;
    --accent: #64FFDA;
    --font-heading: 'Metropolis', sans-serif;
    --font-body: 'MyriadPro', sans-serif;
    --font-accent: 'Oswald', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== MENU ==================== */

.menu-section {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 160px;
    flex-wrap: wrap;
    width: 100%;
    z-index: 12;
    /* background: rgba(10, 25, 47, 0.35); */
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.menu-section a {
    padding: 60px 15px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--white);
    transition: opacity 0.3s ease;
}

.menu-section a:hover {
    opacity: 0.75;
}

.menu-section.scrolled {
    background: var(--secondary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding-right: 160px;
    /* justify-content: space-between; */
}

.menu-section.scrolled a {
    padding: 25px 25px;
}

.divider {
    color: var(--white);
    font-weight: 300;
    font-size: 9px;
    opacity: 0.5;
}

.logo-scroll {
    width: 120px;
    height: auto;
    display: none;
    position: absolute;
    left: 30px;
    top: 10px;
}

.logo-scroll.visible {
    display: block;
}

.whatsapp-scroll {
    width: 30px;
    height: auto;
    display: none;
    position: absolute;
    right: 30px;
    top: 15px;
}

.whatsapp-scroll.visible {
    display: block;
}

/* ==================== LOGO (unused header) ==================== */

/* .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo svg {
    width: 65px;
    height: 65px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
    font-family: var(--font-body);
    font-size: 2.2rem;
    color: #000;
    font-weight: 400;
} */

/* ==================== HERO SECTION ==================== */

.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    background: url('../images/Image-Bluestorm-Main-Photo.jpg') no-repeat center center/cover;
}

.header-logo {
    position: absolute;
    left: 30px;
    top: 25px;
    width: 180px;
    z-index: 1;
}

.header-connect {
    position: absolute;
    right: 30px;
    top: 60px;
    width: 80px;
    z-index: 11;
    text-decoration: none;
}

.header-connect .description {
    font-size: 10px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.2px;
    text-align: center;
    position: absolute;
    bottom: 37px;
    left: 2px;
    color: #FFF;
}

.header-logo img {
    width: 100%;
}

.header-content {
    position: absolute;
    left: 100px;
    top: 180px;
    color: var(--primary-blue);
}

.header-content .header-text {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.2px;
    text-align: center;
    margin-bottom: 10px;
}

.header-content .sub-text {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1.2px;
    text-align: center;
}

.temperature-structure .title-bar {
    width: 100%;
    padding: 20px 100px;
    background-color: #0A192F85;
    text-align: center;
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.temperature-structure .title-bar .title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.3px;
    text-align: center;
    margin-bottom: 10px;
}

.temperature-structure .title-bar .description {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.2px;
    text-align: center;
}

/* ==================== WHY BLUESTORM ==================== */

.why-bluestorm {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.why-bluestorm .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 101%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.why-bluestorm .title-bar {
    width: 100%;
    padding: 25px 100px;
    background-color: #0A192F85;
    text-align: center;
    position: relative;
    z-index: 1;
}

.why-bluestorm .title-bar .title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.3px;
    text-align: center;
    margin-bottom: 10px;
}

.why-bluestorm .title-bar .description {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.2px;
    text-align: center;
}

/* ==================== MULTIPLE IMAGES ==================== */

.multiple-images {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.multiple-images .single-col {
    width: 50%;
    position: relative;
    display: flex;
}

.multiple-images .single-col .content-sec {
    width: 70%;
    left: 30%;
    position: absolute;
    top: 20px;
    padding-right: 30px;
}

.multiple-images .single-col .content-sec .title {
    font-size: 20px;
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
}

.multiple-images .single-col .content-sec .sub-title {
    font-size: 14px;
    font-family: var(--font-heading);
    color: #006688;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
}

.multiple-images .single-col .content-sec .description {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-heading);
    color: #006688;
    line-height: 1.1;
    letter-spacing: 1.2;
}

.multiple-images .single-col .pool-names {
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-46%);
}

.multiple-images .single-col .pool-names .name {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--primary-blue);
    line-height: 1.1;
    letter-spacing: 1.2;
}

.multiple-images .single-col .features {
    width: 45%;
    right: 30px;
    position: absolute;
    bottom: 30px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.multiple-images .single-col .features-right-panel {
    position: relative !important;
    width: 100% !important;
    /* gap: 0; */
    margin: 0 auto;
    bottom: unset;
    right: unset;
    margin-top: 10px;
}

.multiple-images .single-col .features-right-panel .single-feature img {
    width: 30px !important;
}

.multiple-images .single-col .features-right-panel .text {
    color: #FFF;
    font-size: 9px;
}

.multiple-images .single-col .features .single-feature {
    flex: 1;
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--primary-blue);
    line-height: 1.1;
    letter-spacing: 1.2;
    display: flex;
    flex-direction: column;
}

.multiple-images .single-col .features .single-feature img {
    margin: 0 auto;
    width: 60px;
    margin-bottom: 8px;
}

.save-energy {
    max-width: 40%;
    height: auto;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background-color: #000000d6;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.save-energy .single-feature img {
    margin: 0 auto;
    width: 60px;
    margin-bottom: 8px;
}

.save-energy .title {
    font-size: 20px;
    text-align: center;
    color: #157bc5;
    font-weight: 500;
    font-family: var(--font-heading);
    line-height: 1.0;
    letter-spacing: 1.0px;
}

.save-energy .title span {
    color: #96bdd2;
    font-size: 22px;
}

.save-energy .flash-img {
    width: 100%;
    margin: 7px 0;
}

.save-energy .btn-label {
    width: 100%;
    height: auto;
    background-color: #46a8df;
    padding: 8px;
    font-size: 10px;
    font-weight: 500;
    font-family: var(--font-heading);
    line-height: 1.2;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 15px;

}

.save-energy .mini-description {
    font-size: 10px;
    font-weight: 400;
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: .7px;
    text-align: left;
    padding: 10px;
}

.tech-pill {
    padding: 8px 10px;
    font-size: 11px;
    color: #eaf6ff;
    font-family: var(--font-heading);
    text-align: center;
    border-radius: 80px;
    background: linear-gradient(180deg, #2f86c1 0%, #1f6fa8 50%, #185d92 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 2px 6px rgba(255, 255, 255, 0.2); */
    backdrop-filter: blur(2px);
    margin-bottom: 5px;
}

.multiple-images .single-col img {
    width: 100%;
    height: auto;
    display: block;
}

.multiple-images .perform-content {
    background-color: #3d98cd;
    padding: 30px 100px;
    font-size: 38px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.2px;
    text-align: center;
    width: 100%;
}

/* ==================== CORE TECH ==================== */

.core-tech {
    padding: 60px 100px;
    text-align: center;
}

.core-tech .title {
    font-size: 22px;
    font-family: var(--font-heading);
    letter-spacing: 1.2px;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 400;
}

.core-tech .container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.core-tech .image-box {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.core-tech .image-box img {
    width: 100%;
    height: auto;
}

.core-tech .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    height: 100%;
}

.core-tech .features-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    height: 100%;
}

.core-tech .card {
    border: 1px solid #999;
    border-radius: 8px;
    padding: 8px;
    font-size: 13px;
    color: var(--primary-blue);
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* --- Feature Cards Section --- */

.core-tech .features-section {
    margin-top: 80px;
}

.core-tech .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.core-tech .feature-card {
    position: relative;
    background: #fff;
    border: 2px solid #3b8ea5;
    border-radius: 15px;
    padding: 20px 0px 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.core-tech .badge {
    position: absolute;
    top: -20px;
    left: 0px;
    background: #0e6b80;
    color: #fff;
    padding: 10px 20px 10px 50px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.core-tech .icon {
    position: absolute;
    left: -30px;
    top: -13px;
    width: 60px;
    height: 60px;
    background: #46a8df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-tech .icon img {
    width: 30px !important;
    height: auto;
}

.core-tech .feature-card .description {
    font-size: 13px;
    color: var(--primary-blue);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .4px;
    padding: 15px;
    text-align: left;
}

.core-tech .feature-card img {
    width: 100%;
    border-radius: 0 0 15px 15px;
    display: block;
}

/* ==================== TEMPERATURE ==================== */

.temperature-structure {
    width: 100%;
    /* height: 100vh; */
    display: flex;
    position: relative;
    /* background-position: bottom !important;
    background-repeat: no-repeat !important;
    background-size: cover !important; */
    /* background: url('../images/Image-DesertPool.jpeg') no-repeat center center/cover; */
    /* background: url('../images/new-hero.svg') no-repeat center center/cover; */
}

.temperature-structure .temp {
    z-index: 1;
    position: absolute;
    right: 10%;
    font-size: 120px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #0A192F40;
}

.temperature-structure .temp-hot {
    top: 25%;
}

.temperature-structure .temp-cool {
    top: 55%;
}

.temperature-structure .temp-description {
    z-index: 1;
    position: absolute;
    width: 50%;
    right: 0;
    bottom: 150px;
    font-size: 26px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.2px;
    text-align: center;
}

/* ==================== OPERATION DESCRIPTION ==================== */

.operation-description {
    width: 100%;
    padding: 25px 100px;
    background-color: #FFF;
    text-align: center;
    font-size: 14px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 1.2px;
    color: var(--primary-blue);
}

.smart-control-description {
    background-color: #48392a;
    color: var(--white);
}

/* ==================== SMART CONTROL ==================== */

.smart-control {
    width: 100%;
    height: auto;
    /* padding: 60px 0 120px; */
    display: flex;
    /* flex-direction: column;
    align-items: center;
    justify-content: space-between; */
    position: relative;
    /* background: url('../images/smart-pool-control-02.jpg') no-repeat center center/cover; */
}

.smart-control img {
    width: 100%;
}

.smart-control .title-bar {
    padding: 0 100px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
}

.smart-control .title-bar .title {
    font-size: 32px;
    font-family: var(--font-heading);
    letter-spacing: 1.2px;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

.smart-control .title-bar .description {
    text-align: center;
    font-size: 14px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.2px;
    color: var(--primary-blue);
}


.smart-control .smart-control-content {
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 32%;
    left: 50%;
    transform: translate(-50%, 0);
    /* margin-top: 240px; */
}

.smart-control .phone-inhand {
    position: absolute;
    left: 30px;
    bottom: 0;
    width: 20%;
    display: flex;
}

.smart-control .phone-inhand img {
    width: 100%;
}

/* ==================== SMART SOLUTION ==================== */

.smart-solution {
    width: 100%;
    padding: 60px 100px;
}

.smart-solution .smart-solution-title {
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.smart-solution .smart-solution-content {
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 1.2px;
    color: var(--primary-blue);
}

.smart-solution .product-list {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
    gap: 10px 0;
}

.smart-solution .product-list .single-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.smart-solution .product-list .single-item:nth-child(1) {
    width: 14%;
}

.smart-solution .product-list .single-item:nth-child(2) {
    width: 15%;
}

.smart-solution .product-list .single-item:nth-child(3) {
    width: 16%;
}

.smart-solution .product-list .single-item:nth-child(4) {
    width: 19.5%;
}

.smart-solution .product-list .single-item:nth-child(5) {
    width: 28%;
}

/* .smart-solution .product-list .single-item:nth-child(6) {
    width: 26%;
} */

.smart-solution .product-list .single-item img {
    width: 85%;
}

.smart-solution .product-list .single-item .product-name {
    position: absolute;
    bottom: 6px;
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.2px;
    color: var(--primary-blue);
    text-align: center;
}

/* ==================== CONTACT US ==================== */

.contact-us {
    padding: 60px 100px;
    background-color: #f5e7d0;
    color: var(--primary-blue);
}

.contact-us .wrap {
    display: flex;
    gap: 30px;
}

.contact-us .single-col {
    width: 33.33%;
}

.contact-us .single-col .footer-logo {
    /* margin: 20px auto; */
    width: 70%;
    display: block;
}

.contact-us .single-col .mini-title {
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.2px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.contact-us .single-col .sub-title {
    font-size: 24px;
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1.3px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.contact-us .mini-description {
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: .9;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-align: justify;
}

.contact-us .single-col .form-group {
    width: 100%;
    margin-bottom: 4px;
    display: flex;
    flex-direction: column;
}

.contact-us .single-col .form-group label {
    margin-bottom: 0px !important;
    letter-spacing: .2px;
}

.contact-us .single-col .form-group input,
.contact-us .single-col .form-group textarea {
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 1px;
    color: var(--primary-blue);
    padding: 6px 8px;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
    width: 100%;
    background: #fff;
}

.contact-us .single-col .form-group input:focus,
.contact-us .single-col .form-group textarea:focus {
    border-color: var(--primary-blue);
}

.contact-us .single-col .view-download-btn {
    width: 100%;
    background-color: var(--primary-blue);
    color: var(--metallic);
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .4px;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 10px;
}

.contact-us .single-col .submit-btn {
    width: max-content;
    background-color: var(--primary-blue);
    color: var(--metallic);
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .4px;
    text-align: center;
    padding: 5px 30px 5px 10px;
    cursor: pointer;
    position: relative;
    margin-bottom: 10px;
    border: 0px;
    outline: 0px;
}

.contact-us .single-col .submit-btn:hover {
    opacity: 0.85;
}

.contact-us .single-col .submit-btn::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border: 1px solid var(--metallic);
    z-index: 1;
    right: 10px;
    top: 11px;
    transform: rotate(45deg);
    transform-origin: top right;
    border-left: 0px;
    border-bottom: 0px;
}

.contact-us .whatsapp-footer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    /* gap: 30px; */
}

.contact-us .whatsapp-footer .whatsapp-content {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-blue);
    width: 100%;
    margin-left: calc(33.333% + 10px);
}

.contact-us .whatsapp-footer .whatsapp-icon {
    width: 20px;
    height: 20px;
    object-fit: cover;
    margin-right: 5px;
    flex-shrink: 0;
}

.contact-us .whatsapp-footer .whatsapp-text {
    margin-bottom: 0px;
}

.bottom-footer {
    background-color: #000000;
    padding: 20px;
    text-align: center;
    font-size: 9px;
    font-weight: 400;
    color: var(--white);
    font-family: var(--font-heading);
}

.bottom-footer a {
    text-decoration: none;
    color: var(--white);
}

.d-lfex-footer-description {
    display: flex;
    /* justify-content: space-between; */
}

.d-lfex-footer-description a {
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid var(--primary-blue);
    border-radius: 18px;
    line-height: 0;
    margin: 0;
    height: 40px;
    display: flex;
    align-items: center;
    margin-left: 20px;
    width: 180px;
    color: var(--primary-blue);
}

.d-lfex-footer-description img {
    width: 24px;
    height: auto;
    margin-right: 10px;
}

/* ================================================================
   RESPONSIVE — ordered from largest to smallest
   ================================================================ */

/* --- Tablet (max 1024px) --- */
@media (max-width: 1024px) {

    .core-tech {
        padding: 40px 40px;
    }

    .core-tech .container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .core-tech .image-box {
        order: -1;
    }

    .core-tech .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .why-bluestorm .title-bar {
        padding: 25px 40px;
    }

    .operation-description {
        padding: 25px 40px;
    }

    .smart-solution {
        padding: 40px 40px;
    }

    .contact-us {
        padding: 40px 40px;
    }

    .multiple-images .perform-content {
        padding: 30px 40px;
    }
}

@media (max-width: 991.99px) {
    .multiple-images .single-col {
        width: 100%;
        /* height: 50vh; */
    }
}

/* --- Tablet-small / Large mobile (max 768px) --- */
@media (min-width: 768px) {
    .d-sm-block {
        display: none;
    }
}

@media (max-width: 768px) {

    .d-sm-none {
        display: none !important;
    }

    .d-sm-block {
        display: block;
    }

    .contact-us .single-col .footer-logo {
        margin: 20px auto;
    }

    /* .media-temperature-structure {
        height: 100vh;
        background-position: bottom !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background: url('../images/Image-DesertPool.jpeg') no-repeat center center/cover;

    } */

    /* Menu */
    .menu-section {
        padding: 20px 10px;
        padding-right: 10px !important;
        gap: 0;
        justify-content: space-between;
    }

    .menu-section a {
        padding: 12px 6px;
        font-size: 10px;
        letter-spacing: 0.8px;
        white-space: nowrap;
    }

    .menu-section.scrolled a {
        padding: 20px 0px;
    }

    .divider {
        display: none;
    }

    /* Hero */
    .hero-section {
        height: 60vh;
        background-position: 70% top;
    }

    .header-logo {
        width: 140px;
        height: auto;
        left: 20px;
        transform: translateX(0%);
        top: 80px;
        overflow: visible;
        border-radius: 0;
    }

    .header-logo img {
        width: 100%;
        max-width: 100%;
    }

    .header-connect {
        right: 20px;
        top: 80px;
    }

    .logo-scroll {
        display: none !important;
    }

    .whatsapp-scroll {
        display: none !important;
    }

    .header-content {
        left: 20px;
        right: 20px;
        top: 120px;
    }

    .save-energy {
        width: 50%;
    }

    .header-content .header-text {
        font-size: 26px;
        text-align: center;
    }

    .header-content .sub-text {
        font-size: 12px;
        text-align: center;
    }

    .header-content .sub-text br {
        display: none;
    }

    /* Why Bluestorm */
    .why-bluestorm .title-bar {
        padding: 20px;
    }

    .why-bluestorm .title-bar .title {
        font-size: 22px;
    }

    .why-bluestorm .title-bar .description {
        font-size: 12px;
    }

    .why-bluestorm .title-bar .description br {
        display: none;
    }

    /* Multiple images */
    .multiple-images {
        flex-direction: column;
    }

    .multiple-images .single-col {
        width: 100%;
        /* height: 50vh; */
    }



    .abs-image {
        width: 100px;
        top: -15px;
        right: 15px;
    }

    .multiple-images .perform-content {
        padding: 25px 20px;
        font-size: 24px;
    }

    .multiple-images .perform-content br {
        display: none;
    }

    /* Core Tech */
    .core-tech {
        padding: 40px;
    }

    .core-tech .container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .core-tech .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .core-tech .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .core-tech .features-section {
        margin-top: 50px;
    }

    /* Temperature */
    .temperature-structure .temp {
        font-size: 60px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .temperature-structure .temp-hot {
        top: 20%;
    }

    .temperature-structure .temp-cool {
        top: 55%;
    }

    .temperature-structure .temp-description {
        width: 100%;
        font-size: 22px;
        text-align: center;
        bottom: 160px;
        padding: 0 20px;
    }

    /* Operation description */
    .operation-description {
        padding: 20px;
    }

    /* Smart Control */
    .smart-control .phone-inhand img {
        width: 50%;
    }

    .smart-control .smart-control-content {
        font-size: 24px;
        /* margin-bottom: 20px; */
        bottom: 10%;
    }

    .smart-control .phone-inhand {
        /* position: relative; */
        width: 50%;
        margin: 0 auto;
        left: unset;
        bottom: 0px;
    }

    .smart-control .title-bar {
        padding: 0px 20px;
    }

    /* Smart Solution */
    .smart-solution {
        padding: 30px 20px;
    }

    .smart-solution .smart-solution-title {
        font-size: 26px;
    }

    .smart-solution .product-list {
        justify-content: center;
        margin-top: 100px;
        gap: 20px 0;
        flex-direction: column;
    }

    .smart-solution .product-list .single-item {
        width: 100% !important;
        margin-bottom: 10px;
    }

    .smart-solution .product-list .single-item img {
        width: 55%;
    }

    .smart-solution .product-list .single-item .product-name {
        bottom: unset;
        top: -30px;
        ;
    }

    /* Contact */
    .contact-us {
        padding: 40px 20px;
    }

    .contact-us .wrap {
        flex-direction: column;
        gap: 30px;
    }

    .contact-us .single-col {
        width: 100%;
    }

    .contact-us .whatsapp-footer {
        justify-content: center;
    }

    .contact-us .whatsapp-footer .whatsapp-content {
        width: 100%;
        justify-content: center;
    }

    .temperature-structure .title-bar {
        padding: 20px;
    }

    .sm-save-energy .features-right-panel {
        display: flex !important;
        margin-top: 25px !important;
    }

    .sm-save-energy .text {
        color: var(--white);
    }

    .sm-save-energy {
        position: relative !important;
        left: unset !important;
        top: unset !important;
        border-radius: 0 !important;
        background-color: #000 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 60px 40px !important;
        transform: translate(0%, 0%) !important;
    }

    .sm-save-energy .single-feature {
        flex: 1;
        text-align: center;
        font-size: 10px;
        font-weight: 500;
        font-family: var(--font-heading);
        color: var(--primary-blue);
        line-height: 1.1;
        letter-spacing: 1.2;
        display: flex;
        flex-direction: column;
    }

    .sm-save-energy .features .single-feature img {
        margin: 0 auto;
        width: 60px;
        margin-bottom: 8px;
    }

    .multiple-images .single-col .content-sec {
        display: none !important;
    }

    .multiple-images .single-col .first-col {
        display: none !important;
    }

    .multiple-images .multiple-sec-in-mob .features {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
    }

    .multiple-images .multiple-sec-in-mob {
        padding: 60px 40px;
    }

    .multiple-images .multiple-sec-in-mob .title {
        font-size: 20px;
        font-family: var(--font-heading);
        color: var(--primary-blue);
        font-weight: 400;
        line-height: 1.2;
        letter-spacing: 1.2px;
        margin-bottom: 10px;
    }

    .multiple-images .multiple-sec-in-mob .sub-title {
        font-size: 14px;
        font-family: var(--font-heading);
        color: #006688;
        font-weight: 500;
        line-height: 1.2;
        letter-spacing: 1.2px;
        margin-bottom: 10px;
    }

    .multiple-images .multiple-sec-in-mob .description {
        font-size: 12px;
        font-weight: 500;
        font-family: var(--font-heading);
        color: #006688;
        line-height: 1.1;
        letter-spacing: 1.2;
    }


    .multiple-images .multiple-sec-in-mob .features .single-feature {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .multiple-images .multiple-sec-in-mob .features .single-feature img {
        width: 60px;
        margin: 0 auto;
    }

    .multiple-images .multiple-sec-in-mob .features .single-feature .text {
        color: var(--primary-blue);
        text-align: center;
        font-size: 10px;
        font-family: var(--primary-blue);
        margin-top: 10px;
    }

}

/* --- Mobile (max 480px) --- */

@media (max-width: 576px) {

    /* .multiple-images .single-col .features {
        display: none;
    } */
    .sm-save-energy .features .single-feature img {
        margin: 0 auto;
        width: 40px;
        margin-bottom: 8px;
    }


    /* .smart-control .phone-inhand img {
        width: 45%;
    } */



    .save-energy {
        height: auto;
        width: 75%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);

    }

    .multiple-images .second-opt {
        height: 60vh !important;
    }

    .multiple-images .second-opt img {
        object-fit: cover !important;
    }

    .menu-section a {
        padding: 8px 0px;
        font-size: 10px;
        letter-spacing: 0px;
        white-space: nowrap;
    }



    .temperature-structure .temp-description {
        width: 100%;
        font-size: 28px;
        text-align: center;
        bottom: unset;
        padding: 0 10px;
        top: 160px;
    }
}