
/* =========================================================
   NEXTGN ICECREAM ENGINEERING
   MODERN INDUSTRIAL WEBSITE
========================================================= */


/* =========================================================
   01. ROOT
========================================================= */

:root {

    --black: #0B0B0B;
    --dark: #101010;
    --dark-2: #181818;

    --white: #FFFFFF;
    --off-white: #F4F1EB;
    --light: #E9E5DC;

    --gray: #777777;

    --accent: #FF5A00;
    --accent-dark: #D94700;

    --border: rgba(0, 0, 0, 0.12);
    --border-light: rgba(255, 255, 255, 0.15);

    --container: 1240px;

    --transition: 0.35s ease;
}


/* =========================================================
   02. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--off-white);
    color: var(--black);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   03. CONTAINER
========================================================= */

.container {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   04. TYPOGRAPHY
========================================================= */

h1,
h2,
h3 {
    font-family: "Syne", sans-serif;
    font-weight: 700;
}

h1 {
    letter-spacing: -0.055em;
}

h2 {
    letter-spacing: -0.045em;
}

h3 {
    letter-spacing: -0.025em;
}


/* =========================================================
   05. LOADER
========================================================= */

.site-loader {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--black);

    color: var(--white);

    z-index: 999999;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.site-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    width: min(420px, 80%);
    text-align: center;
}

.loader-logo {
    font-family: "Syne", sans-serif;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.loader-subtitle {
    margin-top: 5px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;

    color: var(--accent);
}

.loader-line {
    width: 100%;
    height: 1px;

    margin-top: 35px;

    background: rgba(255, 255, 255, 0.18);
}

.loader-line span {
    display: block;

    width: 0;
    height: 100%;

    background: var(--accent);

    transition: width 0.2s ease;
}

.loader-percent {
    margin-top: 12px;

    font-size: 10px;
    letter-spacing: 0.15em;

    opacity: 0.5;
}


/* =========================================================
   06. UNDER CONSTRUCTION OVERLAY
========================================================= */

.construction-overlay {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(11, 11, 11, 0.98);

    z-index: 999998;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
}

.construction-overlay.active {
    opacity: 1;
    visibility: visible;
}

.construction-message {
    width: min(600px, 100%);
    text-align: center;
    color: var(--white);
}

.construction-small {
    color: var(--accent);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.2em;
}

.construction-icon {
    width: 70px;
    height: 70px;

    margin: 35px auto;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.construction-icon span {
    width: 18px;
    height: 18px;

    border: 2px solid var(--accent);
    border-radius: 50%;

    position: relative;
}
/* Orange circle */
.construction-icon span {
    width: 22px;
    height: 22px;

    border: 2px solid var(--accent);
    border-radius: 50%;

    display: block;

    animation: iconZoom 1.8s ease-in-out infinite;
}


/* Zoom In / Zoom Out */
@keyframes iconZoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.45);
    }
}


.construction-message h2 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.95;
}

.construction-message h2 span {
    display: block;
    color: var(--accent);
}

.construction-message p {
    margin-top: 20px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 14px;
}

.construction-close {
    margin-top: 35px;

    padding: 13px 24px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;

    background: transparent;
    color: var(--white);

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition: var(--transition);
}

.construction-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}


/* =========================================================
   07. HEADER
========================================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 22px 0;

    color: var(--white);

    z-index: 1000;

    transition:
        background var(--transition),
        padding var(--transition);
}

.header.scrolled {
    padding: 14px 0;

    background: rgba(11, 11, 11, 0.94);

    backdrop-filter: blur(18px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   08. LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo img {
    width: auto;
    height: 60px;
}


/* =========================================================
   09. NAVIGATION
========================================================= */

.navbar {
    display: flex;
    align-items: center;

    gap: 32px;
}

.nav-link {
    position: relative;

    font-size: 13px;
    font-weight: 500;

    opacity: 0.7;

    transition: var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* =========================================================
   10. NAV BUTTON
========================================================= */

.nav-button {
    padding: 12px 19px;

    background: var(--accent);
    color: var(--black);

    border-radius: 100px;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;

    transition: var(--transition);
}

.nav-button:hover {
    background: var(--white);
    transform: translateY(-2px);
}


/* =========================================================
   11. MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border-light);
    border-radius: 50%;

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 17px;
    height: 1px;

    margin: 4px auto;

    background: var(--white);

    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}


/* =========================================================
   12. HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--dark);
    color: var(--white);
}

.hero-image-placeholder {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            #252525 0%,
            #151515 55%,
            #0C0C0C 100%
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(255, 90, 0, 0.12),
            transparent 30%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    padding-top: 100px;
}

.hero-content {
    max-width: 850px;
}


/* =========================================================
   13. LABELS
========================================================= */

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.19em;

    color: var(--accent);
}

