/* =========================================================
   SOLARPEDIA - RESPONSIVE.CSS
   Clean responsive design
   ========================================================= */


/* =========================================================
   GLOBAL MOBILE FIX
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

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


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: auto;
    height: 45px;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

nav {
    display: block;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    margin: 0;
    padding: 0;

    list-style: none;
}

nav ul li {
    position: relative;
    list-style: none;
}

nav ul li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    text-decoration: none;
    white-space: nowrap;
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;

    display: none;

    min-width: 240px;

    padding: 10px 0;
    margin: 10px 0 0;

    transform: translateX(-50%);

    background: #ffffff;
    border-radius: 12px;

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

    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: flex;

    width: 100%;

    padding: 12px 18px;

    white-space: nowrap;
}


/* =========================================================
   HEADER RIGHT
   ========================================================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;

    flex-shrink: 0;
}

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

    width: 42px;
    height: 42px;

    cursor: pointer;
}

.quote-btn {
    white-space: nowrap;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

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

    width: 44px;
    height: 44px;

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

    cursor: pointer;
}


/* =========================================================
   HERO SLIDER
   ========================================================= */

.hero-slider {
    position: relative;

    width: 100%;

    overflow: hidden;
}

.hero-slider .slide {
    position: relative;

    width: 100%;
    height: 620px;

    overflow: hidden;
}

.hero-slider .slide > img {
    display: block;

    width: 100%;
    height: 620px;

    object-fit: cover;
}


/* =========================================================
   HERO DARK OVERLAY
   ========================================================= */

.hero-slider .slide::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background: rgba(5, 15, 25, 0.45);

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-slider .slide .content {
    position: absolute;

    inset: 0;

    z-index: 5;

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

    margin: 0 auto;

    padding: 40px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #ffffff;
}


/* =========================================================
   HERO BADGE
   ========================================================= */

