/* =========================================================
   CROREON WEBSITE
   COMPLETE RESPONSIVE STYLE SHEET
   Solar | Renewable Energy | EPC | BESS | EV
========================================================= */


/* =========================================================
   01. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================================
   02. ROOT VARIABLES
========================================================= */

:root {

    --blue: #005bbb;
    --blue-dark: #003b80;
    --blue-deep: #06264b;
    --blue-light: #eaf4ff;

    --green: #29b765;
    --green-dark: #15934b;
    --green-light: #eafaf0;

    --yellow: #ffe15b;

    --white: #ffffff;
    --black: #111827;

    --text: #1c2b3a;
    --muted: #667085;
    --muted-light: #98a2b3;

    --light: #f5f8fc;
    --light-2: #f7f9fc;

    --border: #e5eaf0;

    --shadow-sm:
        0 6px 18px rgba(0, 0, 0, 0.06);

    --shadow-md:
        0 12px 30px rgba(0, 0, 0, 0.08);

    --shadow-lg:
        0 25px 55px rgba(0, 59, 128, 0.14);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    --transition-fast: 0.2s ease;
    --transition: 0.35s ease;
    --transition-slow: 0.55s ease;
}


/* =========================================================
   03. HTML / BODY
========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

body.page-loaded {
    opacity: 1;
}

::selection {
    background: var(--blue);
    color: var(--white);
}


/* =========================================================
   04. GLOBAL ELEMENTS
========================================================= */

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-weight: 700;
}

p {
    margin-top: 0;
}

section {
    position: relative;
}

.container {
    width: min(90%, 1200px);
    margin-left: auto;
    margin-right: auto;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(41, 183, 101, 0.35);
    outline-offset: 4px;
}


/* =========================================================
   05. HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom:
        1px solid rgba(0, 59, 128, 0.05);

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.07);

    backdrop-filter: blur(10px);

    transition:
        box-shadow var(--transition),
        background var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.99);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.10);
}

.header-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* =========================================================
   06. LOGO
========================================================= */

.logo {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;

    transition:
        transform var(--transition);
}

.logo img {
    width: 150px;
    max-height: 60px;

    object-fit: contain;

    border-radius: 6px;
}

.logo:hover {
    transform: translateY(-1px);
}


/* =========================================================
   07. NAVIGATION
========================================================= */

.nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;
}

.nav a {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: 40px;

    color: var(--blue-dark);

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        color var(--transition-fast);
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 3px;

    width: 0;
    height: 2px;

    border-radius: 2px;

    background: var(--green);

    transition:
        width var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--green);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}


/* =========================================================
   08. HEADER PHONE
========================================================= */

.header-phone {
    display: inline-flex;
    align-items: center;

    color: var(--blue-dark);

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        color var(--transition),
        transform var(--transition);
}

.header-phone::before {
    content: "☎";

    margin-right: 6px;

    color: var(--green);

    font-size: 14px;
}

.header-phone:hover {
    color: var(--green);

    transform: translateY(-1px);
}


/* =========================================================
   09. MOBILE MENU BUTTON
========================================================= */

.menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    border-radius: 12px;

    background: var(--light);

    color: var(--blue-dark);

    font-size: 24px;
    line-height: 1;

    align-items: center;
    justify-content: center;

    transition: var(--transition);
}

.menu-btn:hover {
    background: var(--blue-light);
    color: var(--blue);
}


/* =========================================================
   10. BUTTONS
========================================================= */

.btn,
.outline-btn,
.whatsapp-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 13px 27px;

    border-radius: var(--radius-pill);

    font-size: 14px;
    font-weight: 700;

    line-height: 1;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.btn {
    color: var(--white);

    background:
        linear-gradient(
            100deg,
            var(--blue),
            var(--green)
        );

    box-shadow:
        0 10px 25px rgba(0, 91, 187, 0.18);
}