.eyebrow::before,
.section-label::before {
    content: "";

    width: 25px;
    height: 1px;

    background: currentColor;
}


/* =========================================================
   14. HERO TYPOGRAPHY
========================================================= */

.hero h1 {
    max-width: 1000px;

    margin-top: 25px;

    font-size: clamp(
        60px,
        8vw,
        115px
    );

    line-height: 0.92;
}

.hero h1 span {
    display: block;
    color: var(--accent);
}

.hero-description {
    max-width: 570px;

    margin-top: 35px;

    font-size: 17px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   15. BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 40px;
}

.btn {
    min-height: 54px;

    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    border-radius: 100px;

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);
}

.btn span {
    font-size: 18px;
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);

    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-light {
    background: var(--white);
    color: var(--black);
}

.btn-light:hover {
    background: var(--accent);
}


/* =========================================================
   16. HERO SCROLL
========================================================= */

.hero-scroll {
    position: absolute;

    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;

    gap: 12px;

    transform: rotate(-90deg);
    transform-origin: right bottom;

    font-size: 9px;
    letter-spacing: 0.16em;

    opacity: 0.5;
}

.scroll-line {
    width: 55px;
    height: 1px;

    background: var(--white);
}


/* =========================================================
   17. INTRO STRIP
========================================================= */

.intro-strip {
    padding: 28px 0;

    background: var(--accent);
}

.intro-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 40px;
}

.intro-item {
    display: flex;
    align-items: flex-start;

    gap: 17px;
}

.intro-number {
    font-family: "Syne", sans-serif;

    font-size: 13px;
    font-weight: 800;

    opacity: 0.45;
}

.intro-item strong {
    display: block;

    margin-bottom: 5px;

    font-size: 13px;
}

.intro-item p {
    font-size: 11px;
    line-height: 1.5;

    opacity: 0.65;
}


/* =========================================================
   18. GENERAL SECTIONS
========================================================= */

.section {
    padding: 140px 0;
}


/* =========================================================
   19. ABOUT
========================================================= */

.home-about {
    background: var(--off-white);
}

.home-about-heading {
    display: grid;

    grid-template-columns: 0.45fr 1.55fr;

    gap: 50px;

    align-items: start;
}

.home-about-heading h2 {
    max-width: 850px;

    font-size: clamp(
        45px,
        6vw,
        80px
    );

    line-height: 0.93;
}

.home-about-heading h2 span {
    display: block;
    color: #999999;
}


/* =========================================================
   20. ABOUT GRID
========================================================= */

.home-about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 80px;

    align-items: center;

    margin-top: 80px;
}


/* =========================================================
   21. ABOUT IMAGE SLIDER
========================================================= */

.about-image-slider {
    position: relative;

    width: 100%;
    height: 520px;

    overflow: hidden;

    background: var(--dark);
}

.about-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity 1.2s ease,
        visibility 1.2s ease,
        transform 3.5s ease;
}

.about-slide.active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);
}

.about-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    user-select: none;
    pointer-events: none;
}

.about-image-slider::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(0, 0, 0, 0.35)
        );
}

.about-slide-number {
    position: absolute;

    right: 25px;
    bottom: 25px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 5px;

    color: var(--white);

    font-family: "Syne", sans-serif;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.about-slide-number span:first-child {
    color: var(--accent);
}


/* =========================================================
   22. ABOUT CONTENT
========================================================= */

.home-about-content {
    max-width: 570px;
}

.home-about-content p {
    margin-bottom: 20px;

    font-size: 14px;
    line-height: 1.8;

    color: #666666;
}

.home-about-content .large-text {
    font-size: 21px;
    line-height: 1.5;

    color: #222222;
}


/* =========================================================
   23. TEXT LINKS
========================================================= */

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 20px;

    margin-top: 20px;
    padding-bottom: 7px;

    border-bottom: 1px solid var(--black);

    font-size: 12px;
    font-weight: 700;
}

.text-link span {
    transition: var(--transition);
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   24. PRODUCTS
========================================================= */

.home-products {
    background: var(--white);
}

.products-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;
}

.products-heading h2 {
    margin-top: 25px;

    font-size: clamp(
        42px,
        5vw,
        72px
    );

    line-height: 0.98;
}