.hero-slider .hero-badge {
    display: inline-flex;

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

    padding: 9px 18px;

    margin-bottom: 18px;

    border-radius: 50px;

    background: #16a34a;

    color: #ffffff;

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


/* =========================================================
   HERO TITLE
   ========================================================= */

.hero-slider .slide .content h1 {
    width: 100%;
    max-width: 850px;

    margin: 0 auto 20px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.12;

    font-weight: 800;

    text-align: center;
}


/* =========================================================
   HERO PARAGRAPH
   ========================================================= */

.hero-slider .slide .content > p {
    width: 100%;
    max-width: 760px;

    margin: 0 auto 28px;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.65;

    text-align: center;
}


/* =========================================================
   HERO STATISTICS
   ========================================================= */

.hero-slider .hero-stats {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    margin: 0 auto 25px;
}


/* =========================================================
   INDIVIDUAL STAT
   ========================================================= */

.hero-slider .hero-stat {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    padding: 10px 16px;

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

    border-radius: 50px;

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

    color: #ffffff;

    backdrop-filter: blur(8px);
}


/* =========================================================
   STAT NUMBER
   ========================================================= */

.hero-slider .hero-stat strong {
    display: inline;

    margin: 0;
    padding: 0;

    color: #ffffff;

    font-size: 18px;

    line-height: 1;
}


/* =========================================================
   STAT TEXT
   ========================================================= */

.hero-slider .hero-stat span {
    display: inline;

    margin: 0;
    padding: 0;

    background: transparent;

    border: 0;

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;
}


/* =========================================================
   HERO NOTE
   ========================================================= */

.hero-slider .hero-note {
    width: 100%;
    max-width: 650px;

    margin: 0 auto;

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

    font-size: 14px;

    line-height: 1.6;

    text-align: center;
}


/* =========================================================
   HERO BUTTON
   ========================================================= */

.hero-slider .btn-primary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    margin-top: 5px;

    padding: 13px 25px;

    border-radius: 50px;

    background: #16a34a;

    color: #ffffff;

    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   HERO ARROWS
   ========================================================= */

.hero-slider .prev,
.hero-slider .next {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 56px;

    height: 56px;

    transform: translateY(-50%);

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 16px;

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

    color: #ffffff;

    font-size: 32px;

    cursor: pointer;

    backdrop-filter: blur(8px);
}

.hero-slider .prev {
    left: 24px;
}

.hero-slider .next {
    right: 24px;
}


/* =========================================================
   HERO DOTS
   ========================================================= */

.hero-slider .dots {
    position: absolute;

    bottom: 25px;

    left: 50%;

    z-index: 10;

    transform: translateX(-50%);

    display: flex;

    gap: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .container {
        width: 94%;
    }

    .header {
        gap: 15px;
    }

    nav ul {
        gap: 16px;
    }

    .hero-slider .slide,
    .hero-slider .slide > img {
        height: 600px;
    }

    .hero-slider .slide .content {
        padding: 40px 25px;
    }

    .hero-slider .slide .content h1 {
        font-size: 48px;
    }

    .hero-slider .slide .content > p {
        font-size: 17px;
    }
}


/* =========================================================
   MOBILE - 768px
   ========================================================= */

@media (max-width: 768px) {

    .container {
        width: 100%;

        padding-left: 15px;
        padding-right: 15px;
    }


    /* HEADER */

    .header {
        min-height: 70px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 10px;
    }


    .logo {
        flex: 1;
    }

    .logo img {
        height: 42px;
    }


    /* HAMBURGER */

    .menu-toggle {
        display: flex;

        order: 2;

        flex-shrink: 0;
    }


    /* HEADER RIGHT */

    .header-right {
        order: 3;

        gap: 5px;
    }


    .search-btn {
        width: 40px;
        height: 40px;
    }


    /* NAVIGATION */

    nav {
        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        display: none;

        background: #ffffff;

        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.10);

        z-index: 9999;
    }


    nav.active {
        display: block;
    }


    nav ul {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 0;
    }


    nav ul li {
        width: 100%;
    }


    nav ul li a {
        display: flex;

        width: 100%;

        padding: 14px 20px;

        justify-content: flex-start;

        white-space: normal;
    }


    /* MOBILE DROPDOWN */

    .dropdown-menu {
        position: static;

        display: none;

        width: 100%;

        min-width: 0;

        margin: 0;

        padding: 0 0 5px;

        transform: none;

        box-shadow: none;

        border-radius: 0;

        background: #f7faf8;
    }


    .dropdown:hover .dropdown-menu {
        display: none;
    }


    .dropdown.active .dropdown-menu {
        display: block;
    }


    .dropdown-menu li a {
        padding: 12px 35px;

        font-size: 14px;
    }


    /* QUOTE BUTTON */

    .quote-btn {
        display: none;
    }


    /* HERO */

    .hero-slider .slide,
    .hero-slider .slide > img {
        height: 600px;
    }


    .hero-slider .slide .content {
        padding: 40px 18px 55px;
    }


    .hero-slider .slide .content h1 {
        max-width: 600px;

        margin-bottom: 16px;

        font-size: 34px;

        line-height: 1.15;
    }


    .hero-slider .slide .content > p {
        max-width: 500px;

        margin-bottom: 20px;

        font-size: 16px;

        line-height: 1.55;
    }


    /* BADGE */

    .hero-slider .hero-badge {
        padding: 8px 14px;

        font-size: 12px;
    }


    /* HERO STATS */

    .hero-slider .hero-stats {
        display: grid;

        grid-template-columns: 1fr 1fr;

        max-width: 430px;

        gap: 8px;

        margin-bottom: 18px;
    }


    .hero-slider .hero-stat {
        width: 100%;

        padding: 9px 8px;
    }


    .hero-slider .hero-stat strong {
        font-size: 16px;
    }


    .hero-slider .hero-stat span {
        font-size: 12px;
    }


    .hero-slider .hero-note {
        font-size: 13px;
    }


    /* HERO ARROWS */

    .hero-slider .prev,
    .hero-slider .next {
        width: 45px;

        height: 45px;

        border-radius: 12px;

        font-size: 25px;
    }


    .hero-slider .prev {
        left: 12px;
    }


    .hero-slider .next {
        right: 12px;
    }


    /* HERO BUTTON */

    .hero-slider .btn-primary {
        padding: 12px 22px;

        font-size: 15px;
    }
}


/* =========================================================
   SMALL PHONE - 480px
   ========================================================= */

@media (max-width: 480px) {

    .logo img {
        height: 38px;
    }


    .hero-slider .slide,
    .hero-slider .slide > img {
        height: 580px;
    }


    .hero-slider .slide .content {
        padding: 35px 15px 50px;
    }


    .hero-slider .slide .content h1 {
        font-size: 29px;
    }


    .hero-slider .slide .content > p {
        font-size: 15px;
    }


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

        max-width: 280px;
    }


    .hero-slider .hero-stat {
        padding: 8px 12px;
    }


    .hero-slider .prev,
    .hero-slider .next {
        width: 40px;

        height: 40px;

        font-size: 22px;
    }


    .hero-slider .prev {
        left: 8px;
    }


    .hero-slider .next {
        right: 8px;
    }
}
/* =========================================================
   SOLARPEDIA HERO - FINAL POSITION FIX
   ========================================================= */