.btn:hover {
    color: var(--white);

    transform: translateY(-3px);

    box-shadow:
        0 15px 32px rgba(0, 91, 187, 0.25);
}

.outline-btn {
    color: var(--white);

    border:
        1px solid rgba(255, 255, 255, 0.65);

    background: transparent;
}

.outline-btn:hover {
    color: var(--blue);

    background: var(--white);

    border-color: var(--white);

    transform: translateY(-2px);
}

.hero-btn {
    color: var(--blue);

    background: var(--white);
}

.hero-btn:hover {
    color: var(--blue-dark);

    background: var(--white);
}


/* =========================================================
   11. HERO
========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    min-height: 650px;

    padding: 105px 0;

    color: var(--white);

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255, 255, 255, 0.10),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #004fa8 0%,
            #008e98 55%,
            #29b765 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    top: -160px;
    right: -160px;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.05);
}

.hero::after {
    content: "";

    position: absolute;

    bottom: -180px;
    left: -180px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.04);
}

.hero-grid {
    position: relative;

    z-index: 2;

    min-height: 540px;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 70px;
}

.hero-content {
    max-width: 720px;
}

.eyebrow {
    margin-bottom: 16px;

    color: #d8ffdf;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
}

.hero h1 {
    max-width: 720px;

    margin: 18px 0 25px;

    color: var(--white);

    font-size:
        clamp(48px, 6vw, 76px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.hero h1 span {
    display: block;

    color: var(--yellow);
}

.hero-text {
    max-width: 650px;

    margin-bottom: 30px;

    color:
        rgba(255, 255, 255, 0.90);

    font-size: 18px;

    line-height: 1.8;
}

.hero-actions {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}

.hero-location {
    display: inline-flex;

    align-items: center;

    margin-top: 25px;

    padding: 9px 16px;

    border:
        1px solid rgba(255, 255, 255, 0.22);

    border-radius: var(--radius-pill);

    color:
        rgba(255, 255, 255, 0.90);

    background:
        rgba(255, 255, 255, 0.08);

    font-size: 13px;
    font-weight: 500;
}


/* =========================================================
   12. HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 430px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.14);

    filter: blur(12px);
}

.hero-logo {
    position: relative;

    z-index: 2;

    width: min(100%, 460px);

    max-height: 360px;

    object-fit: contain;

    border-radius: 22px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.25);

    transition:
        transform var(--transition-slow);
}

.hero-logo:hover {
    transform: scale(1.02);
}


/* =========================================================
   13. COMMON SECTION
========================================================= */

.section-heading {
    max-width: 820px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-tag {
    display: inline-block;

    color: var(--green);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2,
.about-content h2,
.contact-box h2,
.placeholder-section h2 {
    margin: 12px 0 18px;

    color: var(--blue-dark);

    font-size:
        clamp(34px, 4vw, 48px);

    line-height: 1.2;
}

.section-heading h2 span,
.about-content h2 span {
    color: var(--green);
}

.section-heading p {
    max-width: 720px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   14. ABOUT
========================================================= */

.about {
    padding: 105px 0;

    background: var(--white);
}

.about-grid {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    align-items: center;

    gap: 75px;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: "";

    position: absolute;

    z-index: 0;

    left: -18px;
    bottom: -18px;

    width: 90%;
    height: 90%;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(0, 91, 187, 0.10),
            rgba(41, 183, 101, 0.12)
        );
}

.about-image img {
    position: relative;

    z-index: 1;

    width: 100%;
    max-width: 480px;

    margin: auto;

    border-radius: 22px;

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.12);
}

.about-content {
    max-width: 650px;
}

.about-content p {
    margin-bottom: 20px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.85;
}

.about-content .btn {
    margin-top: 10px;
}


/* =========================================================
   15. WHY CHOOSE US
========================================================= */

.why {
    padding: 105px 0;

    background: var(--light);
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}

.why-card {
    position: relative;

    overflow: hidden;

    padding: 35px 25px;

    border:
        1px solid rgba(0, 59, 128, 0.05);

    border-radius: 20px;

    background: var(--white);

    text-align: center;

    box-shadow: var(--shadow-md);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.why-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--green)
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform var(--transition);
}