.products-heading h2 span {
    color: #999999;
}


/* =========================================================
   25. PRODUCT GRID
========================================================= */

.home-product-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;

    margin-top: 80px;
}

.home-product-card {
    display: block;

    background: var(--off-white);

    border: 1px solid var(--border);

    transition: var(--transition);
}

.home-product-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   26. PRODUCT IMAGE
========================================================= */

.home-product-image {
    position: relative;

    min-height: 390px;

    background:
        linear-gradient(
            135deg,
            #D9D7D0,
            #AAA9A3
        );

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.home-product-image::before {
    content: "";

    position: absolute;
    inset: 20px;

    border: 1px solid rgba(0, 0, 0, 0.15);
}

.home-product-image > span {
    position: relative;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.2em;

    opacity: 0.4;
}

.home-product-number {
    position: absolute;

    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--accent);

    font-family: "Syne", sans-serif;

    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   27. PRODUCT INFO
========================================================= */

.home-product-info {
    min-height: 120px;

    padding: 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.home-product-info small {
    display: block;

    margin-bottom: 8px;

    color: var(--gray);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.home-product-info h3 {
    max-width: 350px;

    font-size: 23px;
    line-height: 1.15;
}

.card-arrow {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    transition: var(--transition);
}

.home-product-card:hover .card-arrow {
    background: var(--accent);

    border-color: var(--accent);

    transform: rotate(45deg);
}


/* =========================================================
   28. SERVICES
========================================================= */

.home-services {
    padding: 140px 0;

    background: var(--dark);

    color: var(--white);
}

.home-services-top {
    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 80px;

    align-items: end;
}

.home-services-top h2 {
    margin-top: 25px;

    font-size: clamp(
        42px,
        5vw,
        72px
    );

    line-height: 0.98;
}

.home-services-top h2 span {
    display: block;
    color: #777777;
}

.home-services-top > p {
    max-width: 500px;

    font-size: 14px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.58);
}


/* =========================================================
   29. SERVICES LIST
========================================================= */

.home-services-list {
    margin-top: 80px;

    border-top: 1px solid var(--border-light);
}

.home-service {
    display: grid;

    grid-template-columns:
        70px
        minmax(0, 1fr)
        50px;

    align-items: center;

    gap: 30px;

    padding: 32px 0;

    border-bottom: 1px solid var(--border-light);

    transition: var(--transition);
}

.home-service > span:first-child {
    color: var(--accent);

    font-size: 10px;
    font-weight: 700;
}

.home-service h3 {
    font-size: 25px;

    transition: var(--transition);
}

.home-service:hover {
    padding-left: 15px;
}

.home-service:hover h3 {
    color: var(--accent);
}

.service-arrow {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    transition: var(--transition);
}

.home-service:hover .service-arrow {
    background: var(--accent);

    border-color: var(--accent);

    color: var(--black);

    transform: rotate(45deg);
}


/* =========================================================
   30. WHY NEXTGN
========================================================= */

.why-section {
    padding: 140px 0;

    background: var(--off-white);
}

.why-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 100px;

    align-items: start;
}

.why-grid h2 {
    margin-top: 25px;

    font-size: clamp(
        45px,
        5vw,
        75px
    );

    line-height: 0.95;
}

.why-grid h2 span {
    color: #999999;
}

.why-content {
    max-width: 600px;
}

.why-content > p {
    font-size: 18px;
    line-height: 1.7;

    color: #555555;
}

.why-points {
    margin-top: 55px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.why-points > div {
    padding-top: 20px;

    border-top: 1px solid var(--border);
}

.why-points strong {
    display: block;

    margin-bottom: 10px;

    font-size: 11px;
    letter-spacing: 0.12em;
}

.why-points span {
    display: block;

    font-size: 13px;
    line-height: 1.6;

    color: var(--gray);
}


/* =========================================================
   31. CONTACT
========================================================= */

.contact-cta {
    padding: 100px 0;

    background: var(--accent);
}

.contact-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.contact-box .section-label {
    color: var(--black);
}

.contact-box h2 {
    margin-top: 20px;

    font-size: clamp(
        48px,
        6vw,
        82px
    );

    line-height: 0.92;
}

.contact-box h2 span {
    display: block;
    color: var(--white);
}

.contact-box p {
    max-width: 450px;

    margin-top: 25px;

    font-size: 15px;
    line-height: 1.7;

    color: rgba(0, 0, 0, 0.65);
}


/* =========================================================
   32. CONSTRUCTION NOTICE
========================================================= */

.construction-notice {
    padding: 130px 0;

    background: var(--black);

    color: var(--white);

    text-align: center;
}

.construction-inner {
    max-width: 800px;

    margin-inline: auto;
}

.construction-label {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--accent);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.construction-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 5px rgba(255, 90, 0, 0.12);
}

.construction-inner h2 {
    margin-top: 30px;

    font-size: clamp(
        48px,
        7vw,
        90px
    );

    line-height: 0.9;
}

.construction-inner h2 span {
    display: block;
    color: var(--accent);
}

.construction-inner p {
    margin-top: 25px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 14px;
}

.construction-line {
    width: 100%;

    height: 1px;

    margin: 50px 0 25px;

    background: var(--border-light);
}

.construction-brand {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.2em;

    color: rgba(255, 255, 255, 0.35);
}


/* =========================================================
   33. FOOTER
========================================================= */

.footer {
    padding: 30px 0;

    background: var(--black);

    color: var(--white);

    border-top: 1px solid var(--border-light);
}

.footer-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: "Syne", sans-serif;

    font-size: 24px;
    font-weight: 800;

    letter-spacing: -0.05em;
}