.hero-slider {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.hero-slider .slide {
    position: relative !important;
    width: 100% !important;
    min-width: 100% !important;
    height: 620px !important;
    overflow: hidden !important;
}

/* Hero image */
.hero-slider .slide > img {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    z-index: 1 !important;
}

/* Dark overlay */
.hero-slider .slide::after {
    content: "" !important;

    position: absolute !important;
    inset: 0 !important;

    background: rgba(0, 0, 0, 0.42) !important;

    z-index: 2 !important;

    pointer-events: none !important;
}

/* MAIN HERO CONTENT */
.hero-slider .slide .content {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: 100% !important;
    max-width: 1100px !important;

    margin: 0 auto !important;

    padding: 40px 30px !important;

    display: flex !important;
    flex-direction: column !important;

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

    text-align: center !important;

    z-index: 10 !important;

    transform: none !important;
}

/* Badge */
.hero-slider .hero-badge {
    display: inline-flex !important;

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

    width: auto !important;

    margin: 0 auto 18px !important;
    padding: 9px 18px !important;

    border-radius: 50px !important;

    background: #16a34a !important;

    color: #ffffff !important;

    font-size: 14px !important;
    font-weight: 700 !important;
}

/* Heading */
.hero-slider .slide .content h1 {
    display: block !important;

    width: 100% !important;
    max-width: 850px !important;

    margin: 0 auto 20px !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: clamp(38px, 5vw, 64px) !important;
    line-height: 1.12 !important;
    font-weight: 800 !important;

    text-align: center !important;

    transform: none !important;
}

/* Paragraph */
.hero-slider .slide .content > p {
    display: block !important;

    width: 100% !important;
    max-width: 760px !important;

    margin: 0 auto 25px !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: 18px !important;
    line-height: 1.6 !important;

    text-align: center !important;

    transform: none !important;
}

/* Stats */
.hero-slider .hero-stats {
    display: flex !important;

    flex-direction: row !important;

    flex-wrap: wrap !important;

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

    width: 100% !important;

    gap: 10px !important;

    margin: 0 auto 24px !important;

    padding: 0 !important;

    transform: none !important;
}

/* Individual stats */
.hero-slider .hero-stat {
    display: inline-flex !important;

    flex-direction: row !important;

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

    width: auto !important;

    gap: 6px !important;

    margin: 0 !important;

    padding: 10px 16px !important;

    border-radius: 50px !important;

    background: rgba(255,255,255,0.16) !important;

    border: 1px solid rgba(255,255,255,0.35) !important;

    color: #ffffff !important;

    transform: none !important;
}

/* Number */
.hero-slider .hero-stat strong {
    display: inline !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: 18px !important;
}

/* Stat text */
.hero-slider .hero-stat span {
    display: inline !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;

    color: #ffffff !important;

    font-size: 14px !important;
    font-weight: 600 !important;
}

/* Hero buttons */
.hero-slider .hero-buttons {
    display: flex !important;

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

    gap: 14px !important;

    width: 100% !important;

    margin: 0 auto 20px !important;

    transform: none !important;
}

.hero-slider .hero-buttons a {
    display: inline-flex !important;

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

    width: auto !important;

    margin: 0 !important;
}

/* Hero note */
.hero-slider .hero-note {
    display: block !important;

    width: 100% !important;
    max-width: 650px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    color: rgba(255,255,255,0.92) !important;

    font-size: 14px !important;
    line-height: 1.6 !important;

    text-align: center !important;
}

/* Arrows */
.hero-slider .prev,
.hero-slider .next {
    position: absolute !important;

    top: 50% !important;

    z-index: 20 !important;

    transform: translateY(-50%) !important;

    width: 55px !important;
    height: 55px !important;

    display: flex !important;

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

    border: 0 !important;

    border-radius: 15px !important;

    background: rgba(255,255,255,0.20) !important;

    color: #ffffff !important;

    font-size: 30px !important;
}

.hero-slider .prev {
    left: 25px !important;
}

.hero-slider .next {
    right: 25px !important;
}


/* =========================================================
   MOBILE HERO
   ========================================================= */

@media (max-width: 768px) {

    .hero-slider .slide {
        height: 600px !important;
    }

    .hero-slider .slide .content {
        width: 100% !important;

        max-width: 100% !important;

        padding: 30px 20px !important;
    }

    .hero-slider .slide .content h1 {
        max-width: 600px !important;

        font-size: 34px !important;

        line-height: 1.15 !important;
    }

    .hero-slider .slide .content > p {
        max-width: 500px !important;

        font-size: 16px !important;

        line-height: 1.55 !important;
    }

    .hero-slider .hero-stats {
        display: grid !important;

        grid-template-columns: 1fr 1fr !important;

        max-width: 430px !important;

        gap: 8px !important;
    }

    .hero-slider .hero-stat {
        width: 100% !important;

        padding: 9px 8px !important;
    }

    .hero-slider .hero-stat strong {
        font-size: 16px !important;
    }

    .hero-slider .hero-stat span {
        font-size: 12px !important;
    }

    .hero-slider .hero-buttons {
        flex-direction: column !important;

        width: 100% !important;

        gap: 10px !important;
    }

    .hero-slider .hero-buttons a {
        width: 100% !important;

        max-width: 300px !important;
    }

    .hero-slider .prev,
    .hero-slider .next {
        width: 42px !important;
        height: 42px !important;

        font-size: 24px !important;
    }

    .hero-slider .prev {
        left: 10px !important;
    }

    .hero-slider .next {
        right: 10px !important;
    }
}


/* =========================================================
   SMALL PHONE
   ========================================================= */

@media (max-width: 480px) {

    .hero-slider .slide {
        height: 580px !important;
    }

    .hero-slider .slide .content {
        padding: 25px 15px !important;
    }

    .hero-slider .slide .content h1 {
        font-size: 29px !important;
    }

    .hero-slider .slide .content > p {
        font-size: 15px !important;
    }

    .hero-slider .hero-stats {
        grid-template-columns: 1fr !important;

        max-width: 280px !important;
    }

    .hero-slider .hero-buttons a {
        max-width: 280px !important;
    }
}
/* =========================================
   SOLARPEDIA HERO SLIDER - FINAL FIX
========================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.hero-slider .slide.active {
    display: block;
}

.hero-slider .slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slider .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-slider .content {
    position: absolute;
    inset: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: #ffffff;
    padding: 30px;
}

.hero-slider .content h1 {
    max-width: 950px;
    margin: 15px auto;

    color: #ffffff;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.12;
    font-weight: 800;
}

.hero-slider .content p {
    max-width: 800px;
    margin: 0 auto 25px;

    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
}

.hero-slider .content > span {
    display: inline-flex;

    padding: 9px 20px;
    border-radius: 50px;

    background: #16a34a;
    color: #ffffff;

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


/* Previous / Next buttons */

.hero-slider .prev,
.hero-slider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    z-index: 10;

    width: 65px;
    height: 65px;

    border: none;
    border-radius: 18px;

    background: rgba(255,255,255,0.25);
    color: #ffffff;

    font-size: 40px;
    cursor: pointer;

    backdrop-filter: blur(8px);
}