.why-card:hover,
.why-card.active-card {
    transform: translateY(-9px);

    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.12);
}

.why-card:hover::before,
.why-card.active-card::before {
    transform: scaleX(1);
}

.icon {
    width: 74px;
    height: 74px;

    margin: 0 auto 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--green)
        );

    font-size: 31px;

    transition:
        transform var(--transition);
}

.why-card:hover .icon {
    transform:
        rotate(5deg)
        scale(1.05);
}

.why-card h3 {
    margin-bottom: 12px;

    color: var(--blue-dark);

    font-size: 21px;
}

.why-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   16. SOLUTIONS
========================================================= */

.solutions {
    padding: 110px 0;

    background: var(--white);
}

.solutions .section-heading {
    margin-bottom: 65px;
}

.solutions-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}

.solution-card {
    position: relative;

    min-height: 330px;

    overflow: hidden;

    padding: 45px;

    border:
        1px solid var(--border);

    border-radius: 24px;

    background: var(--light-2);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.solution-card::after {
    content: "";

    position: absolute;

    right: -70px;
    bottom: -70px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        rgba(41, 183, 101, 0.06);

    transition:
        transform var(--transition);
}

.solution-card:hover,
.solution-card.active-card {
    transform: translateY(-8px);

    border-color:
        rgba(0, 91, 187, 0.12);

    background: var(--white);

    box-shadow: var(--shadow-lg);
}

.solution-card:hover::after,
.solution-card.active-card::after {
    transform: scale(1.35);
}

.solution-number {
    position: absolute;

    top: 18px;
    right: 28px;

    color:
        rgba(0, 91, 187, 0.06);

    font-size: 70px;

    font-weight: 800;

    line-height: 1;
}

.solution-icon {
    position: relative;

    z-index: 2;

    width: 75px;
    height: 75px;

    margin: 0 0 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--green)
        );

    font-size: 32px;

    box-shadow:
        0 12px 25px rgba(0, 91, 187, 0.16);

    transition:
        transform var(--transition);
}

.solution-card:hover .solution-icon {
    transform:
        translateY(-3px)
        rotate(4deg);
}

.solution-card h3 {
    position: relative;

    z-index: 2;

    margin-bottom: 14px;

    color: var(--blue-dark);

    font-size: 27px;

    line-height: 1.3;
}

.solution-card p {
    position: relative;

    z-index: 2;

    max-width: 520px;

    margin-bottom: 0;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}

.solution-link {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 22px;

    color: var(--blue);

    font-size: 14px;

    font-weight: 700;
}

.solution-link span {
    display: inline-block;

    font-size: 22px;

    transition:
        transform var(--transition);
}

.solution-link:hover {
    color: var(--green-dark);
}

.solution-link:hover span {
    transform: translateX(6px);
}


/* =========================================================
   17. STATISTICS
========================================================= */

.stats {
    padding: 75px 0;

    color: var(--white);

    background:
        linear-gradient(
            100deg,
            var(--blue-dark),
            var(--blue)
        );
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 30px;
}

.stat {
    position: relative;

    padding: 10px 20px;

    text-align: center;
}

.stat:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 10%;
    right: 0;

    width: 1px;
    height: 80%;

    background:
        rgba(255, 255, 255, 0.18);
}

.stat strong {
    display: block;

    margin-bottom: 8px;

    color: var(--white);

    font-size: 44px;

    font-weight: 800;

    line-height: 1.1;
}

.stat span {
    color:
        rgba(255, 255, 255, 0.82);

    font-size: 14px;
}


/* =========================================================
   18. PRODUCTS / CAREERS
========================================================= */