.footer-brand span:last-child {
    margin-top: 2px;

    color: var(--accent);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 0.18em;
}

.footer p {
    font-size: 10px;

    color: rgba(255, 255, 255, 0.35);

    text-align: center;
}

.back-top {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border-light);

    border-radius: 50%;

    font-size: 17px;

    transition: var(--transition);
}

.back-top:hover {
    background: var(--accent);

    border-color: var(--accent);

    color: var(--black);

    transform: translateY(-3px);
}


/* =========================================================
   34. TABLET
========================================================= */

@media (max-width: 1000px) {

    .container {
        width: min(
            calc(100% - 50px),
            var(--container)
        );
    }

    .navbar {
        gap: 22px;
    }

    .nav-button {
        display: none;
    }

    .hero h1 {
        font-size: clamp(
            58px,
            9vw,
            90px
        );
    }

    .home-about-grid {
        gap: 45px;
    }

    .home-services-top {
        gap: 50px;
    }

    .why-grid {
        gap: 60px;
    }

}


/* =========================================================
   35. MOBILE NAVIGATION
========================================================= */

@media (max-width: 800px) {

    .container {
        width: calc(100% - 40px);
    }

    .header {
        padding: 16px 0;
    }

    .logo img {
        height: 50px;
    }

    .navbar {
        position: fixed;

        top: 0;
        right: 0;

        width: min(320px, 85vw);
        height: 100vh;

        padding: 110px 35px 40px;

        flex-direction: column;
        align-items: flex-start;

        gap: 28px;

        background: var(--black);

        transform: translateX(100%);

        transition: transform 0.4s ease;

        z-index: -1;
    }

    .navbar.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 18px;
    }

    .menu-toggle {
        display: block;

        position: relative;
        z-index: 2;
    }


    /* HERO */

    .hero-container {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: clamp(
            52px,
            14vw,
            78px
        );
    }

    .hero-description {
        max-width: 500px;

        font-size: 15px;
    }

    .hero-scroll {
        display: none;
    }


    /* INTRO */

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }


    /* SECTIONS */

    .section {
        padding: 100px 0;
    }


    /* ABOUT */

    .home-about-heading {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .home-about-grid {
        grid-template-columns: 1fr;

        gap: 50px;

        margin-top: 60px;
    }

    .about-image-slider {
        height: 430px;
    }


    /* PRODUCTS */

    .products-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }

    .home-product-grid {
        grid-template-columns: 1fr;

        margin-top: 55px;
    }

    .home-product-image {
        min-height: 340px;
    }


    /* SERVICES */

    .home-services {
        padding: 100px 0;
    }

    .home-services-top {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .home-services-list {
        margin-top: 55px;
    }

    .home-service {
        grid-template-columns:
            40px
            minmax(0, 1fr)
            42px;

        gap: 15px;

        padding: 25px 0;
    }

    .home-service h3 {
        font-size: 20px;
    }


    /* WHY */

    .why-section {
        padding: 100px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .why-points {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    /* CONTACT */

    .contact-cta {
        padding: 80px 0;
    }

    .contact-box {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FOOTER */

    .footer-inner {
        flex-direction: column;

        text-align: center;
    }

}


/* =========================================================
   36. SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

    .container {
        width: calc(100% - 30px);
    }

    .logo img {
        height: 46px;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .btn {
        min-height: 50px;

        padding: 0 21px;
    }

    .section {
        padding: 85px 0;
    }

    .home-about-heading h2,
    .products-heading h2 {
        font-size: 44px;
    }

    .about-image-slider {
        height: 350px;
    }

    .home-product-image {
        min-height: 300px;
    }

    .home-product-info {
        padding: 22px;
    }

    .home-product-info h3 {
        font-size: 19px;
    }

    .home-service h3 {
        font-size: 18px;
    }

    .contact-box h2 {
        font-size: 48px;
    }

    .construction-inner h2 {
        font-size: 48px;
    }

    .footer p {
        max-width: 280px;
    }

}

/* =========================================================
   HERO BACKGROUND SLIDER
========================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}

/* Background container */

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

/* Individual slides */

.hero-slide {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transform: scale(1.05);

    transition:
        opacity 1.5s ease-in-out,
        transform 6s ease-in-out;
}

.hero-slide-1 {
    background-image: url("1.png.jpeg");
}

.hero-slide-2 {
    background-image: url("2.png.jpeg");
}
/* Active image */

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.25) 100%
        );

    z-index: -2;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 2;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 750px;
    padding: 120px 8%;
}