.hero-slider .prev {
    left: 25px;
}

.hero-slider .next {
    right: 25px;
}

.hero-slider .prev:hover,
.hero-slider .next:hover {
    background: rgba(22,163,74,0.9);
}


/* Dots */

.hero-slider .dots {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 20;

    display: flex;
    gap: 10px;
}

.hero-slider .dot {
    width: 16px;
    height: 16px;

    display: block;

    border-radius: 50%;

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

    cursor: pointer;
}

.hero-slider .dot.active {
    background: #ff7a00;
    transform: scale(1.15);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .hero-slider {
        height: 560px;
    }

    .hero-slider .content {
        padding: 25px 18px;
    }

    .hero-slider .content h1 {
        font-size: 34px;
    }

    .hero-slider .content p {
        font-size: 16px;
    }

    .hero-slider .prev,
    .hero-slider .next {
        width: 48px;
        height: 48px;

        font-size: 28px;
        border-radius: 14px;
    }

    .hero-slider .prev {
        left: 12px;
    }

    .hero-slider .next {
        right: 12px;
    }

}
/* =====================================================
   SOLARPEDIA HERO SLIDER
   SMOOTH FADE + ZOOM TRANSITION
===================================================== */

.hero-slider {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
}


/* =====================================================
   SLIDE
===================================================== */

.hero-slider .slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.04);

    transition:
        opacity 0.9s ease-in-out,
        transform 1.2s ease-in-out,
        visibility 0.9s ease-in-out;

    z-index: 1;
}


/* =====================================================
   ACTIVE SLIDE
===================================================== */

.hero-slider .slide.active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);

    z-index: 2;
}


/* =====================================================
   SLIDE IMAGE
===================================================== */