.placeholder-section {
    padding: 100px 0;

    background: var(--light);

    text-align: center;
}

.placeholder-section .section-tag {
    margin-bottom: 8px;
}

.placeholder-section p {
    max-width: 700px;

    margin: 0 auto 25px;

    color: var(--muted);

    line-height: 1.8;
}


/* =========================================================
   19. CONTACT
========================================================= */

.contact {
    padding: 90px 0;

    background: var(--white);
}

.contact-box {
    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 55px;

    border-radius: 25px;

    color: var(--white);

    background:
        linear-gradient(
            110deg,
            var(--blue),
            var(--green)
        );

    box-shadow:
        0 25px 55px rgba(0, 91, 187, 0.18);
}

.contact-box::before {
    content: "";

    position: absolute;

    top: -100px;
    right: -100px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);
}

.contact-box > * {
    position: relative;

    z-index: 2;
}

.contact-box .section-tag {
    color: #d8ffdf;
}

.contact-box h2 {
    max-width: 700px;

    margin-top: 10px;

    color: var(--white);
}

.contact-box p {
    max-width: 650px;

    margin-bottom: 25px;

    color:
        rgba(255, 255, 255, 0.88);
}


/* =========================================================
   20. CONTACT DETAILS
========================================================= */

.contact-details {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 12px;
}

.contact-item {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    min-height: 44px;

    padding: 9px 15px;

    border:
        1px solid rgba(255, 255, 255, 0.20);

    border-radius: var(--radius-pill);

    color: var(--white);

    background:
        rgba(255, 255, 255, 0.08);

    font-size: 13px;
    font-weight: 600;

    transition:
        background var(--transition),
        transform var(--transition);
}

.contact-item:hover {
    color: var(--white);

    background:
        rgba(255, 255, 255, 0.18);

    transform: translateY(-2px);
}

.contact-icon {
    font-size: 17px;
}

.contact-actions {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 12px;

    flex-shrink: 0;

    min-width: 170px;
}

.contact-box .btn {
    color: var(--blue);

    background: var(--white);
}

.contact-box .btn:hover {
    color: var(--blue-dark);

    background: var(--white);
}


/* =========================================================
   21. WHATSAPP BUTTON
========================================================= */

.whatsapp-btn {
    color: var(--white);

    background:
        #25D366;

    box-shadow:
        0 10px 25px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn::before {
    content: "💬";

    margin-right: 7px;
}

.whatsapp-btn:hover {
    color: var(--white);

    background:
        #1ebe5d;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(37, 211, 102, 0.32);
}


/* =========================================================
   22. FOOTER
========================================================= */

.footer {
    padding: 55px 0 20px;

    color: var(--white);

    background: var(--blue-deep);
}

.footer-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.footer-brand {
    max-width: 450px;
}

.footer-logo {
    width: 135px;

    max-height: 60px;

    object-fit: contain;

    margin-bottom: 12px;

    border-radius: 8px;
}

.footer p {
    margin: 4px 0;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 14px;
}

.footer-links {
    display: flex;

    align-items: center;

    gap: 22px;

    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);

    font-size: 14px;

    opacity: 0.85;

    transition: var(--transition);
}

.footer-links a:hover {
    color: #6ee58d;

    opacity: 1;
}


/* =========================================================
   23. FOOTER CONTACT
========================================================= */

.footer-contact {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 35px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.10);
}

.footer-contact a {
    color:
        rgba(255, 255, 255, 0.82);

    font-size: 13px;

    transition:
        color var(--transition);
}

.footer-contact a:hover {
    color: #6ee58d;
}


/* =========================================================
   24. COPYRIGHT
========================================================= */

.copyright {
    margin-top: 25px;

    padding-top: 20px;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);

    color:
        rgba(255, 255, 255, 0.60);

    font-size: 13px;

    text-align: center;
}