/* =========================================================
   HERO TEXT
========================================================= */

.hero-tag {
    color: #FF5A00;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;

    margin-bottom: 22px;
}

.hero h1 {
    color: #ffffff;

    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.95;

    font-weight: 700;

    margin: 0 0 28px;
}

.hero h1 span {
    color: #FF5A00;
}

.hero-description {
    color: rgba(255, 255, 255, 0.82);

    max-width: 600px;

    font-size: 17px;
    line-height: 1.7;

    margin-bottom: 35px;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 26px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.btn-primary {
    background: #FF5A00;
    color: #ffffff;
}

.btn-primary:hover {
    background: #ffffff;
    color: #0B0B0B;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.5);
    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0B0B0B;
}


/* =========================================================
   HERO COUNTER
========================================================= */

.hero-counter {
    position: absolute;

    right: 6%;
    bottom: 45px;

    z-index: 5;

    color: #ffffff;

    font-size: 14px;
    letter-spacing: 2px;
}

.hero-counter #heroSlideNumber {
    color: #FF5A00;
    font-size: 20px;
    font-weight: 700;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero-content {
        padding: 110px 25px 80px;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 65px);
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,0.78),
                rgba(0,0,0,0.5)
            );
    }

    .hero-counter {
        right: 25px;
        bottom: 25px;
    }

}
/* =========================================================
   NEXTGN HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    overflow: hidden;

    background: #0B0B0B;
}


/* =========================================================
   BACKGROUND IMAGE CONTAINER
========================================================= */

.hero-background {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND IMAGES
========================================================= */

.hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    opacity: 0;

    transform: scale(1.05);

    transition:
        opacity 1.5s ease-in-out,
        transform 6s ease-in-out;
}


/* ACTIVE IMAGE */

.hero-image.active {
    opacity: 1;

    transform: scale(1);
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.25) 100%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 2;

    min-height: 100vh;

    max-width: 800px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 120px 8%;
}


/* =========================================================
   HERO TAG
========================================================= */

.hero-tag {
    margin: 0 0 20px;

    color: #FF5A00;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero h1 {
    margin: 0 0 30px;

    color: #FFFFFF;

    font-size: clamp(48px, 7vw, 90px);

    line-height: 0.95;

    font-weight: 700;
}

.hero h1 span {
    display: block;

    color: #FF5A00;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {
    max-width: 600px;

    margin: 0 0 35px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 26px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s ease;
}


/* PRIMARY */

.btn-primary {
    background: #FF5A00;

    color: #FFFFFF;
}

.btn-primary:hover {
    background: #FFFFFF;

    color: #0B0B0B;
}


/* OUTLINE */

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);

    color: #FFFFFF;
}

.btn-outline:hover {
    background: #FFFFFF;

    color: #0B0B0B;
}


/* =========================================================
   SLIDE COUNTER
========================================================= */

.hero-counter {
    position: absolute;

    right: 6%;
    bottom: 40px;

    z-index: 3;

    color: #FFFFFF;

    font-size: 14px;

    letter-spacing: 2px;
}

#heroNumber {
    color: #FF5A00;

    font-size: 20px;

    font-weight: 700;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero-content {
        padding: 110px 25px 80px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-counter {
        right: 25px;

        bottom: 25px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.80),
                rgba(0, 0, 0, 0.45)
            );
    }

}