.hero-slider .slide > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =====================================================
   DARK OVERLAY
===================================================== */

.hero-slider .slide .overlay {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.25)
        );

    z-index: 1;
}


/* =====================================================
   CONTENT
===================================================== */

.hero-slider .slide .content {
    position: absolute;

    inset: 0;

    z-index: 5;

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

    margin: auto;

    padding: 40px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #ffffff;
}


/* =====================================================
   HEADING
===================================================== */

.hero-slider .slide .content h1 {
    max-width: 900px;

    margin: 15px auto 20px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 68px);

    line-height: 1.1;

    font-weight: 800;

    text-align: center;
}


/* =====================================================
   PARAGRAPH
===================================================== */

.hero-slider .slide .content p {
    max-width: 800px;

    margin: 0 auto 25px;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.6;

    text-align: center;
}


/* =====================================================
   BADGE
===================================================== */

.hero-slider .hero-badge,
.hero-slider .slide .content > span {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 9px 18px;

    margin-bottom: 15px;

    border-radius: 50px;

    background: #16a34a;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;
}


/* =====================================================
   STATS
===================================================== */

.hero-slider .hero-stats {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    margin: 10px auto 25px;

    flex-wrap: wrap;
}


.hero-slider .hero-stat {
    display: flex;

    align-items: center;

    gap: 7px;

    padding: 11px 18px;

    border-radius: 50px;

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

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

    backdrop-filter: blur(8px);

    color: #ffffff;
}


.hero-slider .hero-stat strong {
    color: #ffffff;

    font-size: 18px;
}


.hero-slider .hero-stat span {
    color: #ffffff;

    font-size: 14px;

    font-weight: 600;
}


/* =====================================================
   BUTTONS
===================================================== */

.hero-slider .hero-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


.hero-slider .btn-primary,
.hero-slider .btn-secondary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 28px;

    border-radius: 50px;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.hero-slider .btn-primary {
    background: #16a34a;

    color: #ffffff;
}


.hero-slider .btn-secondary {
    background: #ffffff;

    color: #14532d;

    border: 2px solid #16a34a;
}


.hero-slider .btn-primary:hover,
.hero-slider .btn-secondary:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


/* =====================================================
   LEFT / RIGHT BUTTONS
===================================================== */

.hero-slider .prev,
.hero-slider .next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 20;

    width: 64px;

    height: 64px;

    border: none;

    border-radius: 18px;

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

    backdrop-filter: blur(8px);

    color: #ffffff;

    font-size: 36px;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.hero-slider .prev {
    left: 25px;
}


.hero-slider .next {
    right: 25px;
}


.hero-slider .prev:hover,
.hero-slider .next:hover {
    background: rgba(22,163,74,0.85);

    transform: translateY(-50%) scale(1.05);
}


/* =====================================================
   DOTS
===================================================== */

.hero-slider .dots {
    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 20;

    display: flex;

    align-items: center;

    gap: 10px;
}


.hero-slider .dot {
    width: 11px;

    height: 11px;

    border-radius: 50%;

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

    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


.hero-slider .dot.active {
    width: 30px;

    border-radius: 20px;

    background: #ff8a00;

    transform: scale(1.05);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .hero-slider {
        height: 560px;
    }


    .hero-slider .slide .content {
        padding: 30px 20px;
    }


    .hero-slider .slide .content h1 {
        font-size: 34px;

        line-height: 1.15;
    }


    .hero-slider .slide .content p {
        font-size: 16px;

        line-height: 1.5;
    }


    .hero-slider .hero-stats {
        display: grid;

        grid-template-columns: 1fr 1fr;

        width: 100%;

        gap: 8px;
    }


    .hero-slider .hero-stat {
        padding: 9px 10px;

        justify-content: center;
    }


    .hero-slider .hero-stat strong {
        font-size: 16px;
    }


    .hero-slider .hero-stat span {
        font-size: 12px;
    }


    .hero-slider .hero-buttons {
        flex-direction: column;

        width: 100%;
    }


    .hero-slider .btn-primary,
    .hero-slider .btn-secondary {
        width: 100%;
    }


    .hero-slider .prev,
    .hero-slider .next {
        width: 48px;

        height: 48px;

        font-size: 27px;

        border-radius: 14px;
    }


    .hero-slider .prev {
        left: 12px;
    }


    .hero-slider .next {
        right: 12px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .hero-slider {
        height: 540px;
    }


    .hero-slider .slide .content h1 {
        font-size: 29px;
    }


    .hero-slider .slide .content p {
        font-size: 15px;
    }

}