/* =========================================================
   25. FLOATING WHATSAPP
========================================================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 999;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    background: #25D366;

    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.35);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.whatsapp-float span {
    font-size: 27px;

    line-height: 1;
}

.whatsapp-float:hover {
    color: var(--white);

    transform:
        translateY(-5px)
        scale(1.05);

    box-shadow:
        0 15px 35px rgba(37, 211, 102, 0.45);
}


/* =========================================================
   26. FLOATING CALL
========================================================= */

.call-float {
    position: fixed;

    right: 25px;
    bottom: 95px;

    z-index: 998;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    background: var(--blue);

    box-shadow:
        0 10px 25px rgba(0, 91, 187, 0.30);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.call-float span {
    font-size: 22px;

    line-height: 1;
}

.call-float:hover {
    color: var(--white);

    transform:
        translateY(-5px)
        scale(1.05);

    box-shadow:
        0 15px 30px rgba(0, 91, 187, 0.40);
}


/* =========================================================
   27. REVEAL ANIMATION
========================================================= */

.why-card,
.solution-card,
.about-content,
.about-image {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.why-card.visible,
.solution-card.visible,
.about-content.visible,
.about-image.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   28. RESPONSIVE - 1200PX
========================================================= */

@media (max-width: 1200px) {

    .nav {
        gap: 18px;
    }

    .header-phone {
        font-size: 12px;
    }

    .hero-grid {
        gap: 45px;
    }

}


/* =========================================================
   29. RESPONSIVE - 1100PX
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: 92%;
    }

    .nav {
        gap: 15px;
    }

    .nav a {
        font-size: 13px;
    }

    .header-phone {
        display: none;
    }

    .hero h1 {
        font-size: 62px;
    }

    .about-grid {
        gap: 50px;
    }

    .why-grid {
        gap: 18px;
    }

    .solution-card {
        padding: 38px;
    }

}


/* =========================================================
   30. RESPONSIVE - 1000PX
========================================================= */

@media (max-width: 1000px) {

    .header-btn {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 55px;

        text-align: center;
    }

    .hero-content {
        max-width: 850px;

        margin: 0 auto;
    }

    .hero-text {
        margin-left: auto;

        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-location {
        justify-content: center;
    }

    .hero-visual {
        min-height: 350px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .about-content {
        max-width: 850px;

        margin: 0 auto;
    }

    .about-image img {
        margin-left: auto;

        margin-right: auto;
    }

    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 35px;
    }

    .stat:nth-child(2)::after {
        display: none;
    }

    .contact-box {
        flex-direction: column;

        align-items: flex-start;
    }

    .contact-actions {
        width: 100%;

        flex-direction: row;
    }

}


/* =========================================================
   31. RESPONSIVE - 900PX
========================================================= */

@media (max-width: 900px) {

    .header-inner {
        min-height: 78px;
    }

    .nav {
        gap: 14px;
    }

    .nav a {
        font-size: 12px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solutions .section-heading h2 {
        font-size: 42px;
    }

    .contact-box {
        padding: 45px;
    }

}


/* =========================================================
   32. RESPONSIVE - 760PX
========================================================= */

@media (max-width: 760px) {

    .header-inner {
        min-height: 72px;
    }

    .logo img {
        width: 130px;
    }

    .nav {
        position: absolute;

        top: 72px;

        left: 5%;
        right: 5%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        padding: 12px;

        border:
            1px solid var(--border);

        border-radius: 15px;

        background: var(--white);

        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        min-height: 45px;

        padding: 12px 15px;

        font-size: 14px;
    }

    .nav a::after {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .hero {
        min-height: auto;

        padding: 75px 0;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero h1 {
        font-size: 47px;

        letter-spacing: -1px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-visual {
        min-height: 280px;
    }

    .hero-glow {
        width: 250px;

        height: 250px;
    }

    .hero-logo {
        max-width: 380px;
    }

    .about,
    .why,
    .solutions {
        padding: 75px 0;
    }

    .about-grid {
        gap: 45px;
    }

    .about-content h2,
    .section-heading h2 {
        font-size: 36px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .solution-card {
        min-height: auto;

        padding: 32px;
    }

    .solution-card h3 {
        font-size: 24px;
    }

    .contact {
        padding: 70px 0;
    }

    .contact-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 38px;
    }

    .contact-box h2 {
        font-size: 34px;
    }

    .contact-details {
        flex-direction: column;

        align-items: stretch;
    }

    .contact-item {
        width: 100%;

        justify-content: flex-start;
    }

    .contact-actions {
        flex-direction: column;

        width: 100%;
    }

    .footer-inner {
        flex-direction: column;

        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-contact {
        flex-direction: column;

        gap: 10px;
    }

}


/* =========================================================
   33. RESPONSIVE - 600PX
========================================================= */

@media (max-width: 600px) {

    .container {
        width: 90%;
    }

    .header-inner {
        gap: 10px;
    }

    .logo img {
        width: 125px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-text {
        font-size: 16px;

        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn,
    .hero-actions .outline-btn {
        width: 100%;
    }

    .hero-location {
        display: flex;

        width: fit-content;

        max-width: 100%;

        margin-left: auto;

        margin-right: auto;

        text-align: center;
    }

    .about-image::before {
        left: -10px;

        bottom: -10px;
    }

    .about-content h2,
    .section-heading h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 15px;
    }

    .why-card {
        padding: 32px 22px;
    }

    .solutions .section-heading {
        margin-bottom: 45px;
    }

    .solutions .section-heading h2 {
        font-size: 32px;
    }

    .solution-card {
        padding: 30px;

        border-radius: 20px;
    }

    .solution-number {
        right: 20px;

        font-size: 55px;
    }

    .solution-icon {
        width: 68px;

        height: 68px;

        font-size: 28px;
    }

    .stats {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .stat::after {
        display: none !important;
    }

    .stat strong {
        font-size: 36px;
    }

    .placeholder-section {
        padding: 75px 0;
    }

    .contact-box {
        padding: 32px 25px;

        border-radius: 20px;
    }

    .contact-box h2 {
        font-size: 30px;
    }

    .contact-box .btn,
    .contact-box .whatsapp-btn {
        width: 100%;
    }

    .copyright {
        text-align: center;
    }

    .whatsapp-float {
        right: 18px;

        bottom: 18px;

        width: 55px;

        height: 55px;
    }

    .call-float {
        right: 18px;

        bottom: 85px;

        width: 49px;

        height: 49px;
    }

}


/* =========================================================
   34. RESPONSIVE - 480PX
========================================================= */

@media (max-width: 480px) {

    .header-inner {
        min-height: 68px;
    }

    .nav {
        top: 68px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 37px;
    }

    .hero .eyebrow {
        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .hero-visual {
        min-height: 230px;
    }

    .hero-logo {
        width: 90%;
    }

    .hero-glow {
        width: 210px;

        height: 210px;
    }

    .about,
    .why,
    .solutions {
        padding: 65px 0;
    }

    .about-content h2,
    .section-heading h2 {
        font-size: 29px;
    }

    .solution-card {
        padding: 26px;
    }

    .solution-card h3 {
        font-size: 22px;
    }

    .solution-card p {
        font-size: 14px;
    }

    .stats {
        padding: 50px 0;
    }

    .stat strong {
        font-size: 32px;
    }

    .stat span {
        font-size: 13px;
    }

    .contact-box {
        padding: 28px 20px;
    }

    .contact-box h2 {
        font-size: 27px;
    }

    .contact-box p {
        font-size: 14px;
    }

    .footer {
        padding-top: 45px;
    }

    .footer-logo {
        margin-left: auto;

        margin-right: auto;
    }

}


/* =========================================================
   35. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

}


/* =========================================================
   END OF CROREON CSS
========================================================= */
